1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 12:20:22 +00:00
qb64/internal/help/CALLS.txt

25 lines
704 B
Plaintext
Raw Normal View History

2017-10-10 14:55:21 +00:00
'''This page is maintained for historic purposes. The keyword is not supported in QB64.'''
2017-10-10 14:55:21 +00:00
----
2017-10-10 14:55:21 +00:00
[[CALLS]] is a statement that transfers control to a procedure written in a different programming language.
2017-10-10 14:55:21 +00:00
{{PageSyntax}}
:[[CALLS]] {{Parameter|name}} [({{Parameter|argumentList}})]
2017-10-10 14:55:21 +00:00
* [[Keywords currently not supported by QB64|Not supported in QB64.]]
* The arguments are passed by reference as far addresses, unlike [[CALL]] which passes arguments by value as default. You cannot use [[BYVAL]] or [[SEG]] in a [[CALLS]] argumentList.
* [[CALLS]] is the same as using [[CALL]] with a [[SEG]] before each argument.
{{PageSeeAlso}}
2017-10-10 14:55:21 +00:00
*[[DECLARE (non-BASIC statement)]]
*[[CALL]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}