From 58bc225e55f2f59c8fd1bef388f3c054c2483736 Mon Sep 17 00:00:00 2001 From: Milan Kyselica Date: Sun, 1 Oct 2017 16:42:43 +0200 Subject: [PATCH] Pascal implementation --- hello_world.pas | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 hello_world.pas diff --git a/hello_world.pas b/hello_world.pas new file mode 100644 index 0000000..675b6e0 --- /dev/null +++ b/hello_world.pas @@ -0,0 +1,4 @@ +program HelloWorld; +begin + writeln('Hello, world!'); +end.