langatator/examples/input_and_compute.ltor

7 lines
107 B
Text
Raw Normal View History

2022-04-29 10:30:44 +00:00
# script to add two numbers
set a to input_number()
set b to input_number()
set res to a+b
2022-05-15 17:45:27 +00:00
print_int(res)