Coverage for src/main.mys : 0%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from . import E
2from . import PI
3from . import cos
4from . import is_nan
5from . import sin
6from . import sqrt
8func main():
9 print("pi = ", PI)
10 print("e = ", E)
11 print("sin(0.0) = ", sin(0.0))
12 print("cos(0.0) = ", cos(0.0))
13 print("is_nan(0.0) =", is_nan(0.0))
14 print("sqrt(4.0) =", sqrt(f64(4.0)))