Sha256: 57486cee7c75cb35ca639594845302b38a2688c5906be7e5245ff37054b8b4d4
Contents?: true
Size: 692 Bytes
Versions: 13
Compression:
Stored size: 692 Bytes
Contents
Command examples # This line does nothing. It is a comment. Useful in debugger command files. # This line also does nothing. s # by default, this is an alias for the "step" command !s # shows the value of variable "s". !!s # Evaluates "!s" (or "not s"). The first ! is indicates evaluate. !s # Same as above, since there is a space in column one. info program;; list # Runs two commands "info program" and "list" pr "hi ;;-)" # Syntax error since ;; splits the line and " is not closed. !puts "hi ;;-)" # One way to do the above. See also "macro" "alias", "irb", "set auto eval", "set auto irb", "set abbrev", "info macro", and "show" variants of the above "set" commands.
Version data entries
13 entries across 13 versions & 3 rubygems