Ruby Programming control and meta combinations used for?
?a # character code
?\n # code for a newline (0x0a)
?\C-a # control a = ?A & 0x9f = 0x01
?\M-a # meta sets bit 7
?\M-\C-a # meta and control a
?\C-? # delete character
I came across the term when reading into the Ruby Pickaxe book, I'm not sure what on earth meta or control does, I assume it does something similar to C's bitshifting operators (<< >>) but I'm not sure, so decided to confirm.