Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/tutorial_samples/6_define_a.py
blob: 2f08c50781e11628a3bd2159f3facfc53e0cda71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DEFINE turn_around=OnRev(OUT_B, 75); Wait(3400); a=5; OnFwd(OUT_AB, 75);

def main():
    a=0
    OnFwd(OUT_AB, 75)
    Wait(1000)
    turn_around
    Wait(2000)
    turn_around
    Wait(1000)
    turn_around
    Off(OUT_AB)