File: main.py

package info (click to toggle)
rust-expectrl 0.7.1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 768 kB
  • sloc: python: 55; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
import sys

def main():
    try:
        print(' '.join(sys.argv[1:]))
    except:
        exit(1)

if __name__ == "__main__":
    main()