From 4d6561f5f0478092f9f4d3e3925625bf8a7d11a4 Mon Sep 17 00:00:00 2001 From: giovanabritooliveira Date: Mon, 28 Oct 2019 12:44:39 -0300 Subject: [PATCH 1/2] haskell --- helloworld.hs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 helloworld.hs diff --git a/helloworld.hs b/helloworld.hs new file mode 100644 index 0000000..469b55f --- /dev/null +++ b/helloworld.hs @@ -0,0 +1,3 @@ +main :: IO () +main = do + putStrLn "Hello World!" From dc66b85f10a37aa48c0cc248181260f286aae4d4 Mon Sep 17 00:00:00 2001 From: giovanabritooliveira Date: Mon, 28 Oct 2019 13:18:36 -0300 Subject: [PATCH 2/2] prolog --- helloworld.pl | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 helloworld.pl diff --git a/helloworld.pl b/helloworld.pl new file mode 100644 index 0000000..37b862c --- /dev/null +++ b/helloworld.pl @@ -0,0 +1,2 @@ +main:- + write("Hello world!"). \ No newline at end of file