help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to create random characters?


From: Kai Grossjohann
Subject: Re: How to create random characters?
Date: Thu, 18 Dec 2003 18:31:14 +0000
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.2 (gnu/linux)

Brad Collins <brad@studiojungle.net> writes:

>  When I evaluated (random t)
>
>    I got 80264346
>
>  But I need to get a single digit between 0-9 so I used (random 9)

I think you have a file which contains a function which invokes
random, right?

(defun brad-foo-func ()
  ...code which invokes (random 9)...)

My suggestion was to call (random t) *once*:

(random t)
(defun brad-foo-func ()
  ...code which invokes (random 9) ...)

I apologize if this was already clear, and if you tried it, and it
failed.  But I'm getting the impression you were trying something
else.

Kai



reply via email to

[Prev in Thread] Current Thread [Next in Thread]