Results 1 to 3 of 3

Thread: procedure->constant thnx

  1. #1
    Join Date
    Oct 2007
    Posts
    678
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default procedure->constant thnx

    well its right there...can some 1 tell me how to make
    a procedure a constant so i wont have to type it up again i can just type in constat name, which is obviously shorter..

  2. #2
    Join Date
    Nov 2006
    Location
    In an Amish Paradise
    Posts
    729
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What do you mean? Do you want it to just run the procedure?

    Example:

    SCAR Code:
    program new;
    Procedure write;
    begin
    writeln('writing')
    end;

    Begin // making a main loop...
    write;
    end.

    I hope this helps somehow...
    ~Stupedspam

  3. #3
    Join Date
    Oct 2007
    Posts
    678
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it did kinda help thnx.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. C++ Constant Tutorial
    By Dusk412 in forum C/C++ Help and Tutorials
    Replies: 4
    Last Post: 07-30-2008, 08:37 AM
  2. Constant Arrays
    By FrÕzÑ_§ÕµL in forum OSR Help
    Replies: 9
    Last Post: 03-13-2008, 03:12 AM
  3. Constant logging out.
    By Wade007 in forum OSR Help
    Replies: 14
    Last Post: 02-25-2008, 11:36 PM

Posting Permissions

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