Update README.md

Replaced command line indicators from `$` to `#`
This commit is contained in:
spirillen 2024-08-29 19:18:50 +00:00 committed by GitHub
parent 63641ac24f
commit 6a8e1e7320
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -289,15 +289,15 @@ expr 30 \> 20 #1 (true)
# Number of decimal digit/ significant figure
echo "scale=2;2/3" | bc
$ .66
# .66
# Exponent operator
echo "10^2" | bc
$ 100
# 100
# Using variables
echo "var=5;--var"| bc
$ 4
# 4
```