The challenge of exploring new syntax and language features whilst soliciting feedback from the community:
https://metaredux.com/posts/2019/12/06/ruby-where-do-we-go-now.html
Related Posts
I'm changing method definition syntax in my language:
// old
fun (this: Int) inc(): Int { this + 1 }
// new
method inc(this: Int): Int { this + 1 }
The original syntax was inspired by Go, but the new syntax is more grep-friendly and perhaps more readable. Not sure about the verbosity though. Thoughts?
In praise of Tcl, and reflecting on syntax features for a good command shell: https://yosefk.com/blog/i-cant-believe-im-praising-tcl.html
Blogging about my programming language project: choosing the basic syntax!
https://www.garden-lang.org/blog/syntax.html