I am currently working on a program language with prefixes and parameters it can be found below.
PineCode.rbxm (16.9 KB)
The only issue is the lack of prefixes there is only 6 they can be typed with any capitals example ConsoleLog can be cl, Cl, cL, and CL followed by the parameters.
Here in the following are all the prefixes:
-ConsoleLog: Prints everything after ConsoleLog example: “CL hello world” would print “hello world”
-ValueCreate: Creates a variable or a value a such as the example: “VC valuename String” keep in mind where it says string the first section would have to be capital
-ValueSet: Changes the value of pre-existing value example: “VS valuename himoral8512”
-ValueForget: Forgets a value and all the data associated with it example: “VF valuename”
-KillSwitch: Closes the G. U. I example: “Ks”
-RepeatCommand: Repeats the command by typing a parameter of the amount of repeats used like in the following example: “RC 10 CL by moral8512” prints “by moral8512” 10 times
A bonus feature is when typing parameters you can surround it in these symbols [] it will return the value of the variable name inside so if I say “VC hello String”, “VS hello moral8512” , and then I say “CL [hello]” it would print “moral8512”.
The only issue I could find is the lack of prefixes as previously stated may anyone list some ideas they have.