unsubscribe

2016-08-26 Thread Lawrence Bottorff
unsubscribe

Re: toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread Mike Pechkin
to whom it interesting how it was fixed https://bitbucket.org/mihailp/picolisp/commits/c25c1b79706ac77c1ec5cfd339fd522f49c61a8b#chg-src/io.c On Fri, Aug 26, 2016 at 7:23 PM, Alexander Burger wrote: > On Fri, Aug 26, 2016 at 06:04:22PM +0200, Alexander Burger wrote: > >

Re: toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread Alexander Burger
On Fri, Aug 26, 2016 at 06:04:22PM +0200, Alexander Burger wrote: > Must be my fault. I never had the idea to 'prinl' an anonymous symbol > ('prinl' just low-level-outputs the names of symbols, but anonymous > symbols don't have a name ;) > > Perhaps it works in pil64 just by chance. I'll check

Re: toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread Alexander Burger
Hi all, On Fri, Aug 26, 2016 at 06:48:26PM +0300, Mike Pechkin wrote: > problem is like this code: > http://pastebin.com/ZzSXgsUa Oh! This seems to be a bug (setq X (new)) (prinl X) Must be my fault. I never had the idea to 'prinl' an anonymous symbol ('prinl' just low-level-outputs the

Re: toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread Joe Bogner
Hi Jon - also works on windows 64bit version : : : ff 0 if 77 else 88 then ; -> +DefineWord Done defining ff as (0 $200243534) t -> tempStack: -> +DefineWord Done defining fac as (_dup_ 1 _>_ $200244051) 5 fac .s -> (120) On Fri, Aug 26, 2016 at 11:26 AM, Brian Walker

Re: toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread rick
On Fri, 26 Aug 2016 13:53 +, Jon Kleiser wrote: > Hi, > > This summer I have had some fun trying to figure out how to > implement a super simple toy Forth. For a start, I chose PicoLisp as > an implementation language. You may find it here: > >

Re: toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread Mike Pechkin
hi, My host is CentOS7 x64 (pil32 and pil64). ​1. simpler code is enough to fault: : f 4 ; 2. important note: pil32 *not* always coredumps ​3.​ ​ ​ problem is like this code: http://pastebin.com/ZzSXgsUa Mike

Re: toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread Brian Walker
Hi Jon, works great for me on linux 64bit version. /taj33n Am 26.08.2016 um 15:53 schrieb Jon Kleiser: Hi, This summer I have had some fun trying to figure out how to implement a super simple toy Forth. For a start, I chose PicoLisp as an implementation language. You may find it here:

toy-forth-in-picolisp, and a 32-bit problem

2016-08-26 Thread Jon Kleiser
Hi, This summer I have had some fun trying to figure out how to implement a super simple toy Forth. For a start, I chose PicoLisp as an implementation language. You may find it here: https://github.com/jkleiser/toy-forth-in-picolisp There is one problem, however, occurring quite regularly