General Actions:
Log-in
Register
Wiki:
Main wiki
▼
:
Document Index
»
Space:
Groovy
▼
:
Document Index
»
Page:
Test
Search
en
Page Actions:
Export
▼
:
Export as PDF
Export as RTF
Export as HTML
More actions
▼
:
Print preview
View Source
Random Number Tester
Wiki source code of
Random Number Tester
Last modified by
Administrator
on 2008/05/25 22:35
Content
·
Comments
(0)
·
Annotations
(0)
·
Attachments
(0)
·
History
·
Information
Show line numbers
1 Random Number Tester #set($groovyObject = $xwiki.parseGroovyFromPage("Groovy.Random")) #set ($dice = $groovyObject.getRandom()) Print 10 numbers from 0 to 9. #set ($range = [1..10]) {table} No | Random #foreach ($number in $range) $number | $dice.nextInt(10) #end {table}