~ubuntu-branches/ubuntu/karmic/laby/karmic

« back to all changes in this revision

Viewing changes to data/run/java/help

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2009-06-01 21:35:00 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090601213500-c1f7o333v0ew2c4f
Tags: 0.5.0-1
* New Upstream Version
* Remove menhir from build-dependencies: not used.
* alsa-utils is now a Recommends: used only for sound effects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
basic:
 
2
laby_name_forward();
 
3
laby_name_left();
 
4
laby_name_right();
 
5
laby_name_door_open();
 
6
 
 
7
rocks:
 
8
laby_name_take();
 
9
laby_name_drop();
 
10
 
 
11
loop:
 
12
while (laby_name_look() == laby_name_Void) {
 
13
  ...
 
14
}
 
15
 
 
16
function:
 
17
void f() {
 
18
  ...
 
19
}
 
20
 
 
21
conditional:
 
22
if (laby_name_look() == laby_name_Web) {
 
23
  ...
 
24
}
 
25
else {
 
26
  ...
 
27
}
 
28