Skip to content

Simple language for doing math quickly and exporting calculation data

Notifications You must be signed in to change notification settings

TechPenguineer/kane

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kane

Simple language for doing math quickly and exporting calculation data

Interpreter

Executing your code:

kane run [PATH_TO_FILE]

Opening a sandbox:

kane sandbox

Language

Finding the difference:

# Input

x = difference of 4 and 2
write(x)

# Output
2

Finding the sum:

# Input
x = add 5 and 10
write(x)

# Output
15

Check if is rational:

# Input
number = sqrt of 3
x = is number rational
write(x)

# Output
False