-
Notifications
You must be signed in to change notification settings - Fork 0
Syntax
irxground edited this page Jun 26, 2012
·
3 revisions
サブルーチンが存在しない場合、メインルーチン宣言はしなくてよい。
Print "Hello, world", NewLine
サブルーチンが存在する場合、メインルーチン宣言をすること。
Main
Greet
End Main
Sub Greet
Print "Hello, world"
PrintLine
End Sub
また、コメントと空白文字を除く最初の文字が [
である場合、タグモードで解析される。
タグモードでは プログラムを[
と]
の間に書き、文字列をそのまま書く。
Hello, worldは以下のようになる。
[Print] Hello, world [PrintLine]
文字列中に[
を使いたい場合(たとえばHello[the]world
)、直前と直後に別の共通するトークンを入れること。
[Print -] Hello[the]world [- PrintLine]
[Print @] Hello[the]world [@ PrintLine]