11 lines
319 B
Text
11 lines
319 B
Text
Float.e
|
|
Float.pi
|
|
9f.sqrt
|
|
9f.log // natural logarithm
|
|
9f.log10 // logarithm to base 10
|
|
9f.exp // exponentiation
|
|
(-3f).abs // absolute value, note bracket
|
|
3.2f.floor // nearest Int smaller than this number
|
|
3.2f.ceil // nearest Int bigger than this number
|
|
3.2f.round // nearest Int
|
|
3f.pow(2f) // power
|