JVM Languages
sleep.txt
Associated article: Scripting Java Applications with Sleep
Tags: JVM Languages
Published source code accompanying the article by Raphael Mudge in which he introduces Sleep, a freely available library for adding scripting services to Java applications
Scripting Java Applications with Sleep
by Raphael Mudge
Listing One (vote.sl - VoteApp Sleep Script)
3 candidate "George"
4 {
5 addVoteFor("Raphael"); # guess who will win?
6 updateResults("George");
7 }
8
9 candidate "Howard"
10 {
11 updateResults("Howard");
12 }
13
14 ...


