7 lines
114 B
Text
7 lines
114 B
Text
String s1 = 'Hello ';
|
|
String s2 = 'Salesforce Developer!';
|
|
|
|
String s3 = s1+s2;
|
|
|
|
// Print output
|
|
System.debug(s3);
|