
Noam Y
11.6K posts




The new Gemini 3.5 Flash solved the HVM3's wnf bug in 1/3 attempts. This is my main test to take a model seriously. So far only the big models like GPT 5.5 solved it. And seems like it is 20x faster than Opus 4.6 ! Promising but Google will still find a way to fuck up


In λ-calculus you have to distinguish from abstraction and application. Traditionally abstraction uses a binder symbol, λ, and application uses juxtaposition, no symbol at all. CUE doesn't have anything resembling λ which might suggest it's only a first order language. But this is an illusion. In CUE, the λ (which is really more like a coλ) is implicit. It's everywhere you need it to be. Everything is generalized by default. But it is the equivalent of application which needs an explicit symbol, in CUE's case &, unification (or conjunction). & is not exactly like application and implicit generalization is not exactly like λ-abstraction, but it's close enough in what matters—you only need one symbol to distinguish between two things (and actually in CUE's case you can often dispense with & too, as there is an implicit & between all bindings). The order of a CUE program (in the sense of "how high order it is") is not an integer. Scopes don't nest into trees, they form a graph. The order is a multidimensional quantity. There is only a partial order between orders.





















