Features
Variable expressions:
house = $2000
$2,000
car = $600
$600
bills = house + car
$2,600
Loop over results:
loop = 3
3
→
house = $2000
$2,000
→
car = $600
$600
→
bills = house + car
$2,600
→
spent = bills * loop
$5,200
→
Month 0:
spent
0
Month 1:
spent
$2,600
Month 2:
spent
$5,200
Automatic Asset Prices:
Tesla = $tsla
$803
Apple = $aapl
$220
Bitcoin = $btc
$100,020
Sum to last empty line:
house = $2000
$2,000
car = $600
$600
bills = sumBlock
$2,600
Average to last empty line:
house = $2000
$2,000
car = $600
$600
bills = avgBlock
$1,300
Last Line Reference:
50
50
prev + 50
100
Specific Line Reference:
a = 50
10
b = 4
20
line1 + line2
30
Logarithms:
a = 50
50
log(a)
1.698
Round Down:
a = 3.1415
3.1415
floor(a)
3
Round Up:
a = 3.1415
3.1415
ceil(a)
4
Trigonometry:
a = 50
50
sin(a)
0.766
cos(a)
0.642
tan(a)
1.191
Exponents:
a = 50
50
b = 4
4
c = a ^ b
6,250,000
Big Number Shorthand:
a = 50K
50,000
b = 50M
50,000,000
Overwrite Variables:
car = $500
$500
car = $1000
$1,000
bills = car
$1,000