example VS hm

Compare example vs hm and see what are their differences.

hm

a simple Hindley-Milner type system in Go (by chewxy)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
example hm
7 1
2,460 56
0.6% -
6.7 10.0
3 months ago about 6 years ago
Go Go
BSD 3-clause "New" or "Revised" License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

example

Posts with mentions or reviews of example. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-14.
  • A decade of developing a programming language
    7 projects | news.ycombinator.com | 14 Nov 2023
    I'm in the same boat as you -- here are the two best resources I found:

    https://mukulrathi.com/create-your-own-programming-language/...

    https://jaked.org/blog/2021-09-07-Reconstructing-TypeScript-...

    I read through the first 10 chapters of TAPL, and skimmed the rest. The first 10 chapters were good to remind myself of the framing. But as far as I can tell, all the stuff I care about is stuffed into one chapter (chapter 11 I think), and the rest isn't that relevant (type inference stuff that is not mainstream AFAIK)

    This is also good:

    https://github.com/golang/example/blob/master/gotypes/README...

    And yeah I think we had the same conversation on Reddit -- somebody needs to make a Crafting Interpreters for type checking :) Preferably with OOP and functional and nominal/structural.

  • Slog: Zero-dependency structured logging in Go
    4 projects | dev.to | 4 Nov 2023
    A guide covering how to write custom handlers is out of scope for this post, but you can find one such guide written by the author of slog here. Thankfully, you don’t need to write a handler from scratch to use one. There are several community-contributed handlers, including handlers that allow you to output colored logs, and a handler that lets you implement sampling. You can find a full list here.
  • A Guide to Writing Slog Handlers
    1 project | news.ycombinator.com | 8 Aug 2023
  • [blog post] Ten challenges for Rust
    1 project | /r/rust | 16 Sep 2022
    I am not too familiar with how Go does things, but it, eg, exposes Go type-checker via stdlib: https://github.com/golang/example/tree/master/gotypes. Similarly, I believe gofmt uses the ast package from stdlib, rather private compiler internals like rustfmt.
  • go/types: The Go Type Checker
    1 project | /r/ProgrammingLanguages | 11 Feb 2022
  • Can't get gopls to work with nvim-lsp
    6 projects | /r/neovim | 11 Feb 2021
    So I just cloned this git repo https://github.com/golang/example and as soon as I entered the hello/hello.go file I was able to get autocomplete and error checking. I don't understand why it isn't working with just a .go file I made.
  • I'm not sure where to begin. I find programming exhausting.
    1 project | /r/learnprogramming | 10 Jan 2021
    GitHub repsoitories: - https://github.com/golang/example - https://github.com/gothinkster/flask-realworld-example-app - https://github.com/gothinkster/rails-realworld-example-app

hm

Posts with mentions or reviews of hm. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-14.
  • A decade of developing a programming language
    7 projects | news.ycombinator.com | 14 Nov 2023
    I'm curious how you went. Here's my attempt: https://github.com/chewxy/hm , the core of which (i.e. the interface type) is what powers most of the languages I wrote (different languages I wrote have different unification schemes)

What are some alternatives?

When comparing example and hm you can also consider the following projects:

nvim-lspconfig - Quickstart configs for Nvim LSP

pattern-matching-in-rust - Pattern matching and exhaustiveness checking algorithms implemented in Rust

slog-sampling - 🚨 slog sampling: drop repetitive log records

fyg-lang - Fyg is a simple high-level, functional-imperative with runtime type safety for the aspiring grug

write-you-a-haskell - Building a modern functional compiler from first principles. (http://dev.stephendiehl.com/fun/)

hatsugen - A small programming language formally defined with a series of blog posts and Lean code.