Difference between revisions of "Set"
m
no edit summary
imported>JOG m |
imported>JOG m |
||
Line 30: | Line 30: | ||
''set a to 10*9/5'' will set a to 18 | ''set a to 10*9/5'' will set a to 18 | ||
To accomplish correct rounding in integer divisions you need to add 0.5: | |||
''set a to 9/5+0.5'' will set a to 2 | |||
''set a to 7/5+0.5'' will set a to 1 | |||