-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgol_with_tail.world
More file actions
51 lines (51 loc) · 1.48 KB
/
gol_with_tail.world
File metadata and controls
51 lines (51 loc) · 1.48 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
world 80 30 '.' 3 '.' ' ' '#'
alias end
rules count
state '.' to '#' if '#' may 3 end
state ' ' to '#' if '#' may 3 end
state '#' to ' ' if '#' nomay 2 3 end
end
setup
; Gosper gun
rect '#' 1 5 2 2
rect '#' 35 3 2 2
pattern 11 3 8 7
'.' '.' '#' '#' '.' '.' '.' '.'
'.' '#' '.' '.' '.' '#' '.' '.'
'#' '.' '.' '.' '.' '.' '#' '.'
'#' '.' '.' '.' '#' '.' '#' '#'
'#' '.' '.' '.' '.' '.' '#' '.'
'.' '#' '.' '.' '.' '#' '.' '.'
'.' '.' '#' '#' '.' '.' '.' '.'
pattern 21 1 5 7
'.' '.' '.' '.' '#'
'.' '.' '#' '.' '#'
'#' '#' '.' '.' '.'
'#' '#' '.' '.' '.'
'#' '#' '.' '.' '.'
'.' '.' '#' '.' '#'
'.' '.' '.' '.' '#'
; Eater 1
pattern 75 7 4 4
'.' '.' '#' '#'
'.' '.' '#' '.'
'#' '.' '#' '.'
'#' '#' '.' '.'
; Pentadecathlon, oscillator
linex '#' 7 20 16
; Buckaroo, oscillator, reflector
pattern 30 24 4 4
'.' '.' '#' '.'
'.' '#' '.' '#'
'.' '#' '.' '.'
'#' '#' '.' '.'
pattern 34 19 11 7
'.' '.' '.' '.' '.' '.' '#' '#' '.' '.' '.'
'.' '.' '.' '.' '.' '.' '#' '.' '#' '.' '.'
'.' '#' '#' '.' '.' '.' '.' '#' '#' '#' '.'
'#' '.' '.' '#' '.' '.' '.' '.' '#' '#' '#'
'.' '.' '#' '.' '.' '.' '.' '#' '#' '#' '.'
'.' '.' '.' '.' '.' '.' '#' '.' '#' '.' '.'
'#' '.' '.' '.' '.' '.' '#' '#' '.' '.' '.'
rect '#' 51 22 2 2
end