wu-lang / wu

🐉 A practical game and data language
https://wu-lang.gitbook.io/guide/
MIT License
467 stars 17 forks source link

Add option types #16

Closed nilq closed 5 years ago

nilq commented 5 years ago
print: extern fun(...?)

bee:  int? = 100
buzz: int  = bee!
foo:  int? = bee

print(bee, buzz, foo, nil)