aboutsummaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..59ad897
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,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();
+ }
+}