static Throwable pcall(Runnable r) { try { r.run(); return null; } catch (Throwable e) { return e; } }