-7
top 2 comments
sorted by: hot top controversial new old
[-] Kache@lemmy.zip 12 points 4 days ago

Every line of code by Claude Code, eh?

[-] talkingpumpkin@lemmy.world 6 points 4 days ago* (last edited 4 days ago)

I won't comment on:

Claude Code Co-designer & Implementer Every line of code, tests, and docs

but, even so,... what's the point of this expression language?

Why would I want to "compile"

let x = 12, y = 13 in x + y

as javascript

(function (_) {
  return (() => {
    const x = 12;
    const y = 13;
    return x + y;
  })();
});

ruby

->(_) {
  (x = 12; y = 13; x + y)
}

or sql

(
  SELECT
    (
      SELECT
        x + y
      FROM
        (
          SELECT
            13 AS y
        ) AS _let
    )
  FROM
    (
      SELECT
        12 AS x
    ) AS _let
)
this post was submitted on 12 Jan 2026
-7 points (36.0% liked)

Programming

24430 readers
350 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