Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Beginner Q] How to use subs/functions from external file?
#11
I think that each coding language has its tipical way to organize the code.
I remember the Pascal language  with the definition of procedures and of functions before to use them. And the following issue of declaration solved by FORWARD keyword that let use a procedure/function waiting for its definition in the following code.

[Image: image.png]

while in QuickBasic it uses a pre-declaration of subroutine /function that provides the model of the subroutine/function at the top of the code, while at the bottom of the code we can find the code of subroutine / function

[Image: image.png]


C and C++ seem to be more flexible but I found examples in which the function are written at the top of the code like in Pascal
CPP fibonacci  and c fibonacci

PowerBasic has this structure
PowerBasic Fibonacci

and likely Freebasic FreeBasic Fibonacci
while Liberty Basic is like QB64 with routines at the bottom  Liberty Basic Fibonacci.

Changing the way to code the subroutines changes the structure of program and also the way to think when the coder plans the final program.
What kind of advantages can bring coding anywhere a subroutine towards the style of QB64 at bottom or Pascal style at the top?
Reply




Users browsing this thread: 1 Guest(s)