6 lines
66 B
Text
6 lines
66 B
Text
|
|
let s1 = "hello"
|
||
|
|
let s2 = s1 ++ " literal"
|
||
|
|
|
||
|
|
Js.log(s1)
|
||
|
|
Js.log(s2)
|