what? also, your particular case can be fixed by making explicit overload
without `foo` parameter.
template h( foo: string, bar : untyped ) =
echo foo
bar
template h(bar: untyped) =
h "", bar
Run
- How is default argument before code line one? mardiyah
- How is default argument before code line one? SolitudeSF
