Skip to content

Instantly share code, notes, and snippets.

@ftsf
Created June 14, 2019 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ftsf/ffb596c02672a24b9ea126858d0afa13 to your computer and use it in GitHub Desktop.
Save ftsf/ffb596c02672a24b9ea126858d0afa13 to your computer and use it in GitHub Desktop.
import macros
macro setField(obj: untyped, field: string, v: untyped): untyped =
let field = newIdentNode($`field`)
result = quote do:
`obj`.`field`=`v`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment