Results 1 to 3 of 3

Thread: Lights

  1. #1
    Join Date
    Mar 2006
    Posts
    141
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Lights

    I was bored so I made this flashly light thingy.

    PHP Code:
    program lights;

    procedure a;
    begin;
     
    ClearDebug;
      
    writeln('==0==0==0==0==0==0==0==0==0==0==0');
      
    writeln('0                               =');
      
    writeln('=                               =');
      
    writeln('=                               0');
      
    writeln('0                               =');
      
    writeln('=                               =');
      
    writeln('=                               0');
      
    writeln('0==0==0==0==0==0==0==0==0==0==0==');
    end;

    procedure b;
    begin;
     
    ClearDebug;
      
    writeln('=0==0==0==0==0==0==0==0==0==0==0=');
      
    writeln('=                               =');
      
    writeln('0                               0');
      
    writeln('=                               =');
      
    writeln('=                               =');
      
    writeln('0                               0');
      
    writeln('=                               =');
      
    writeln('=0==0==0==0==0==0==0==0==0==0==0=');
    end;

    procedure c;
    begin;
     
    ClearDebug;
      
    writeln('0==0==0==0==0==0==0==0==0==0==0==');
      
    writeln('=                               0');
      
    writeln('=                               =');
      
    writeln('0                               =');
      
    writeln('=                               0');
      
    writeln('=                               =');
      
    writeln('0                               =');
      
    writeln('==0==0==0==0==0==0==0==0==0==0==0');
    end;

    begin;
    repeat;
    a;
    wait(100);
    b;
    wait(100);
    c;
    wait(100);
    until(false);
    end

  2. #2
    Join Date
    Feb 2006
    Posts
    1,022
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Haha, cool

  3. #3
    Join Date
    May 2006
    Location
    Michigan (it sucks)
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    haha, sweet. Way to spend your time ;-)
    You only live once, nothing is trivial.
    www.google.com (use it )

    Currently working on-
    Planker
    //=-------------------//

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •