1
0
mirror of https://github.com/exaloop/codon.git synced 2025-06-03 15:03:52 +08:00

13 lines
277 B
Python
Raw Normal View History

# Copyright (C) 2022-2024 Exaloop Inc. <https://exaloop.io>
2022-01-24 11:14:50 +01:00
2021-09-27 14:02:44 -04:00
argv = list(__argv__, len(__argv__))
stdin = File(_C.seq_stdin())
stdout = File(_C.seq_stdout())
stderr = File(_C.seq_stderr())
2022-02-16 16:51:16 +01:00
def exit(status: int = 0):
2021-09-27 14:02:44 -04:00
raise SystemExit(status)
2022-01-24 11:14:50 +01:00
maxsize = 0x7FFFFFFFFFFFFFFF