#STUDENT RESPONSE ANI3-A
I'm having problems with the first program I wrote. When I try to run it (copy
below), I get the error message "Error in =: AA Temp.POC near line 1:
Expecting name in declaration got '…'
Here is the program:
………… program beginning……………….
// Here is my first POCO routine (Saved as "TRY0,POC)
// These are Remarks
// Below is the main module with beginning & ending curly brackets.
main ()
{
// function printf("") prints text in quotes in the
// status bar
printf("This is my first POCO program");
// The Qtext("") function prints text in quotes in a
// dialog box along with a (continue) button
Qtext("Qtext makes the program wait");
// The unprintf () function clears the status bar of // text placed by the
printf("") command
unprintf();
}
// Right above is the closing bracket of the main
// program.
……………… program ends here ………….
Debugging dead ends me. Please help.
Jack Winberg