jacereda
jacereda
Via primitives?
Let's take https://github.com/carp-lang/Carp/blob/134d9a5b02ce91c53ad61262d3758d85443239a4/core/Dynamic.carp#L56 as an example. `relative-to` could be instead a `defncomptime`. `current-file` and `add-c` could remain dynamic functions. The point here is we have lots of useful stuff in...
And looking at the issue title, it wasn't very fortunate, since what I'm proposing now is adding another mode instead of removing one :)
I've been thinking a bit more about this. Let's start with the mechanism for evaluating static functions at the REPL. Let's say we want to evaluate: `(Int.+ 1 2)` I...
I think the current mechanism doesn't make any guarantee that a value turned into a string can be converted back to the original value. That's what I meant with `repr`....
That's the idea, yes. Another approach with minor modifications to the haskell side, could be to just have a `compile-time` macro ``` (def sin-tab (compile-time generate-sin-tab 1024)) ``` The macro...
If it's a theoretical question you might be interested in https://en.wikipedia.org/wiki/One-instruction_set_computer
I could add https://github.com/jacereda/fina-forth but it doesn't build with clang. Requiring gcc is a PITA and I don't feel in the mood to update it.
For those seeking an immediate solution for this, I've resorted to use https://github.com/thomasfaingnaert/win-us-intl-altgr
Hi, IIRC macOS doesn't allow intercepting system binaries. Try copying the `cp` binary to `/tmp/` and run that one instead. At some point there was a horrible workaround in Shake:...