aboutsummaryrefslogtreecommitdiff
path: root/.run/src/bin/csharp-script.cs
diff options
context:
space:
mode:
Diffstat (limited to '.run/src/bin/csharp-script.cs')
-rw-r--r--.run/src/bin/csharp-script.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/.run/src/bin/csharp-script.cs b/.run/src/bin/csharp-script.cs
new file mode 100644
index 0000000..1e7a3b7
--- /dev/null
+++ b/.run/src/bin/csharp-script.cs
@@ -0,0 +1,8 @@
+Console.WriteLine("");
+Console.WriteLine(" Welcome to use `run.sh` / `run.ps1`");
+Console.WriteLine("");
+Console.WriteLine(" > \"Hello World\"");
+Console.WriteLine(" > cwd : \"{0}\"", Environment.CurrentDirectory);
+var argStr = args.Length > 0 ? string.Join(", ", args.Select(a => $"\"{a}\"")) : "";
+Console.WriteLine(" > args : {0}", argStr);
+Console.WriteLine("");