A programming language made from scratch in C++ that has a similar syntax to the BASIC programming language, code is extended from: https://github.com/KenKenhehe/ToyScript
Simply extract the file in release and add it in environment variable!
After adding the executable into the environment variable, simply go
ShinToyScript <file_name>
Example:
ShinToyScript D:/myScript.sts
Create a file named "helloWorld.sts", please save file with the extension ".sts".
In helloWorld.sts type:
print("hello world")
Then run
ShinToyScript helloWorld.sts
Should output:
>>>hello world