test |
---|
foo |
This operator performs integers addition.
<CodeTab labels={["ReScript", "JS Output"]}>
let result = 1 + 2
val result = 3;
For adding floats see the +.
operator.
For contatenating strings see the ++
operator.
test |
---|
foo |
This operator performs integers addition.
<CodeTab labels={["ReScript", "JS Output"]}>
let result = 1 + 2
val result = 3;
For adding floats see the +.
operator.
For contatenating strings see the ++
operator.