Helmut Eller

Results 24 issues of Helmut Eller

What would you think about intergrating this [forth2012-test-suite](https://github.com/gerryjackson/forth2012-test-suite). Maybe as an git submodule with some Makefile rules to run it.

I'm proposing some changes to order.fth. I don't claim to understand the code but with the changes my test program goes a little bit further; even with the changes there...

I'm proposing to add an implementation of s\" (from the Forth-2012 standard).

Trying to load order.fth leads to this error: ``` C Forth Copyright (c) 2008 FirmWorks ok fload ../../src/cforth/order.fth voc-link, ? Error at: voc-link, | ok ``` Maybe I made some...

This example ``` functor Foo (val update : RealArray.array * int * real -> unit) = struct val foo = update end structure Foo = Foo (val update = RealArray.update);...

I think I've managed to bootstrap with SML/NJ v110.74 on Debian/Wheezy. To try it out, execute `sml make/smlnj-boot.sml`. This should load the MLWorks compiler into SMLNJ and then build the...

The compiler runs into a problem with this code even if it seems to be type-correct (SML/NJ and PolyML accept it): ``` functor Slice (type 'a elt type 'a seq...

To be compatible with the standard, inputLine should return a string option. According to http://sml-family.org/Basis/history.html this was changed on September 15, 2003.

[Socket.sendVec](http://sml-family.org/Basis/socket.html#SIG:SOCKET.sendVec:VAL) should take a `Word8VectorSlice` as argument instead of the current `buf` thing.

Fixes issue #9. - unix/unixos.sml, unix/_unixos.sml: Add structures Process and ProcEnv which have getpid but miss everything else needed to be standard compatible. - unix/platform_specific_exports.sml: Make Posix an alias for...