(write code)->(Compile code)->(Run compile code)
Java keywords:
abstract double instanceof static while
assert else int strictfp
boolean enum interface super
break extends long switch
byte false native synchronized
case final new this
catch finally null throw
char float package throws
class for private transient
const goto protected true
continue if public try
default implements return void
do import short volatile
--------------------------------------------------------
Java keywords are case senstive this means they all use lower case letters
and if you substitute a single captail letter it will not be the key word
anymore java is a case sensitive language.
For example Boolean is not boolean.
True,false,[Link] not really [Link]'re what's called literal values.
For example, "23" is a literal number."true" is a literial Boolean value.