Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/arrays_ii/initialization_with_size.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ boolean[] pixels = new boolean[23040];

So you have to say `new` followed by the type of element in the array, `[`, the size of the array and `]`.

[^bw]: The original GameBoy was just black and white, so a `boolean` works just fine to represent a pixel's state.
[^bw]: The original GameBoy was technically capable of seven shades of gray per pixel, so in this example `boolean` implies a black and white image.