Restored from previous forum. Originally posted by pbdep.
Originally posted by PB
> Hahahah... Noooooo your not getting away with this one

> I need hardcoded assigment

Give me another pointer

Sorry, but I don't understand... wasn't that what you wanted?
Hi PB,
Well basicly using the Procedure option is assigning an
already declared function inside another procedure,
so thats double-up
Im intrested in how Dynamic PureBasic is.
Basicly what i found outright now is that al the functions
are static. This mean there is no possibility to redefine
functions. Which does make PB more static than I hoped.
I.e. if you want to create flexible functions without
rewriting the functions you can use the build-in functions.
So i would assume that the function print() or Val() can be renamed
by addressing the NEW-Name towards the internal Pointer of the function inside the Compiler or Library. That would make ->
; the following is not possible because PB does not allow
; *PP unasigned as a function, array...
*PP = *print()
; The follwing could return the string "print" or "pb_print"
; from the compiler, but it does not...
PP = *print
PeekS(*PP)
; This also does not work
*PP = *print ; PP points to the Addresslocation of print
PeekS(*PP)
So finaly what do i want to achive is to get all the the contstant
functions from the compiler.
Secondly I want to be able to write a Dialect in PureBasic.
And at last, I want to have an Insight on PB
Regards,
Norman.