You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
6 lines
130 B
Python
6 lines
130 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
for line in sys.stdin:
|
|
if line.strip():
|
|
print('#include "{}"'.format(line.strip()))
|