Updated 2013-03-11 00:56:24 by RLE

Summary  edit

A tiny example of [rand] with some fun output

Description  edit

[evilotto] posted this little program in the Tcl Chatroom, 2013-02-28:
#! /bin/env tclsh

fconfigure stdout -encoding utf-8
while 1 {
        puts -nonewline [format %c [expr {round(9585+rand())}]]
        #puts [expr {round(9585+rand())}]
}