Well, up until this moment, I had thought that the whole idea of a FUNCTION was to return a single answer, but it does indeed pass back paranthetical parameters. I'm disappointed, somehow!
X = 3
AddOne X
PRINT X
SUB AddOne (Var)
Var = Var + 1
END SUB
X = 3
AddOne X
PRINT X
SUB AddOne (Var AS INTEGER)
Var = Var + 1
END SUB
Hmmm... I perceive possible issues with that. Consider:
SUB AddOne (Ecks AS INTEGER)
Ecks = Ecks + 1
END SUB
SUB DIV2 (Ecks)
Ecks = Ecks / 2.0
END SUB
If I call AddOne:
Q=3.5
AddOne Q
I would expect/want an error to be thrown, because Q can't be demoted to INTEGER. Ideally, this can (and should) be detected at compile time.
If I call DIV2:
Q%=5
DIV2 Q
I would expect/want an error to be thrown, because the result of calling DIV2 can't be demoted to INTEGER (signalled by the % suffix to the varname). Ideally, this should issue a WARNING at compile time, because of the possible type mismatch; if the warning is ignored, the error should be thrown at run time.
What I don't get about subs is TYPE is handled differently with SHARED than variables or strings. There is no reference to this in the Wiki about SUBs.
a = 3
Example
PRINT a
'And see the difference of the above, with what's below:
a$ = "Pete"
Example
PRINT a$
SUB Example
SHARED a AS STRING
a = "Hello World, " + a
END SUB
a = 3
Example
PRINT a
SUB Example
SHARED a AS STRING
a = "Hello World, " + a
END SUB
a = 3
Example
PRINT a
'And see the difference of the above, with what's below:
a$ = a$ + "Pete"
Example
PRINT a$
SUB Example
SHARED a AS STRING
a = "Hello World, " + a
END SUB
Foo.x = 3
Foo.y = 4
PRINT Foo.x, Foo.y
Foo.x = 3
Foo.y = 4
PRINT Foo.x, Foo.y
Example
PRINT Foo.x, Foo.y
SUB Example
TYPE FooType
x AS INTEGER
y AS INTEGER
END TYPE
SHARED Foo AS FooType
Foo.x = Foo.x + 10
Foo.y = Foo.y + 10
END SUB
a = 3
PRINT a
Example
PRINT a
SUB Example
SHARED a AS INTEGER
a = a + 10
END SUB
a = 3
PRINT a
Example
PRINT a
COLOR 4
PRINT a%
SUB Example
SHARED a AS INTEGER
a = a + 10
END SUB
Steve, I understand how it actually works (your explanation); my concern is that this is "broken as designed" because the behavior is unpredictable unless you know the actual values being passed at any given call.
Like you said, LONG is the default
Sorry, it's been a SINGLE fucking day.
Pete!
Ah, Pete, a very amusing grammatical swap of SINGLE and LONG. However, I believe the sentence would better give the required emphasis if the modifier "fucking" were placed before the adjective, rather than the noun.
"It's been a fucking long day" specifically stresses the ennui of the day length as opposed to "It's been a long fucking day" which might indicate an overly long period of procreational activity.
What we need on this website is a grammatical pedant.