Simple test

Ensure your device works with this simple test.

examples/testrepo_simpletest.py
 1# SPDX-FileCopyrightText: 2019 Kattni Rembor for Adafruit Industries
 2# SPDX-License-Identifier: MIT
 3
 4"""Repo exists for test purposes only."""
 5
 6
 7def test():
 8    return None
 9
10
11while True:
12    x = 1
13    y = 2
14    z = 3
15    print(x + 1)
16    print(y + 10)
17    print(z + 100)
18    print(x + 1)
19    print(y + 10)
20    print(z + 100)
21    print(x + 1)
22    print(y + 10)
23    print(z + 100)
24    print(x + 88)
25    print(x + 72)