*** empty log message ***
[chuck-blob.git] / examples / math.ck
blob413d405441fcd793ab299998e1647f83d69add2c
1 // super lame math lib demo
3 // hypotnoos
4 math.hypot( 3.0, 4.0 ) => stdout;
5 // sine and pi constant
6 math.sin( math.pi / 2.0 ) => stdout;
7 // next power of 2
8 math.nextpow2( 462340 ) => stdout;
9 // round
10 math.round( 2.4 ) => stdout;
11 math.round( -2.4 ) => stdout;
12 math.trunc( -2.4 ) => stdout;
13 // fmod
14 math.fmod( 3.5, 2.1 ) => stdout;
15 // log
16 math.log( math.e ) => stdout;