Files
Toy/test/scripts/separate-exports.toy

12 lines
118 B
Plaintext

//test exports
var field: int = 42;
fn function() {
return 69;
}
export field;
export function;
print "All good";