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

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");
}
}
}