13 lines
102 B
Plaintext
Raw Normal View History

2025-03-02 17:53:18 +01:00
import core
2025-03-03 12:14:53 +01:00
import sys
2025-03-02 17:53:18 +01:00
main() {
2025-03-03 12:14:53 +01:00
func := f
func()
sys.exit(1)
}
f() {
2025-03-02 17:53:18 +01:00
exit := core.exit
exit()
}