Tested C#

This commit is contained in:
ilsix 2024-04-04 22:27:23 +02:00
parent ad895d851e
commit 9d759639b9
2 changed files with 12 additions and 1 deletions

View File

@ -1 +1,9 @@
Console.WriteLine("Hello World!"); //compiles and runs successfully
using System;
public class GFG {
static public void Main()
{
Console.WriteLine("Hello World!");
}
}

3
c#/test.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
mcs -out:helloworld helloworld.cs
mono helloworld