limbobyexample
limbobyexample copied to clipboard
Examples for the Limbo Programming Language
Really need important part rephrased into better language
Polymorphic modules needs their ``` { for T => Stringify } ``` stuff in the module definition if they're to be exported (See: arrays.m, lists.m)
As per title. Something like #µ or smth that converts ascii to small unicode subtext when written to it. Who knows.
Provide an example of writing a variety of custom C programs/libraries and calling them from Limbo in Inferno as drivers, or so.
Showing off how various Limbo programs compile to Dis and how to craft Dis assembly by hand would be nice. This isn't particularly high priority.
This was discussed on the #inferno channel awhile ago. Theoretically you could express a channel `chan` type as a file and read/write memory addresses through the channel file between programs...
The `for { T => ; }` statement can be used in an adt[T] as well. From qrstuv on #inferno: ``` implement Dongmap; include "sys.m"; sys: Sys; include "draw.m"; Dongmap:...