Skip to content

Instantly share code, notes, and snippets.

@technomancy
Created February 25, 2014 21:48
Show Gist options
  • Save technomancy/9218585 to your computer and use it in GitHub Desktop.
Save technomancy/9218585 to your computer and use it in GitHub Desktop.
phil@enigma ~/music $ racket
Welcome to Racket v5.2.1.
> read-line
#<procedure:read-line>
> pp
reference to undefined identifier: pp
=== context ===
/usr/share/racket/collects/racket/private/misc.rkt:87:7
> pretty-print
#<procedure:pretty-print>
> (match '(1 2 3)
[(list _ _ a) a])
3
> #rx"\.(\d+):"
stdin::67: read: unknown escape sequence \. in string
=== context ===
/usr/share/racket/collects/racket/private/misc.rkt:87:7
> reference to undefined identifier: d+
=== context ===
/usr/share/racket/collects/racket/private/misc.rkt:87:7
> reference to undefined identifier: :
=== context ===
/usr/share/racket/collects/racket/private/misc.rkt:87:7
> #rx"\\.(\\d+\\)"
"\n#rx"
> reference to undefined identifier: |\.|
=== context ===
/usr/share/racket/collects/racket/private/misc.rkt:87:7
> reference to undefined identifier: |\d+\|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment