A working programming language made using Python!
git clone https://github.com/cvython/Vython.git
cd Vython
$ python3 vython.py main.vo
.vo
.txt
to .vo
! Though it is recommended to use the file extension .vo
.
show("Hello World")
age = enter("Age: ")
show("Age = "+age)
if a > 18
{
show("Adult")
}else
{
show("Child")
}
if a > 18 and a < 50
{
show("Adult, But Not Old")
}
if a > 18 || a > 16
{
show("Can Drive")
}
if canbe(a, "int")
{
show("Variable is an integer")
}
a = [0, 1, 2, 3, 4, 5]
## Show The First Cell
show(a[0])
This Project is MIT Licensed