fa/tests/stdlib/passing/math_div10.fa
Ari Archer c30a3de674
Deprecate mutability contexts
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-07-27 13:41:50 +03:00

13 lines
225 B
Text

include 'std/std.fa'
include 'std/math.fa'
include 'std/logic.fa'
fun main [ str str int ] eo
1234 #div10 123 eql #not if
"1234 // 10 is supposed to return 123" %error
end
%EXIT_SUCCESS %exit
end
#main