Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Nim

Visibility

unlisted

Author

legacy-anonymous

Created

2017-01-17T20:46:55Z

Updated

2017-01-17T20:46:55Z

template testOuter(body: untyped) =
  template setDefined(val: string) =
    echo val
    const SomeConst: string = val
    echo SomeConst

  when not declared(SomeConst):
    const SomeConst = "Default"

  body

testOuter:
  setDefined("Defined Value")

  echo "Hello, World!"
INFO