Space insensitive function calling.
In the old days of StoryScript, or the current day of this Transpiler, You need to have a space between the function name and the argument lists.
For example: print("Hello, world!") is invalid, and is needed to be print ("Hello, world!")
But now in StoryScript (Interpreter version), that has been changed.
You can now do both print("Hello, world!") and print ("Hello, world!")
Space insensitive function calling.
In the old days of StoryScript, or the current day of this Transpiler, You need to have a space between the function name and the argument lists.
For example:
print("Hello, world!")is invalid, and is needed to beprint ("Hello, world!")But now in StoryScript (Interpreter version), that has been changed.
You can now do both
print("Hello, world!")andprint ("Hello, world!")