Comment 4 for bug 2032571

Revision history for this message
Vladimir Petko (vpa1977) wrote : Re: [FFe] Please update to openjdk 21+35

Basic Hello world test:
--------
root@mantic:~# apt install openjdk-21-jre-headless
....
root@mantic:~# cat << EOF > Test.java
public class Test {
    public static void main(String[] args){
        System.out.println("Hello world");
    }
}
EOF
java Test.java
Hello world

--------