Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

process_cmdline.py 123B

1 year ago
123456789
  1. """
  2. Write to stdout the command line args it received, one per line.
  3. """
  4. import sys
  5. for x in sys.argv[1:]:
  6. print(x)