Tagged Questions
7
votes
4answers
3k views
How to get a single character without pressing enter?
How can I get a single keyboard character from the terminal with Ruby without pressing enter?
I tried Curses::getch, but that didn't really work for me.
1
vote
1answer
505 views
Something like getch(), textcolor() and gotoxy() in Ruby
I want to use these functions from the conio.c library (Borland) in Ruby, specially getch().
getch() gets a key from the keyboard without press enter.
textcolor() changes the color of the text in ...