Difference between revisions of "True"

From MiniScript Wiki
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}}")
 
m (Fixed assignment; formatting)
 
(2 intermediate revisions by one other user not shown)
Line 4: Line 4:
 
[[Category:Keywords]]
 
[[Category:Keywords]]
  
{{stub}}
+
== Example ==
 +
<ms>greet = true
 +
 
 +
if greet then
 +
  print "hello user"
 +
end if</ms>

Latest revision as of 12:52, 21 February 2022

true is a keyword value equivalent to 1.

Example

greet = true

if greet then
  print "hello user"
end if