Skip to content

Instantly share code, notes, and snippets.

@4noha
Created March 15, 2018 04:45
Show Gist options
  • Save 4noha/781eca10999e00b9cdd3d1281d8251f3 to your computer and use it in GitHub Desktop.
Save 4noha/781eca10999e00b9cdd3d1281d8251f3 to your computer and use it in GitHub Desktop.
require 'io/console'
puts "Angle( C-c: exit )\n1. 0°\n2. 90°\n3. 180°"
while c = STDIN.getch
exit if c == ?\C-c
if c == "1" || c == "2" || c == "3"
print c
puts "\nAngle( C-c: exit )\n1. 0°\n2. 90°\n3. 180°"
else
puts "Prease choose 1-3 number"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment