From e7d063fab9b1debd1992c83d55934effffcce1f7 Mon Sep 17 00:00:00 2001 From: souravirus Date: Sun, 1 Oct 2017 19:48:20 +0530 Subject: [PATCH] Added brainfuck and scala --- helloworld.bf | 1 + helloworld.scala | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 helloworld.bf create mode 100644 helloworld.scala diff --git a/helloworld.bf b/helloworld.bf new file mode 100644 index 0000000..8f0a1a7 --- /dev/null +++ b/helloworld.bf @@ -0,0 +1 @@ +-[------->+<]>-.-[->+++++<]>++.+++++++..+++.[--->+<]>-----.--[->++++<]>-.--------.+++.------.--------. diff --git a/helloworld.scala b/helloworld.scala new file mode 100644 index 0000000..c559fd5 --- /dev/null +++ b/helloworld.scala @@ -0,0 +1,4 @@ + +object Hello extends App { + println("Hello, World!") +}