Hello World

mike_branco

Solid State Member
Messages
15
Location
United States of America
Code:
public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }

}

Excited to be a part of the community! I am a web designer and developer, if you want to see my work, let me know what you think=]
 
Last edited by a moderator:
Code:
public class Welcome
{
    public static void main(string[] args)
    {
        Console.WriteLine("Welcome to the site!");
    }
}
 
Back
Top Bottom