11 lines
306 B
Text
11 lines
306 B
Text
go2 =>
|
|
_ = random2(),
|
|
Vowels = "aeiou",
|
|
Consonants = "tnshrdl",
|
|
Specials = ",.?!",
|
|
RandWords = [( [[Consonants.choice()] ++ [Vowels.choice()] : _ in 1..10]
|
|
++ [Specials.choice()]
|
|
).flatten()
|
|
: _ in 1..3] ,
|
|
println(RandWords),
|
|
nl.
|