blob: 1e7a3b7d7b2a75ad634fa21e24e04490ec5886fc (
plain) (
blame)
1
2
3
4
5
6
7
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("");
|