Quine in Beef

Published on 18 January 2024 (Updated: 18 January 2024)

Welcome to the Quine in Beef page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

using System;
namespace Quine;
class Program
{
    public static int Main(String[] args)
    {
        String s = """
using System;
namespace Quine;
class Program
{{
    public static int Main(String[] args)
    {{
        String s = {1}{1}{1}
{0}
{1}{1}{1};
        Console.WriteLine(s, s, '"');
        return 0;
    }}
}}
""";
        Console.WriteLine(s, s, '"');
        return 0;
    }
}

Quine in Beef was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.