Java/HelloWorld.java

Материал из Викиучебника

Перейти к: навигация, поиск
/************************************************************
 ** Title:  Привет, мир 
 ** Class:  HelloWorld
 ** Author: Oleg Imanilov
 **   Copyright (c) 2007 Oleg Imanilov.
 **   Permission is granted to copy, distribute and/or
 **   modify  this  document under  the  terms  of the
 **   GNU Free Documentation License
 ** Notes: 
 ************************************************************/

public class HelloWorld {
  public static void main(String[] args) {
    System.out.println("Здравствуй, мир!");
  }
}