From 4b6a72e3336a8808d6192c92eaf3020918c84c00 Mon Sep 17 00:00:00 2001 From: Richard Wheatley Date: Fri, 19 Oct 2018 20:25:34 +0100 Subject: [PATCH 1/2] feat: Modula2 --- Hello-world.MOD | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Hello-world.MOD diff --git a/Hello-world.MOD b/Hello-world.MOD new file mode 100644 index 0000000..4fee56c --- /dev/null +++ b/Hello-world.MOD @@ -0,0 +1,10 @@ +MODULE HelloWorld; + +FROM Terminal2 IMPORT WriteString, WriteLn; + +BEGIN + + WriteString("Hello World"); + WriteLn; + +END HelloWorld. From 78567bad37ac5f7fb27ba0754efe9aec66860b80 Mon Sep 17 00:00:00 2001 From: Richard Wheatley Date: Fri, 19 Oct 2018 20:39:06 +0100 Subject: [PATCH 2/2] Added dickyw71 to contributors list. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2d4e2f3..05834da 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,4 @@ Hello world in your favorite languages! - frewinchristopher (https://github.com/frewinchristopher) - LoicB (https://github.com/LoicB) - willakong (https://github.com/willakong) +- dickyw71 (https://github.com/dickyw71)