clay/bindings/jai/examples/introducing_clay_video_demo/test.jai

21 lines
234 B
Plaintext
Raw Normal View History

#import "Basic";
test :: () -> bool #must #expand {
print("one\n");
`defer print("two\n");
return true;
}
main :: () {
print("ichi\n");
if test() {
print("ni\n");
if test() {
print("san\n");
}
}
print("yon\n");
}