summaryrefslogtreecommitdiffstats
path: root/eshtrans/funcparams.esh
diff options
context:
space:
mode:
Diffstat (limited to 'eshtrans/funcparams.esh')
-rw-r--r--eshtrans/funcparams.esh6
1 files changed, 6 insertions, 0 deletions
diff --git a/eshtrans/funcparams.esh b/eshtrans/funcparams.esh
index cfabe61..8630eee 100644
--- a/eshtrans/funcparams.esh
+++ b/eshtrans/funcparams.esh
@@ -10,8 +10,14 @@ greet(bool doprint, int i, string s)
fi
}
+bye(void)
+{
+ printf 'Goodbye, cruel world!'
+}
+
main()
{
greet true 3 'Hello, world!'
+ bye
return 0
}