aboutsummaryrefslogtreecommitdiff
path: root/examples/sample_game.nom
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sample_game.nom')
-rw-r--r--examples/sample_game.nom12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/sample_game.nom b/examples/sample_game.nom
index 3698fb4..a6a792d 100644
--- a/examples/sample_game.nom
+++ b/examples/sample_game.nom
@@ -30,7 +30,7 @@ with secrets:
| return t;
|end});
- rule [inventory] =: dict:
+ rule [inventory] =: dict (..)
[%inv's "key", dict (%entry for %entry in (entries in (%inv's "value")))]
..for %inv in (entries in (secret %inventory))
@@ -207,16 +207,16 @@ propose:
rule [vote for %candidate] =:
for %c in (secret %candidates):
if (%c == %candidate):
- go to %candidate-is-legit
+ go to %candidate_is_legit
error ".."
|Invalid candidate: \(%candidate)
- -> %candidate-is-legit
+ -> %candidate_is_legit
(secret %votes)->(you) =: %candidate
- %vote-percent = ((number of (votes for %candidate)) / (number of (everyone)))
+ %vote_percent = ((number of (votes for %candidate)) / (number of (everyone)))
say ".."
- |Vote cast. \(%candidate) now has \(100 * %vote-percent)% of the votes.
- if (%vote-percent > 0.5):
+ |Vote cast. \(%candidate) now has \(100 * %vote_percent)% of the votes.
+ if (%vote_percent > 0.5):
secret %winner = %candidate
after winning a fair election do (secret %action)
close the election