Skip to content

Instantly share code, notes, and snippets.

@zarlo
zarlo / cursed.py
Last active October 10, 2022 13:17 — forked from DitherWither/cursed.py
Made if __name__ == "__main__" redirect to main()
from typing import List
void = None
import sys as System
System.out = System.stdout
System.out.print = System.out.write
def println (string: List[str]) -> void: {
System.out.print(string + "\n")
}
System.out.println = println