diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-20 00:53:46 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-20 01:00:28 +0200 |
commit | fe2690da0a1b8556995f5a6d2368d250f504b4af (patch) | |
tree | 4aa26f12484de4b9de16107a8d03957c9696376c /tests/io/argv.py | |
parent | f477bfbc75318b30048b2e68f4d04348eac41105 (diff) | |
download | micropython-fe2690da0a1b8556995f5a6d2368d250f504b4af.tar.gz micropython-fe2690da0a1b8556995f5a6d2368d250f504b4af.zip |
unix: Implement sys.argv.
Diffstat (limited to 'tests/io/argv.py')
-rw-r--r-- | tests/io/argv.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/io/argv.py b/tests/io/argv.py new file mode 100644 index 0000000000..a13f2cad21 --- /dev/null +++ b/tests/io/argv.py @@ -0,0 +1,2 @@ +import sys +print(sys.argv) |