From b8720a0a477bc98877e294ddc695e1408052cae8 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 2 Dec 2014 15:41:29 +0100 Subject: [PATCH] Add mozart hello world --- m/mozart.oz | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 m/mozart.oz diff --git a/m/mozart.oz b/m/mozart.oz new file mode 100644 index 00000000..aa21596b --- /dev/null +++ b/m/mozart.oz @@ -0,0 +1,8 @@ +functor +import + Application + System +define + {System.showInfo 'Hello World!'} + {Application.exit 0} +end