maid-lang 1.1.0

Maid Programming Language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# file objects.maid: boolean and return objects in maid

stay true = 1;
stay false = 0;

# null/none values are just 0, which technically allows boolean operations on them:
# ```
#serve(not null);
# ```
stay null = 0;

# use on any unimplemented code:
# ```
# func main() {
#     skip;
# }
# ```
stay skip = "unimplemented";