Msvcrt.hx 236 B

123456789101112131415
  1. package python.lib;
  2. extern class Msvcrt {
  3. public static function getch ():python.lib.Types.Bytes;
  4. static function __init__ ():Void
  5. {
  6. try {
  7. python.Syntax.importAs("msvcrt", "python.lib.Msvcrt");
  8. } catch (e:Dynamic) {}
  9. }
  10. }