We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Category: Arithmetic Description: This sample shows some basic integer arithmetic Code:
using Console; SampleArithmetic1() : void { def x = 5 + 8 - 3; def y = x * 3 + 5; def (r1, r2) = (x / 3, x % 3); WriteLine($"x = $x, y = $y, r1 = $r1, r2 = $r2") }
Execution Result:
x = 10, y = 35, r1 = 3, r2 = 1