Package lesson1

Examples of lesson1.HelloWorld


* User: gkislin
* Date: 07.04.2014
*/
public class Fruits {
    public static void main(String[] args) {
        Fruit fruit = new Apple();
        System.out.println(fruit.toString());
    }
View Full Code Here


* User: gkislin
* Date: 07.04.2014
*/
public class Fruits {
    public static void main(String[] args) {
        Fruit fruit = new Apple();
        System.out.println(fruit.toString());
    }
View Full Code Here

TOP

Related Classes of lesson1.HelloWorld

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.