Words
49
Reading
1 min
Listen
Play
2y
This is implements a simple program that outputs all the arguments given on the command line.
main is the function executed when the program starts. pub means it's a public function (and not an internal one).
print outputs the text to the standard output, not printer.
RE: