Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
656 B
Plaintext
32 lines
656 B
Plaintext
.class public HelloWorld
|
|
.super java/lang/Object
|
|
|
|
;
|
|
; standard initializer (calls java.lang.Object's initializer)
|
|
;
|
|
.method public <init>()V
|
|
aload_0
|
|
invokenonvirtual java/lang/Object/<init>()V
|
|
return
|
|
.end method
|
|
|
|
;
|
|
; main() - prints out Hello World
|
|
;
|
|
.method public static main([Ljava/lang/String;)V
|
|
.limit stack 2 ; up to two items can be pushed
|
|
|
|
; push System.out onto the stack
|
|
getstatic java/lang/System/out Ljava/io/PrintStream;
|
|
|
|
; push a string onto the stack
|
|
ldc "Hello World!"
|
|
|
|
; call the PrintStream.println() method.
|
|
invokevirtual java/io/PrintStream/println(Ljava/lang/String;)V
|
|
|
|
; done
|
|
return
|
|
.end method
|
|
|