Custom Functions
1234567891011121314
class Main {
public static void main(String[] args) {
System.out.println(powerOfTen(3));
noReturn();
}
public static void noReturn() {
System.out.println("There is no return");
}
public static int powerOfTen(int x) {
return 10*x;
}
}
Java
INFO