tlang/source/tlang/testing/simple_functor.t

29 lines
238 B
Raku

module simple_functor;
class TestClass
{
static int value = 2;
}
int p = main();
int testFunc()
{
}
int main()
{
int j = 0;
j = 2+TestClass.value;
j=testFunc();
while(j < 10)
{
j = j + 1;
}
}