summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/shared_library/src/lib/Greeter.cs
blob: cf895138a07486bd61ebfe5d42d02dfd5bba8fc1 (plain)
1
2
3
4
5
6
7
namespace MyLib;

public static class Greeter {
    public static string Greet(string name) {
        return $"hello {name}!";
    }
}