how to make a programming language in python code example
Example 1: how to make a programming language with python
just wanted to say that the guy who put a link is very helpful so yeahahha
Example 2: python language
#for python comments
Example 3: how to make fizzbuzz in python
for x in range(100):
output = ""
if x % 3 == 0:
output += "Fizz"
if x % 5 == 0:
output += "Buzz"
print(output)