3
mangs
7y

Sometimes i day dream about developing a software that take less than 1.5 minutes to build.

Comments
  • 1
    using System;
    using System.Collections.Generic; using System.Text;

    namespace HelloWorld {
    class Program {
    static void Main(string[] args) {
    Console.WriteLine("Hello, world!");
    }
    }
    }
Add Comment