This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
kturtle [2014/10/27 17:41] timmy created |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== KTurtle ====== | ||
- | ===== Ukazi ===== | ||
- | |||
- | ^ Osnovni ukazi ^ Argumenti | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | ^ Napredni ukazi ^ Argumenti | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | | '' | ||
- | |||
- | ===== Spremenljivke ===== | ||
- | |||
- | $x = 10 | ||
- | $x = $x / 3 | ||
- | print " | ||
- | |||
- | ===== Nadzor toka ===== | ||
- | |||
- | # nariši kvadrat (to je komentar) | ||
- | repeat 4 { | ||
- | fw 42 | ||
- | tr 90 | ||
- | } | ||
- | |||
- | if $x > 5 { | ||
- | print "$x je večji od 5!" | ||
- | } else { | ||
- | print "$x ni večji od 5!" | ||
- | } | ||
- | |||
- | $x = 1 | ||
- | while $x < 5 { | ||
- | forward 10 | ||
- | $x = $x + 1 | ||
- | } | ||
- | |||
- | for $x = 1 to 10 { | ||
- | print $x * 7 | ||
- | forward 15 | ||
- | } | ||
- | |||
- | ===== Funkcije ===== | ||
- | |||
- | learn circle $x { | ||
- | repeat 36 { | ||
- | forward $x | ||
- | turnleft 10 | ||
- | } | ||
- | } | ||
- | |||
- | learn box $x, $y { | ||
- | repeat 2 { | ||
- | forward $y | ||
- | turnright 90 | ||
- | forward $x | ||
- | turnright 90 | ||
- | } | ||
- | } |