Marcin Gasperowicz

Results 2 issues of Marcin Gasperowicz

I think the language could benefit from having first-class functions neatly integrated into the syntax and type system. Both C++ and Rust use "special syntax" for lambdas. C++ types for...

enhancement

Consider: ```clojure (defmacro dude [] `(+ 1 2 3)) (dude) ;; => 6 ``` However, wrapped in `do`: ```clojure (do (defmacro dude [] `(+ 1 2 3)) (dude)) ;; =>...