this post was submitted on 08 Jan 2025
49 points (96.2% liked)

Programming

17832 readers
70 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

I added this language to my watch list some time ago and forgot about it, until I got a notification about a new release (0.15) yesterday.

I'm someone who is familiar with system languages (C, Rust) and shell languages (Bash, Zsh, ..). But don't have much experience, at a proficient level, with any languages setting in between.

So I gave Koto's language guide a read, and found it to be very well-written, and the premise of the language in general to be interesting. I only got annoyed near the end when I got to @base, because I'm an anti-OOP diehard 😉

I hope this one well start to enjoy some adoption.

you are viewing a single comment's thread
view the rest of the comments
[–] seadoo@lemmy.world 3 points 1 week ago

I love this syntax! Coming from languages like R and Julia this all looks and feels super natural, and the implementation of the pipe is perfect.

The pseudo OOP stuff with self in maps is also very clever.

I’ve tried building some data structures in Lua and got hung up on meta tables and such - the use of “self” and the fact that maps here stay in order is awesome.

Makes me think of lightweight, dynamic rust.