output/
ticksequence.rs

1lazy_static! {
2
3	pub static ref DEFAULT: Vec <String> = vec! [
4		"|          |",
5		"|#         |",
6		"|##        |",
7		"|###       |",
8		"|####      |",
9		"|#####     |",
10		"|######    |",
11		"| ######   |",
12		"|  ######  |",
13		"|   ###### |",
14		"|    ######|",
15		"|     #####|",
16		"|      ####|",
17		"|        ##|",
18		"|         #|",
19	].iter ().map (|string| string.to_string ()).collect ();
20
21}
22
23// ex: noet ts=4 filetype=rust