blob: 9a7a3412380dafa5f98d98e27a6c004f0a81b96b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from text import TextPage
def welcome_screen():
return TextPage(
" Slice it off!\n"
" \n"
" * Do not hit the balls\n"
" * Make area 10% or smaller\n"
" * Do not separate the balls\n"
" * Make area 10% or smaller\n"
" * Do not separate the balls\n"
" * Make area 10% or smaller\n"
" * Do not separate the balls\n"
" * Be fast!!\n",
font = 'computer',
size = (8_000, 16_000),
grid = (9_000, 16_000) )
|