PasteRack.org
Paste # 5758
2021-09-28 18:06:41

Fork as a new paste.

Paste viewed 610 times.


Embed:

asdf

  1. #lang racket
  2.  
  3. (require
  4.   (for-syntax
  5.    syntax/parse))
  6.  
  7. (define-syntax (ref stx)
  8.   (syntax-parse stx
  9.     ([_ name:id]
  10.      #''name
  11.      )))
  12.  
  13.  
  14. (ref char-info-npc-creature-magmacrab-horseshoe)

=>

'char-info-npc-creature-magmacrab-horseshoe