Layout is broken on non-maximised window sizes (text overflows off the right edge of the page)
EDIT: I'm referring to layout of the blog post in the thread title, the https://coalton.app/ is ok
anentropic · 22m ago
FYI coalton.app "Type Classes" example has "Error: unmatched close parenthesis" when you run it
"JSON Parser" example also has errors
CraigJPerry · 39m ago
Is Coalton not more about performance, removing the dynamicism - lisp (at least SBCL) is already type-safe. Or it behaves that way in my limited experience - e.g. i get feedback when i screw up.
I'm completely clueless about Coalton, (and almost completely an idiot when it comes to CL more generally - been playing for a couple of years at this point but even so, every day is still a school day...)
skulk · 8m ago
FWIW, SBCL is pretty good at optimizing away dynamic type checks if
you help it out.
Here are some examples under:
(declaim (optimize (speed 2)))
First example is a generic multiplication. x and y could be _any_ type at all.
(defun fn (x y) (* x y))
If we disassemble this function, we get the following:
In CL you can't declare, for example, a proper-list-of type, which is to say a type which accepts a second type and represents a proper list containing only members of that second type.
Doesn't work (for example). There kind of are ways to work around it to some extent with satisfies and ad-hoc predicate generation, but Coalton is a true value add in that aspect.
wild_egg · 28m ago
CL is strongly typed but not statically typed. The compiler generally doesn't complain ahead of time that your function is going to do math on a string because it was called incorrectly. Typically a runtime condition will be signalled when it hits that point and you can sort it out from there.
Coalton moves that to the compilation step so you get an error back the instant you send the form to the REPL.
asplake · 31m ago
I’ve looked at it rather than used it, but what it brings is ML-style polymorphism. Type safety is a given in that case, which may or may not be the case with CL (I’ll let others argue that one).
EDIT: I'm referring to layout of the blog post in the thread title, the https://coalton.app/ is ok
"JSON Parser" example also has errors
I'm completely clueless about Coalton, (and almost completely an idiot when it comes to CL more generally - been playing for a couple of years at this point but even so, every day is still a school day...)
Here are some examples under:
First example is a generic multiplication. x and y could be _any_ type at all. If we disassemble this function, we get the following: Note that it calls `GENERIC-*` which probably checks a lot of things and has a decent overhead.Now, if we tell it that x and y are bytes, it's going to give us much simpler code.
The resulting code uses the imul instruction.Coalton moves that to the compilation step so you get an error back the instant you send the form to the REPL.