Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 356 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 356 Bytes

kaoft2

Kaoft v2

A programming language written with python

How to use

A simple Hello World:

>>> PRINT("Hello World!")

Output:

"Hello World!"

Operators:

>>> VAR operation = 1 - 1
>>> PRINT(operation)

Output:

0