Functional Programming in hica(hica.dev) |
Functional Programming in hica(hica.dev) |
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.
There is also the HML spec and a library at https://github.com/cladam/hml
(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!
You've assigned `grid-area: main` to the content but the parent grid doesn’t define "main" in its grid-template-areas; the browser creates an implicit grid row/column to satisfy the placement, and this ends up being below the defined areas. Thus requiring 1 page blank space to scroll down.
You can investigate the `<div class="main-content">` in Dev Tools by toggling the 'grid-area' CSS attribute off; that fixes the display.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Which is the standard. I wonder if something else is interfering with it.How do you pronounce the name?
Shen is very interesting, I actually created a lisp in hica as a learning exercise, check it out at https://github.com/cladam/hica-lisp
I did a comparison to python which shows the differences, and where they are similar: https://www.hica.dev/docs/hica-vs-python/