4 lines
73 B
Dart
4 lines
73 B
Dart
main(List<String> args) {
|
|
for(var arg in args)
|
|
print(arg);
|
|
}
|