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