Added F, BC and BeanShell (#836)

Co-authored-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Nithin KS
2020-10-12 15:51:47 +05:30
committed by GitHub
parent 6ff778f771
commit db740ab921
4 changed files with 10 additions and 1 deletions

View File

@@ -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 start-->
## 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)

2
b/BC.txt Normal file
View File

@@ -0,0 +1,2 @@
print "Hello World\n"
quit

1
b/Beanshell.bsh Normal file
View File

@@ -0,0 +1 @@
print ("Hello World");

3
f/F.f95 Normal file
View File

@@ -0,0 +1,3 @@
program hello
print *, "Hello World"
end program hello