Literals
int speedOfLight = 299792458; double elementaryCharge = 1.602176634E-19; boolean readyToGo = true; char capitalB = 'B'; String name = "Cassandra";
A textual representation defining both a value and its associated type.
int speedOfLight = 299792458; double elementaryCharge = 1.602176634E-19; boolean readyToGo = true; char capitalB = 'B'; String name = "Cassandra";
A textual representation defining both a value and its associated type.
