Back to project page ddgatve-android.
The source code is released under:
Apache License
If you think the Android project ddgatve-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lv.hello; //from ww w . jav a 2s. c o m public class HelloWorld { /** * @param args */ public static void main(String[] args) { System.out.println("Sveicin??ta, pasaule!"); int a = Integer.parseInt(args[0]); int b = Integer.parseInt(args[1]); System.out.println("a + b = " + (a + b)); } }