Simple language for doing math quickly and exporting calculation data
Executing your code:
kane run [PATH_TO_FILE]Opening a sandbox:
kane sandboxFinding the difference:
# Input
x = difference of 4 and 2
write(x)
# Output
2Finding the sum:
# Input
x = add 5 and 10
write(x)
# Output
15Check if is rational:
# Input
number = sqrt of 3
x = is number rational
write(x)
# Output
False