Difference between revisions of "True"
Jump to navigation
Jump to search
(Created page with "<c>true</c> is a keyword value equivalent to <c>1</c>. Category:Language Category:Keywords {{stub}}") |
|||
Line 4: | Line 4: | ||
[[Category:Keywords]] | [[Category:Keywords]] | ||
− | + | == example == | |
+ | <ms>greet = true | ||
+ | if greet then | ||
+ | print "hello user" | ||
+ | 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