1
0
This commit is contained in:
Deven Blake 2021-05-06 09:18:37 -04:00
parent 8ec00ab832
commit fab099f7ac
2 changed files with 7 additions and 0 deletions

6
it/f.py Normal file
View File

@ -0,0 +1,6 @@
def main(argc, argv, buffer):
if(argc > 2):
print("?")
else:
buffer.filename = argv[1]
return buffer

1
it/filename.py Normal file
View File

@ -0,0 +1 @@
from f import *