From db740ab921604540ccfd0887f4738b2408688c46 Mon Sep 17 00:00:00 2001 From: Nithin KS Date: Mon, 12 Oct 2020 15:51:47 +0530 Subject: [PATCH] Added F, BC and BeanShell (#836) Co-authored-by: Richie Bendall --- README.md | 5 ++++- b/BC.txt | 2 ++ b/Beanshell.bsh | 1 + f/F.f95 | 3 +++ 4 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 b/BC.txt create mode 100644 b/Beanshell.bsh create mode 100644 f/F.f95 diff --git a/README.md b/README.md index dd2ce83a..5d6f96ce 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (688 total) +## Languages (691 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -138,7 +138,9 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Batch](b/batch.cmd) * [Batsh](b/batsh.batsh) * [Battlestar](b/battlestar.bts) +* [BC](b/BC.txt) * [Bcpl](b/BCPL.bcl) +* [BeanShell](b/Beanshell.bsh) * [Beatnik](b/beatnik.beatnik) * [Beef](b/beef.bf) * [Befunge](b/befunge.be) @@ -256,6 +258,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Erlang Escript](e/erlang_escript.erl) * [Euphoria](e/euphoria.ex) * [Express](e/express.js) +* [F](f/F.f95) * [Factor](f/factor.factor) * [Factors](f/factors.fact) * [Falcon](f/falcon.fal) diff --git a/b/BC.txt b/b/BC.txt new file mode 100644 index 00000000..bb49eb5e --- /dev/null +++ b/b/BC.txt @@ -0,0 +1,2 @@ +print "Hello World\n" +quit diff --git a/b/Beanshell.bsh b/b/Beanshell.bsh new file mode 100644 index 00000000..decaab53 --- /dev/null +++ b/b/Beanshell.bsh @@ -0,0 +1 @@ +print ("Hello World"); diff --git a/f/F.f95 b/f/F.f95 new file mode 100644 index 00000000..37d00810 --- /dev/null +++ b/f/F.f95 @@ -0,0 +1,3 @@ +program hello + print *, "Hello World" +end program hello