PasteRack.org
Paste # 71891
2021-09-28 18:07:19

Fork as a new paste.

Paste viewed 614 times.


Embed:

  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)
  15.  

=>

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