mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
5 lines
No EOL
165 B
Python
5 lines
No EOL
165 B
Python
with open("hex.lua", "w") as f:
|
|
print("return {", file=f)
|
|
for i in range(256):
|
|
print(f'"{hex(i)[2:].rjust(2, "0")}",', file=f)
|
|
print("}", file=f) |