Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 277 Bytes

operators_integer_addition.mdx

File metadata and controls

21 lines (14 loc) · 277 Bytes
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.