add jortsc/main.py
This commit is contained in:
parent
05c2563c7f
commit
3c983b004c
1 changed files with 16 additions and 0 deletions
16
jortsc/main.py
Normal file
16
jortsc/main.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
import sys
|
||||
|
||||
def main():
|
||||
"""main entry point"""
|
||||
try:
|
||||
in_data = sys.stdin.read()
|
||||
except EOFError:
|
||||
pass
|
||||
|
||||
# TODO: lol
|
||||
print(in_data)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Reference in a new issue