When I figure out how to make programming languages when I am older, this is one script I would like to make.
!To script in ParseScript, you use methods and variables to operate programs.!
!Strings are wrapped in "?"!
?Hello World!?
!Variables are set with SetVar[]!
!Please note that if the variable is global, in order to use it, you have to put the variable name in at signs.!
SetVar[name[var]; value[?var?]; global[True]]
!Methods are in this format: MethodName[arguments]!
Print[value[@var@]]
!Defining Methods!
!Please note that custom methods are not colored.!
MethodDefine[name[MyMethod]; methodscript[
Print[value[@var@ . ? ? . @var@]]
]
]
MyMethod[]
!Another way to comment is to make
line breaks
in the comment
to comment several blocks.!
!Hashes!
SetVar[name[myvar]; value[{
?key? >> ?var?
}]; global[True]]
Print[value[@myvar@[?key?]]]
You can talk about anything programming-related.