You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PatternWeaveHelloWorld.txt 845B

12345678910111213141516171819
  1. public class HelloWorld extends java.lang.Object:
  2. public void <init>():
  3. ALOAD_0 // HelloWorld this (line 5)
  4. INVOKESPECIAL java.lang.Object.<init> ()V
  5. constructor-execution(void HelloWorld.<init>())
  6. | RETURN
  7. constructor-execution(void HelloWorld.<init>())
  8. end public void <init>()
  9. public static void main(String[]):
  10. method-execution(void HelloWorld.main(java.lang.String[]))
  11. | GETSTATIC java.lang.System.out Ljava/io/PrintStream; (line 8)
  12. | LDC "hello world" (line 9)
  13. | INVOKEVIRTUAL java.io.PrintStream.println (Ljava/lang/String;)V
  14. | RETURN (line 11)
  15. method-execution(void HelloWorld.main(java.lang.String[]))
  16. end public static void main(String[])
  17. end public class HelloWorld