Sha256: ce6e46952a2796a4e24517dc5e676559417f9bc9dcd5edc172f38d15b45d8fd4
Contents?: true
Size: 734 Bytes
Versions: 4
Compression:
Stored size: 734 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 the *show* variants of the above *set* commands.
Version data entries
4 entries across 4 versions & 1 rubygems