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