Hi !
I'm just wondering, would it be better if Fred, instead of keeping functions like PeekF, Abs, ... would replace them by macros, so it would speed up the code ?
Short functions into macro ?
This already the case when it is possible.
For example if you write Chr(34) in your code it will be replaced by the compiler.
But if you write Chr(myVariable) it can't be interpreted at compile time.
There are many optimisations like this made by fred's compiler.
For example if you write Chr(34) in your code it will be replaced by the compiler.
But if you write Chr(myVariable) it can't be interpreted at compile time.
There are many optimisations like this made by fred's compiler.
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer

