5 lines
79 B
Dart
5 lines
79 B
Dart
void main() {
|
|
String str = "Hello";
|
|
str = str + " World!";
|
|
print(str);
|
|
}
|