File: const.go

package info (click to toggle)
golang-github-chewxy-hm 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: makefile: 2
file content (11 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
// Package hm provides a Hindley-Milner type and type inference system.
//
// If you are creating a new programming language and you'd like it to be
// strongly typed with parametric polymorphism (or just have Haskell-envy),
// this library provides the necessary types and functions for creating such a system.
//
// The key to the HM type inference system is in the Unify() function.

package hm

const letters = `abcdefghijklmnopqrstuvwxyz`