Introduction to variables and types
🚧 Pending 🚧
package demo;
public class App {
public static void main( final String[] args ) {
int a = 7;
System.out.printf( "The value of a is %d%n", a );
}
}
The value of a is 7
package demo;
import java.time.LocalDate;
public class App {
public static void main( final String[] args ) {
String name = "Aden";
LocalDate dateOfBirth = LocalDate.of( 2011, 4, 12 );
System.out.printf( "%s was born on %s%n", name, dateOfBirth );
}
}
Aden was born on 2011-04-12