From bbe3bd8a5865a64ccda8a24f5dac5238f6a2533a Mon Sep 17 00:00:00 2001 From: Isaac Yriarte Date: Mon, 1 Oct 2018 11:56:41 -0500 Subject: [PATCH] Feat: Hello world in pascal --- hello-world/Pascal.pas | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello-world/Pascal.pas diff --git a/hello-world/Pascal.pas b/hello-world/Pascal.pas new file mode 100644 index 00000000..63b6bc64 --- /dev/null +++ b/hello-world/Pascal.pas @@ -0,0 +1,5 @@ +program HelloWorld; + +begin + writeln('Hello, world!'); +end. \ No newline at end of file