Added a line about interactive usage with mathlib

Usually `bc` isn't very useful if it doesn't return have floating point number where appropriate. e.g., 3/4 returns 0 when started with `-i` but for most users they would expect 0.75 to be returned so the argument `-l`does what the user would generally want.
This commit is contained in:
kalebo 2016-10-31 17:37:05 -06:00 committed by Agniva De Sarker
parent abd52f0ce8
commit 1b5152e58f

View File

@ -6,6 +6,10 @@
`bc -i`
- Run calculator in interactive mode with floating point support:
`bc -l`
- Calculate the result of an expression:
`bc <<< "(1 + 2) * 2 ^ 2"`