pupate

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

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

puzzle.md

 1---
 2title: Counting by twos
 3authors:
 4  - neale
 5answers: 
 6  - "16"
 7---
 82 4 6 8 10 12 14 _
 9
10Here is a Python program that might help:
11
12```python
13for i in range(2, 20, 2):
14    print(i)
15```