Skip to content

Commit 65f3ce6

Browse files
committed
syntax highlighting
1 parent f0044e4 commit 65f3ce6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Oops! That didn't work. But like I wrote in the
2222

2323
Maybe we can press Enter without typing anything?
2424

25-
```
25+
```py
2626
>>>
2727
>>>
2828
>>>
@@ -31,7 +31,7 @@ Maybe we can press Enter without typing anything?
3131

3232
That worked. How about numbers?
3333

34-
```
34+
```py
3535
>>> 123
3636
123
3737
>>> -123
@@ -48,7 +48,7 @@ There we go, it echoes them back.
4848
In some countries, decimal numbers are written with a comma, like `3,14`
4949
instead of `3.14`. Maybe Python knows that?
5050

51-
```
51+
```py
5252
>>> 3,14
5353
(3, 14)
5454
>>>
@@ -60,15 +60,15 @@ worked just fine.
6060

6161
What if we type a `#`?
6262

63-
```
63+
```py
6464
>>> #
6565
>>>
6666
```
6767

6868
Nothing happened at all. Maybe we can type a `#` and then some text
6969
after it?
7070

71-
```
71+
```py
7272
>>> # hello there
7373
>>>
7474
```

0 commit comments

Comments
 (0)