/**
*
*
*/
//
<!-- -->
# Immediately after comment begin, put a pipe symbol and type in expressions.
/**
*
* | 1 + 1
*/
// | 2 usd to thb
<!-- | 1 in cm to km -->
# | (log(10) + 5) kb to gbAny math expressions followed by unit to unit.
Incompatible units will be underlined in red.
// 2 usd in centimeters << wrong!- All currencies' ISO 4217.
- metrics: cm, m, km
- file size: kb, mb, gb, tb,
- log
- sqrt
- pow
- sum
In puter, each line is an expression that produces a value. Calling a function without passing any arguments is the same as passing each individual result from each connected lines (no space between lines) to the function
2
2
a = 3
200 in usd
sum << same as `sum(2, 2, 3, 200) in usd`
This only works with function that accepts multiple arguments though. So something like sqrt won't work here.