Getting Started

Welcome to Beef

Beef is primarily an IDE-based experience, but command-line building is also supported. Your first step is to install Beef or build from source. Currenly binaries are only available for Windows, and the Beef IDE is only available for Windows.

Platforms Supported

Binaries are available for Windows, and building from source is supported on Windows, Linux, and macOS. Cross-compilation is in development for targets including Android and iOS.

Creating an IDE-based “Hello World”

using System;

namespace Hello
{
    class Program
    {
        static void Main()
        {
            Console.WriteLine("Hello, world!");
        }
    }
}

Creating an command-line based “Hello World”