Skip to content

This is a programming language that I've created using python's tree data structure.

Notifications You must be signed in to change notification settings

DaduDev/DaduScript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DaduScript

This is a programming language that I've created by myself using the basic tree concepts in Python.

Operations

We can perform basic arithmetic, Logical and Comparision operations directly here:

addition:

>>> 1 + 2
3

substraction:

>>> 1 + 2
3

multiplication:

>>> 1 * 2
2

division:

>>> 1 / 2 #division
0.5

modulos:

>>> 1 % 2
1

and operation:

>>> 1 and 2
1

or operation:

>>> 1 or 2
1

not operation:

>>> not 1
0

greater than operation:

>>> 1 > 2
0

less than operation:

>>> 1 < 2
1

equals operation:

>>> 1 == 2
0

not equals operation:

>>> 1 != 2
1

greater than or equals operation:

>>> 1 >= 2
0

less than or equals operation:

>>> 1 <=> 2
1

About

This is a programming language that I've created using python's tree data structure.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages