DeedleFake
DeedleFake
A bit of testing has found that `big.NewFloat(n).Text('f', -1)` seems to, not surprisingly, produce significantly cleaner textual representations of numbers than just plain `fmt.Printf("%v")` does, allowing, for example, much higher...
pgen technically has nothing specifically to do with WDTE, so it probably makes sense to put it in its own repository. It might also make sense to make it a...
Currently, the primary way to access simple Go functions from WDTE is by providing a `GoFunc` to call. While this is nice as a low-level system, it would be quite...
The module registration system was designed to work like the `image` package's decoder registration. Unfortunately, there's a large difference that I didn't take into account: Importing a package that registers...
Due to #157, it is now rather difficult, if not impossible, to write a function that _doesn't_ expect to return the same result every time for the same arguments. For...
The project's coming along. It's _really_ buggy still, but it's actually kind of usable as well. As part of making it a bit more 'professional', I'd like to move the...
The explanations for each example on the left side of the playground are rather sparse at the moment. If possible, it would be neat to be able to display the...
See golang/go#41190 and [the documentation](https://tip.golang.org/pkg/io/fs/). Unfortunately, the new package only supports read-only filesystems, so a straight implementation of those interfaces won't necessarily make a lot of sense. However, I think...
The primary package of the module is currently full of implementation details that really probably don't need to be in the same package as everything else, such as the various...
Currently, the only way to specify an address to connect to is to use the `-addr` flag. This is not a problem, per se, but I think it might be...