Arithmetic/Integer: Difference between revisions

→‎{{header|Lasso}}: add lasso integer arithmetic examples
(→‎{{header|Lasso}}: add lasso integer arithmetic examples)
Line 1,258:
{{VI snippet}}<br/>
[[File:LabVIEW_Arithmetic_Integer.png]]
 
 
 
=={{header|Lasso}}==
<lang Lasso>local(a = 6, b = 4)
#a + #b // 10
#a - #b // 2
#a * #b // 24
#a / #b // 1
#a % #b // 2
math_pow(#a,#b) // 1296
math_pow(#b,#a) // 4096</lang>
 
=={{header|LFE}}==
140

edits