Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 227 Bytes

File metadata and controls

13 lines (9 loc) · 227 Bytes

Integer Literals

In order to write an integer in a program, you write an "integer literal."

789

We call them this because the integer is literally written down in the program.

int trueCrime = 789;