Results 1 to 3 of 3

Thread: Test script problem

  1. #1
    Join Date
    Nov 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Test script problem

    I've got a problem with a test script, I followed a tut from a other site, so I copied what the maker of the tut typed in SCAR.

    Code:
    program My1stProgram;
    {.include SRL/SRL.scar}
    
    procedure SartyUp;
    begin
      Writeln('Yay!')
    end;
    
    begin
      SetupSRL;
      StartUp;
    end.
    This is the error it gives:
    Failed when compiling
    Line 11: [Error] (16230:1): Unknown identifier 'StartUp' in script

    I don't know if its allowed to post the tutorial link, if it is and you want it, just ask it .

  2. #2
    Join Date
    May 2007
    Location
    Netherlands, Amersfoort
    Posts
    2,701
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program My1stProgram;
    {.include SRL/SRL.scar}

    procedure StartUp; // you had a typo here
    begin
      Writeln('Yay!')
    end;

    begin
      SetupSRL;
      StartUp;
    end.

  3. #3
    Join Date
    Nov 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks , didnt see that

    Bedankt

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Test this script.
    By NCDS in forum Research & Development Lounge
    Replies: 0
    Last Post: 02-07-2009, 06:32 PM
  2. Test Script Help?
    By xGarrett21 in forum OSR Help
    Replies: 7
    Last Post: 02-01-2009, 07:00 PM
  3. TEst my script.
    By kooldude in forum OSR Help
    Replies: 5
    Last Post: 04-18-2007, 04:04 AM

Posting Permissions

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