minion/int.mn

27 lines
494 B
Text
Raw Permalink Normal View History

2022-06-15 18:08:41 +02:00
func: print(number: x, string: new) = {
2022-06-15 15:37:11 +02:00
stdout: out = x
2022-06-15 18:08:41 +02:00
stdout: newline = new
2022-06-15 15:37:11 +02:00
}
2022-06-15 18:08:41 +02:00
string: new = {
}
2022-06-15 15:37:11 +02:00
number: test = 5
number: another
another = 5.5
number: third = test + another
number: fourth = test - another
number: fifth = test * another
number: sixth = test / another
number: seventh = test % another
number: eighth = 7 % test
number: nineth = 7 + 5
2022-06-15 18:08:41 +02:00
print(third, new)
print(fourth, new)
print(fifth, new)
print(sixth, new)
print(seventh, new)
print(eighth, new)
print(nineth, new)