9 lines
131 B
Text
9 lines
131 B
Text
|
|
sequence s = repeat("x",3*rand(3))
|
||
|
|
?s
|
||
|
|
s[rand(length(s))] = 5
|
||
|
|
?s
|
||
|
|
s[rand(length(s))] &= 'y'
|
||
|
|
?s
|
||
|
|
s[rand(length(s))] = s
|
||
|
|
?s
|