Skip to content

Commit eb7eb00

Browse files
committed
Section headings
1 parent 45a4e5c commit eb7eb00

File tree

8 files changed

+11
-0
lines changed

8 files changed

+11
-0
lines changed

src/boolean.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Booleans
22

3+
<img src="/boolean/header.png" height="200px"/>
4+
35
A `boolean` is either `true` or `false`.
46

57
```java,no_run

src/boolean/header.png

37.6 KB
Loading

src/characters.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Characters
22

3+
<img src="/characters/header.png" height="200px"/>
4+
35
A character, represented by the data type `char`, is a single
46
letter or symbol.
57

src/characters/header.png

43.8 KB
Loading

src/floating_point_numbers.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Floating Point Numbers
22

3+
4+
<img src="/floating_point_numbers/header.png" height="200px"/>
5+
36
Floating point numbers are used to represent numbers
47
which cannot be stored as Integers like `2.5` or `3.14`.
58

40.3 KB
Loading

src/integers.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Integers
22

3+
4+
<img src="/integers/header.png" height="200px"/>
5+
36
[An integer is any number in the set `{ ..., -2, -1, 0, 1, 2, ... }.`](https://www.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/whole-numbers-integers/a/whole-numbers-integers)
47

58
```java
69
int x = 1;
710
int y = 8;
811
int z = -4;
912
```
13+

src/integers/header.png

33.2 KB
Loading

0 commit comments

Comments
 (0)