require 'Win32API'def getch @getch ||= Win32API.new('crtdll', '_getch', [], 'L') @getch.callendwhile (c = getch) != ?\e puts "You typed #{c.chr.inspect}"end