helloworld

This commit is contained in:
GZod01 2024-04-01 15:54:34 +02:00
parent 1a0336c631
commit 78fa730497
2 changed files with 7 additions and 0 deletions

BIN
hello.class Normal file

Binary file not shown.

7
hello.java Normal file
View file

@ -0,0 +1,7 @@
import java.util.Arrays;
import java.lang.String;
public class hello{
public static void main(String[] args){
System.out.println(Arrays.toString(new Object[] {1, 1.2, 2.2984092840294, "helloworld"}));
}
}