Re: Euphoria Compilers Available Soon
> In december you were leaving messages on Pete's message board about
>
> how you didn't know anything about the PE format or anything about
>
> win32 and you didn't know anything about assembler. Since December
No. I said I had found many ways to do run-time error checking in machine
language.
When Pete sayed he wanted to code a Euphoria compiler,I sayed:
"I have being working on U4IA compilers,I have the preprocessors
ready,blablablabla, or, download the source to DJGPP and call it a night"
Ten bucks says you know what I did.
The PE image format is easy.
Many faqs in the new MSDN.
Anyhow,I didn't write anything that deals with PE images,I have MingW to do
that for me.
> have gain a great amount of knowledege about how to translate VB and
>
> using peeks & pokes ( assembler ) for bench marks. Your solution to
Huh? since when did Peek() and Poke() become assembler? Do you even know
what assembler is?
> sequences is to use arrays, straight arrays are not dynamic so why
>
> don't you explain how to use a array to emulate a sequence. It would
Oh no,and "realloc()" isn't used for dynamically re-sizing arrays huh?
Gee,them folks at ANSI sure are crazy to have them in C for 30 years...
> be ok to to explain this in C++ or any other langauge that you wish
>
> because many of the users on this list understand more than one
>
> programming langauge.
>
> Looking forward to your example.
>
> Thanks
>
> Bernie
Do I look like David Gay?
Am I your math teacher?
Figure it out,I have said enough allready.
all I can say is this:
#include <malloc.h>
void main()
{
float fl = 3.14;
int i = 666;
double dbl = 555555555.666666666;
short sh = 45;
char ch = 'h';
int * sequence;
sequence = (int*)malloc(5*sizeof(int));
sequence = {&fl,&i,&dbl,&sh,&ch}; /* Wha??? It works??? */
}
Mike The Spike
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
|
Not Categorized, Please Help
|
|