minclude_include.nim 189 B

12345
  1. # this file is included and relies on imports within the include
  2. proc create*(greeting: string = "Hello", subject: string = "World"): Greet =
  3. Greet(greeting: greeting, subject: subject)