alt.hn

3/27/2025 at 11:55:19 AM

Source code art in the Rivulet language

https://github.com/rottytooth/Rivulet

by cranbor

3/27/2025 at 2:12:04 PM

Hi, I created this language as part of a series of experiments with bringing aspects of natural language into code. My previous language, Valence (https://danieltemkin.com/Esolangs/Valence), dealt with semantic ambiguity — this one with calligraphy. It avoids an overly logical syntax in favor of compactness and expressiveness.

I’m completing a book of these esolangs for MIT Press this fall including this; not much info yet online yet but here’s the link: https://mitpress.mit.edu/9780262553087/forty-four-esolangs/

by rottytooth

3/27/2025 at 8:54:38 PM

This is beautiful, genuinely (the SVGs are lovely bits of artwork) and it's a fun puzzle to read, and I've shared with friends that like esolangs, including your book (good luck on publishing!).

In the "Data Strands" -> "Value Strands" section, you describe it as "Value strands (and other data strands), begin with a hook that points up (as in the third strand below) or to the left (as in the first two)" for the following example:

  1 ╵╰──╮╭──╯╶╮
  2    ─┘└─   └─╮
  3               
  5              ╷
but the way I was parsing it was that the hook is '╰' or '╯', in which case both of those are hooks pointing up? It looks like a fairly innocuous typo, but I'm never sure with an esolang so wanted to ask.

by Esras

3/27/2025 at 9:36:26 PM

Yes, that's a typo: the first two strands have hooks pointing up, the third to the left.

I forgot to mention that you can run the interpreter with -p to convert the program to pseudo-code. This makes it much easier to tweak the examples and experiment. I'll add that to the readme, along with more pseudo-code for the example programs.

And thanks so much!! Very excited to publish (Sept 2025).

by rottytooth

3/27/2025 at 11:01:49 PM

Thanks, as I said, easy to fool yourself into thinking you're wrong when esolangs are involved.

The CLI tool is fantastic. I never thought that I'd see an esolang where "ergonomics of using it" was something the author would work on. I'll play around with that some more later, thanks again!

by Esras

3/27/2025 at 12:40:54 PM

Is this what it feels like to learn to program as an adult? I can brainfuck and APL with the best of them, and this is the most alien language specification I’ve ever read

by QuadmasterXLII

3/27/2025 at 1:05:41 PM

I would like to know how to even begin building an intuition for writing something in this. I read the entire README and the only thing I understand is glyph start and end ╵ ╷.

by vorbits

3/27/2025 at 1:39:32 PM

Agreed; needs a tutorial.

by doodpants

3/27/2025 at 1:56:30 PM

I think each "line" is a stack expression, where one direction marks what value the stack pushes at that point, and the other direction (or index on the canvas? it's really unclear) marks the operation? So, maybe going down two lines is the number "two", then going right "one" pushes; now if we continue "right" three steps that means "add"?

There's no conditional operator on a single line. Instead, if two lines come "near" each other there's an alternate denotation that compares the values and either terminates (or rolls back?) the line's behavior to some earlier point (perhaps dependent on the value in the stack?)

by thechao

3/27/2025 at 2:27:21 PM

The glyph start marker ╵ also marks a block of code; if several consecutive glyphs start with the same number of them, they are part of the same block.

When the question strand executes, it looks at whether a list element (or entire list) is zero or below. If so, the entire block is rolled back to its previous state.

So all branching is done as rollbacks. And loops end by rolling back their last iteration.

by rottytooth

3/27/2025 at 4:32:01 PM

It needs some fully commented programs as examples.

by metalliqaz

3/27/2025 at 12:48:07 PM

Truly beautiful code.

Looking forward to seeing this in graffiti form, sprayed all over some government building, giving the OCR-using hackers code to enter the (physical) backdoors that these scribbles are inevitably going to be indicating ..

by aa-jv

3/27/2025 at 10:37:28 PM

If there ever was a language to write spaghetti code in…

by layer8

3/27/2025 at 9:35:41 PM

Nice to see some experiments with languages. I really like the way it looks.

With all the AI focus on coding, it feels like we're going to end up sticking with a few languages because that's what it's good at or trained on.

by memhole

3/27/2025 at 6:02:41 PM

That could be a cool piece to print out/put on a wall framed

by ge96

3/27/2025 at 1:10:23 PM

The Mayans would be proud

by mrbluecoat

3/27/2025 at 4:58:37 PM

Not enough knots though...

by rob74

3/27/2025 at 6:26:43 PM

Probably because it skip loops

by psychoslave

3/27/2025 at 5:10:34 PM

That's where my head went, as well

by jloganolson

3/27/2025 at 2:14:59 PM

This is an interesting take on visual programming...

by aredox

3/27/2025 at 11:13:33 PM

A while ago there was this weird GitHub on using ms paint as an ide. I think this project should be paired together.

by nashashmi

3/27/2025 at 10:12:55 PM

Would love to see what a quine looks like

by marmalar

3/28/2025 at 12:44:01 AM

It should look like somehting visually recursive

by onemoresoop

3/27/2025 at 1:21:10 PM

This is interesting, take my star

by samchon