RosettaCodeData/Task/Runtime-evaluation/Pike/runtime-evaluation.pike
2023-07-01 13:44:08 -04:00

9 lines
176 B
Text

program demo = compile_string(#"
string name=\"demo\";
string hello()
{
return(\"hello, i am \"+name);
}");
demo()->hello();
Result: "hello, i am demo"