peon/tests/fwd.pn

13 lines
145 B
Plaintext

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