105
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
C1011
Description:
This error occurs when attempting to define a procedure twice.
Example:
sub
x
end
sub
sub
x
' error C1011:
'x' already has body
end
sub
See Also
C1012
Description:
The definition for a procedure does not match a previous declaration for that
procedure (a different number or type of arguments and/or a return value)
Example:
declare
sub
x
sub
x(i
as
integer
)
' error C1012: argument count mismatch (see previous
declaration of 'x')
end
sub
See Also
132
93
87
79
93
87