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