git @ Cat's Eye Technologies Dipple / master java / HelloWorld.java
master

Tree @master (Download .tar.gz)

HelloWorld.java @masterraw · history · blame

// SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
// For more information, please refer to <https://unlicense.org/>
// SPDX-License-Identifier: Unlicense

import java.io.*;

class HelloWorld
{
    public static void main(String args[])
    {
        Foo f = new Foo<Integer>(new Integer(4));
        f.hello();
    }
}

class Foo<Y>
{
    private Y state;
    Foo(Y s)
    {
        state = s;
    }
    
    void hello()
    {
        System.out.println("Hello World!" + state.toString());
    }
}