using System;
namespace MyCompiler {
static class ProgramStatic{
public static void print() {
Console.WriteLine("in Static application");
}
}
class Program {
Console.WriteLine("Hello world!");
}
class Program {
public static void Main(string[] args) {
Console.WriteLine("Hello world!");
}
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: