DEBSOURCES
Skip Quicknav
sources / pyparsing / 3.3.2-1 / examples / tiny / samples / hello_user_function.tiny
123456789101112
string say_hello(string name) { return "Hello " + name + "!\n"; } int main() { string name; read name; write say_hello(name); return 0; }