How are you on this Monday afternoon?

-bash-4.2$ nano -w 0914a.phps
-bash-4.2$ date
Mon Sep 14 15:04:50 EDT 2020
-bash-4.2$

Readings: 

  1. Introduction

  2. Objects (e.g., String, BigInteger) 

  3. Designing Your Own Objects 

  4. Basic Statements 

     int a; 

     a = 3 + 2; 

  5. Conditionals 

     if (a < b) {

     } else {

     } 

  6. Loops 

  7. Arrays and ArrayLists

  (Simple data structures.) 

  String a = "something"; 
  //          012345

  System.out.println( a.charAt( 3 ) ); // --> 'e'