RosettaCodeData/Task/Runtime-evaluation/Pike/runtime-evaluation.pike

10 lines
176 B
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
program demo = compile_string(#"
string name=\"demo\";
string hello()
{
return(\"hello, i am \"+name);
}");
demo()->hello();
Result: "hello, i am demo"