waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

Hi.cs (172B)


      1 namespace MyApp
      2 {
      3 	using System;
      4 
      5 	public class Hi
      6 	{
      7 		public static int Main(string[] args)
      8 		{
      9 			My fu = new My("Hello there");
     10 			fu.display();
     11 			return 0;
     12 		}
     13 	}
     14 }
     15