Difference between revisions of "True"
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
== example == | == example == | ||
− | <ms>greet = true | + | <ms>greet == true |
if greet then | if greet then | ||
print "hello user" | print "hello user" | ||
end if</ms> | end if</ms> |
Revision as of 09:34, 21 February 2022
true
is a keyword value equivalent to 1
.
example
greet == true
if greet then
print "hello user"
end if