Closed dhm116 closed 9 years ago
In the readme:
import templates proc testPage (name: string) = tmpli html""" <body> <h1>Hello $name!</h1> </body> """ echo testPage()
should be:
import templates proc testPage (name: string): string = tmpli html""" <body> <h1>Hello $name!</h1> </body> """ echo testPage()
Thank you, fixed.
In the readme:
should be: