5 lines
107 B
Lua
5 lines
107 B
Lua
|
|
print( math.sin( 0.0 ) )
|
||
|
|
print( math.cos( math.pi ) )
|
||
|
|
print( math.sqrt( 9.0 ) )
|
||
|
|
print( math.modf( 5.25 ) )
|