aboutsummaryrefslogtreecommitdiff
path: root/.boilerplates/cs
diff options
context:
space:
mode:
Diffstat (limited to '.boilerplates/cs')
-rw-r--r--.boilerplates/cs/Program.cs9
-rwxr-xr-x.boilerplates/cs/run4
2 files changed, 13 insertions, 0 deletions
diff --git a/.boilerplates/cs/Program.cs b/.boilerplates/cs/Program.cs
new file mode 100644
index 0000000..9dd8986
--- /dev/null
+++ b/.boilerplates/cs/Program.cs
@@ -0,0 +1,9 @@
+using System;
+
+public class Program
+{
+static int Main(string[] args)
+{
+ Console.WriteLine("Hello, world!");
+}
+}
diff --git a/.boilerplates/cs/run b/.boilerplates/cs/run
new file mode 100755
index 0000000..397bce4
--- /dev/null
+++ b/.boilerplates/cs/run
@@ -0,0 +1,4 @@
+#!/usr/bin/env sh
+
+csc Program.cs
+mono Program.exe