mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-08 15:14:09 -06:00
18 lines
235 B
C#
18 lines
235 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
class Script
|
|
{
|
|
[STAThread]
|
|
static public void Main(string[] args)
|
|
{
|
|
MessageBox.Show("Just a test!");
|
|
|
|
for (int i = 0; i < args.Length; i++)
|
|
{
|
|
Console.WriteLine(args[i]);
|
|
}
|
|
}
|
|
}
|
|
|