forked from ccouzens/maze
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
32 lines (30 loc) · 687 Bytes
/
README
File metadata and controls
32 lines (30 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Maze
====
A simple command line square maze generation program.
I wrote it to practice C and glib.
Slightly changed the format and the output is now a file (maze.txt)
Added first line: mazeWidth mazeHeight
$ ./maze
21 21
101111111111111111111
100000001000000000001
101011101011111111101
101010100000000010101
111011101111111010111
101000100000001000101
101111101011101111101
101000001000100000101
101010111011101110101
101010001000100010001
101010101011101010101
101010101000101010101
101011101010111010111
101010001010001010001
101010101010101111101
101010101010101000001
101010101010101110101
101010101010100010101
101010101010111011101
101010101010001010001
111111111111111111101
$