tlang/source/tlang/testing/simple_function_decls.t

15 lines
140 B
Raku

module simple_function_decls;
int j = 21;
int k = 22;
int apple(int j)
{
int h = 69;
}
int banana(int j)
{
int h = 64;
k=1;
}