11 lines
135 B
Plaintext
11 lines
135 B
Plaintext
import io;
|
|
import string;
|
|
|
|
|
|
|int| main() {
|
|
|string::string| str.construct("hello strings");
|
|
io::println(str);
|
|
return 0;
|
|
}
|
|
|