Functional Programming in hica

(hica.dev)

31 points | by cladamski79 3 days ago

5 comments

  • esafak 2 minutes ago
    Looks good. How fast are the compile times and files, and informative are the error messages?

    I would suggest developing a linter, LSP server, and package registry.

  • nyankosensei 59 minutes ago
    Thanks for sharing. Very interesting, especially since it’s based on Koka, which I’ve been experimenting with and still trying to wrap my head around. It also reminds me a lot of Shen (https://shenlanguage.org/). I’ll definitely try this out.

    How do you pronounce the name?

  • cladamski79 3 days ago
    hica is a functional, expression-based programming language, everything is an expression and immutable by default. Its goal is to make programming very approachable for beginners (and veterans alike). You learn by doing small programs, then dive deeper on a thing you really want to build.

    This is a guide on functional programming which covers immutability, higher-order functions, pipelines, and more, all with runnable examples.

    If that is to theoretical there is https://www.hica.dev/docs/hica-for-beginners/ that walks through functions, pattern matching, and lists by building real programs.

    Happy to answer questions about the design decisions, the implementation or how to get started.

  • blanched 1 hour ago
    Quick fyi that your website is “zoomed in” on mobile safari and a little difficult to use

    (Apologies if it’s just my device)

    I’ll take a closer look on my desktop later today, I love seeing new programming languages. Sounds interesting!

  • jdw64 1 hour ago
    It feels like C#, so it seems easy to learn. Looks fun.