pupate

Puzzle transpiler
git clone https://git.woozle.org/neale/pupate.git

pupate / examples / counting / 1
Neale Pickett  ·  2024-05-24

puzzle.md

 1---
 2title: Introduction to counting
 3authors:
 4  - neale
 5answers: 
 6  - "9"
 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```