# 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";