summaryrefslogtreecommitdiffstats
path: root/foobar/FooBar.cs
blob: 7edd61bc1e4e7c4428322a18f68fe6dcdda6542b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

public class FooBar
{
    public static void Print()
    {
        Console.WriteLine("FooBar");
        Baz.Print();
    }
}