summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/setup_win_printargv/files/PrintArgv.cs
blob: 5ca3a8a01d56ae2f91aac3a5424f7d14bed7cb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
// This has been compiled to an exe and uploaded to S3 bucket for argv test

namespace PrintArgv
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(string.Join(System.Environment.NewLine, args));
        }
    }
}