Add Beeflang

Fixes #717

Co-Authored-By: Hamdy Abou El Anein <hamdy.aea@protonmail.com>
This commit is contained in:
Richie Bendall 2020-03-30 07:21:08 +13:00
parent 8504e9ec26
commit eaead982dd
2 changed files with 13 additions and 0 deletions

View File

@ -110,6 +110,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Battlestar](b%5Cbattlestar.bts)
* [Bcpl](b%5CBCPL.bcl)
* [Beatnik](b%5Cbeatnik.beatnik)
* [Beef](b%5Cbeef.bf)
* [Befunge](b%5Cbefunge.be)
* [Bennugd](b%5CBennuGD)
* [Beta](b%5Cbeta.bet)

12
b/beef.bf Normal file
View File

@ -0,0 +1,12 @@
using System;
namespace HelloWorld
{
class Program
{
static void Main()
{
Console.WriteLine("Hello World");
}
}
}