aboutsummaryrefslogtreecommitdiff
path: root/Program.cs
blob: 59ad8975faf227e05d22b587e298913b49a21c70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace HermesOnDisk;

public abstract class Program
{
    public static void Main(string[] args)
    {
        HermesOnDisk.Root = new DirectoryInfo(AppContext.BaseDirectory);
        HermesOnDisk.String[0] = "MyName";
        HermesOnDisk.Float[0] = 12;
        HermesOnDisk.Boolean[0] = true;
        HermesOnDisk.Store();
    }
}