Skip to content

Instantly share code, notes, and snippets.

@4noha
Last active March 15, 2018 03:56
Show Gist options
  • Save 4noha/f62ae6fef330141364f9ae3d8e325371 to your computer and use it in GitHub Desktop.
Save 4noha/f62ae6fef330141364f9ae3d8e325371 to your computer and use it in GitHub Desktop.
# ruby input_test.c
require 'io/console'
puts "Angle( C-c: exit )\n1. 0°\n2. 90°\n3. 180°"
while c = STDIN.getch
exit if c == ?\C-c
print c
puts "\nAngle( C-c: exit )\n1. 0°\n2. 90°\n3. 180°"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment