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