https://github.com/nihil-os/jasmin/blob/develop/examples/Arrays.j
write the bytecode using my text editor and run it
write a program with Java bytecode instructions directly?
https://en.wikipedia.org/wiki/Java_bytecode
https://en.wikipedia.org/wiki/Java_bytecode_instruction_listings
invokevirtual -> calls actual type method
javap -v ClassName.class
.class public HelloWorld
.super java/lang/Object
.method public static main([Ljava/lang/String;)V
.limit stack 3
.limit locals 1
getstatic java/lang/System/out Ljava/io/PrintStream;
ldc "Today is my 2 years in The West."
invokevirtual java/io/PrintStream/println(Ljava/lang/String;)V
return
.end method