Main
From Abap2Java
[edit]
ABAP
No direct translation.. The starting point for an ABAP application is the first line of an ABAP report.
See also:
Hello World
[edit]
Java
main is the name of a special method that is the starting point for any java application. The statements in the block will be processed first.
public class First { public static void main(String[] args) { System.out.print("Hello Java World"); } }

