Package: pike7.6
Version: 7.6.112-3
Severity: normal

Hi,

I used pike to generate fibonacci numbers:

#!/usr/bin/pike

int main(){
    int f0 = 0, f1 = 1;
    write("0\n1\n");
    for(int i=2;i<=100;i++) {
        int fn = f1 + f0;
        write(fn + "\n");
        f0 = f1;
        f1 = fn;
    }
    return 0;
}

But in my case (I've tried it on 3 different lenny x86_64 installations) 
line 70 of the output looks really strange and not the way it should 
look like.


Kind reagards

#micha


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages pike7.6 depends on:
ii  pike7.6-core                  7.6.112-3  Powerful interpreted programming l
ii  pike7.6-gdbm                  7.6.112-3  Gdbm module for Pike
ii  pike7.6-image                 7.6.112-3  Image module for Pike

Versions of packages pike7.6 recommends:
ii  pike7.6-doc                   7.6.112-3  Pike 7.6 documentation metapackage

Versions of packages pike7.6 suggests:
pn  pike7.6-dev                   <none>     (no description available)
pn  pike7.6-mysql                 <none>     (no description available)
pn  pike7.6-pg                    <none>     (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to