libpsyc/pike/text.pike

6 lines
238 B
Plaintext
Raw Permalink Normal View History

2011-06-15 19:36:43 +00:00
int main() {
write("%O\n",
psyc_text("some template with a single variable '[_foo_ba]' done.", ([ "_foo" : "abc" ])));
//psyc_text("some template [_foo] with a single variable '[_foo_ba]' done.", ([ "_foo" : "abc" ])));
}