Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
slow_tests
/
repl
/
fn_calls.repl
10
lines
·
10
sloc
·
164 bytes
·
a8e0c9efff08d54372f83b23018dff3704543cba
Raw
1
math.sinf(50.0)
2
println(1+math.sinf(50.0))
3
fn test() { println('foo') } fn test2(a int) { println(a) }
4
test()
5
test2(123)
6
===output===
7
-0.26237485
8
0.7376251
9
foo
10
123
11