I made this so long ago. it just has input and output and is an interpreter inside of an interpreter. So its slow, bad, and has basically zero useful features. like not even varibles exist :( And no why would I ever work on this
Jam is a very simple interpreted programming language made using python.
Start off by installing python 3.x and then download the zip for the code. In the same directory create a file named "main.jm". you can put the code here. when you have made your code, run the python file by double clicking on it.
functions are ran by typing them in capital letters, and then using the ":" sign.
There are many input and output commands, here they are:
PRINT prints text onto the screen, and is used in the following way:
PRINT: your text here
INPUT allows the user to type text onto the screen. It is used in the following way:
INPUT: your prompt here
SAVEINPUT does the same as input, but it doesnt use a prompt and can be saved into a variable. It is used in the following way:
SAVEINPUT: your variable name here
PRINTSAVE allows you to print variables that have been created. it is used in the following way:
PRINTSAVE: variable to print here
this language is in alpha, so changes are expected all the time.
way to create variables loops if statements way to implement variables into print functions