comp.lang.ada
 help / color / mirror / Atom feed
* Serious problem: Begin ignored! Please help!
@ 1997-10-17  0:00 Greg Kelley
  1997-10-19  0:00 ` William & Melissa Thornton
  1997-10-20  0:00 ` Tucker Taft
  0 siblings, 2 replies; 4+ messages in thread
From: Greg Kelley @ 1997-10-17  0:00 UTC (permalink / raw)



I have been trying for hours to get rid of the following error and keep
hitting brick walls
Someone please give me some assistance. I am programming on a DEC machine.

The error is:

BEGIN
^
ada: Error: machine_problem_1.ada, line 39: Ignored reserved-word "begin"

And my program (up to the error is:

WITH Fractions, G_Stack, Text_IO, Integer_Text_IO;
USE  Fractions, Text_IO, Integer_Text_IO;

PROCEDURE Machine_Problem_1 IS

Expression : String(1..80);
Expression_Length : integer;
temp :  String(1..20);
temp_frac :  fraction_type;
temp_frac1 :  fraction_type;
Start :  integer;
Times : boolean;
Total : fraction_type;


  PROCEDURE Convert(frac_string   : IN string;
                    string_length : IN integer;
                    frac          : OUT fraction_type) IS

    I : integer;

  BEGIN
    I := 1;
    LOOP
    EXIT WHEN Line(I) = '/';             -- Find location of '/'
      IF I = Length
        THEN I := 0;
             EXIT;
      END IF;
      I := I + 1;
    END LOOP;
    IF I = 0                            -- Create new fraction
      THEN Frac := (Fraction (Integer'Value(Line(1..Length))));
      ELSE Frac := (Integer'Value (Line(1..(I-1)))) /
                             (Integer'Value(Line((I+1)..Length)));
    END IF;
  END Convert;

BEGIN       --error line! 

I know it's probably something not to difficult and I'm just over looking
the problem.

I greatly appreciate your time and if you could answer via e-mail I would
greatly appreciate it.

gkelley@css.tayloru.edu






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1997-10-22  0:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-10-17  0:00 Serious problem: Begin ignored! Please help! Greg Kelley
1997-10-19  0:00 ` William & Melissa Thornton
1997-10-22  0:00   ` Robert S. White
1997-10-20  0:00 ` Tucker Taft

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox