mirror of
https://github.com/alecthomas/chroma.git
synced 2025-02-13 13:28:27 +02:00
8 lines
123 B
Nim
8 lines
123 B
Nim
# -*- nim -*-
|
|
import random
|
|
proc randBool(): bool =
|
|
randomize()
|
|
result = rand(1).bool
|
|
for _ in 0..5:
|
|
echo randBool()
|