fork download
  1. using System.Text;
  2.  
  3. StringBuilder builder = new();
  4. builder.AppendLine("The following arguments are passed:");
  5.  
  6. foreach (var arg in args)
  7. {
  8. builder.AppendLine($"Argument={arg}");
  9. }
  10.  
  11. Console.WriteLine(builder.ToString());
  12.  
  13. return 0;
Success #stdin #stdout 0.04s 28644KB
stdin
Standard input is empty
stdout
The following arguments are passed: