gs_test/tests/example_math.jai

9 lines
98 B
Plaintext

times2 :: (a: int) -> int {
return a + a;
}
times3 :: (a: int) -> int {
return a + a + a;
}