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

BeginNote
Copyright 2021 Jookia <contact@jookia.org>
SPDX-License-Identifier: LGPL-2.1-or-later
This is a comment and should be ignored by the parser
EndNote

System Print BeginText Hello, there! EndText Done
System Print BeginText Please enter your name: EndText Done
Set Name To System Read EndSet BeginNote Reads an entire line EndNote
Set Prefix To BeginText Hi there, EndText EndSet
Set Greeting To Prefix Append Name EndSet

If Name Equals BeginText Jookia EndText
Then System Print BeginText Hi creator! EndText
Else System Print Greeting
EndIf

System Exit Done