moth

Monarch Of The Hill game server
git clone https://git.woozle.org/neale/moth.git

moth / example-puzzles / counting / 1
Neale Pickett  ·  2021-04-07

puzzle.md

 1---
 2authors: ["neale"]
 3debug:
 4  summary: counting by ones
 5answers: ["9"]
 6---
 7
 8This category is about counting.
 9In it, you will be required to figure out how we're counting,
10and count the next value.
11
121 2 3 4 5 6 7 8 _
13
14Here is a Python program that might help:
15
16```python
17for i in range(20):
18    print(i)
19```