beef-lang is a programming language created in 2019 by Brian Fiete.
git clone https://github.com/beefytech/Beef
#440on PLDB | 4Years Old | 137Repos |
Beef Programming Language
using System;
namespace HelloWorld
{
class Program
{
static void Main()
{
Console.WriteLine("Hello World");
}
}
}
Feature | Supported | Token | Example |
---|---|---|---|
Strings | ✓ | " | "Hello world" |
Print() Debugging | ✓ | Console.WriteLine |