Created
March 15, 2018 04:45
-
-
Save 4noha/781eca10999e00b9cdd3d1281d8251f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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