RosettaCodeData/Task/String-concatenation/Sidef/string-concatenation-1.sidef

5 lines
66 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
var s = 'hello';
say s+' literal';
var s1 = s+' literal';
say s1;