Newer
Older
NewLang / docs / examples / menu.txt
@Jookia Jookia on 24 Aug 2021 419 bytes examples: Move to docs
NewLang 0

System Print BeginText Type 'Hi' for a greeting EndText Done
System Print BeginText Type 'Exit' to exit EndText Done
Set Command To System Read EndSet

If Command Equals BeginText Hi EndText
Then System Print BeginText Hey there! EndText
Else True BeginNote Does nothing EndNote
EndIf

If Command Equals BeginText Exit EndText
Then System Exit
Else True
EndIf

System Print BeginText What next? EndText Done