Run »
public class Main { static void myMethod(int x) { System.out.println(x); } public static void main(String[] args) { myMethod(10); } }
10