Math
drylang
// 09_math.y - Math built-ins
cns pi 3.14159
pt "Absolute of -42: " + str(abs(-42))
pt "Min of 10, 20: " + str(min(10, 20))
pt "Max of 10, 20: " + str(max(10, 20))
pt "Round 3.7: " + str(rnd(3.7))
pt "Round PI: " + str(rnd(pi))
pt "Random [0,1]: " + str(ran())