John Nagle a écrit :
> Bruno Desthuilliers wrote:
>
>> harri a écrit :
>
>
>> Indeed - static typing is for compilers, not for programmers.
>
>
> Actually, static typing is for detecting errors before the
> program is run.
[EMAIL PROTECTED] ~ $ cat toto.c
#include <stdio.h>
int main(void)
{
char *toto = (char *)42;
printf("%s", toto);
return 0;
}
[EMAIL PROTECTED] ~ $ gcc -ototo toto.c
[EMAIL PROTECTED] ~ $ ./toto
Erreur de segmentation
[EMAIL PROTECTED] ~ $
You said ?
--
http://mail.python.org/mailman/listinfo/python-list