peon/tests/fwd.pn

13 lines
151 B
Plaintext

## Tests forward declarations
import std;
fn foo: int;
print(foo() == 42);
fn foo: int {return 42;} # Commenting this line will cause an error