You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -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()))
|