langatator/examples/input_and_compute.ltor

6 lines
109 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-16 06:29:14 +00:00
print_number(res)