Day 1: Introduction to Java
and Android Studio
class hello_world {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
class hello_world {
public static void main(String[] args) {
int number = 5*5+10;
System.out.println(number);
}
}