Jump to content

Draft:Unison (programming language)

From Wikipedia, the free encyclopedia
  • Comment: All sources are either personal blogs or primary. CitrusHemlock 12:57, 18 March 2025 (UTC)

Unison
Unison Logo Dark
Designed byUnison Computing
DeveloperUnison Computing
Stable release
v0.5.36
Platformx86-64
OSLinux, macOS, Windows
LicenseMIT
Filename extensions.u
Websiteunison-lang.org
Influenced by
Haskell, Erlang

Unison is a statically-typed programming language primarily influenced by Haskell, Erlang, and Frank.[1]

Unison's primary characteristic is that it is a content-addressed and immutable language. It is designed for modern, functional programming, with the unique capability to describe entire distributed systems using a single program.[2]

Language Overview

[edit]

Unison's core philosophy is that each definition in the language is uniquely identified by a hash of its syntax tree, meaning Unison code is content-addressed.[3]

This unique identification allows Unison to simplify distributed programming, eliminate builds and dependency conflicts, support typed durable storage, enable structured refactorings, and provide better tools for working with code.[4][5]

Content-Addressing

[edit]

Unison uses a 512-bit SHA3 digest to represent a term or a type's internal structure, excluding names. This hash acts as a unique identifier for the term or type declaration, allowing it to be unambiguously referred to in all contexts. In Unison, the hash of a term or type is considered its true name.[6]

Hash References

[edit]

Literal hash references in Unison have specific structures, with different formats for term definitions, mutually recursive definitions, data constructors, cyclic type definitions, and built-in references.[7]

Unison also supports short hashes, where a prefix of the base32Hex encoded SHA3 digest can be used instead of the full hash. If the short hash is long enough to be unambiguous in the given environment, Unison substitutes the full hash at compile time.[8]

Dependency Management

[edit]

In Unison, dependency conflicts, which often arise due to different definitions competing for the same names in traditional programming languages, are not a concern. Instead, what might be perceived as a dependency conflict in Unison is merely a situation where multiple terms or types serve similar purposes. This flexibility in managing dependencies makes Unison an adaptable and developer-friendly language.[9] [10]

[edit]

References

[edit]
  1. ^ "Unison langage". univalence.io. Retrieved 2023-07-21.
  2. ^ "Unison". unison-lang.org. Retrieved 2023-07-21.
  3. ^ Warski, Adam. "Trying out Unison, part 1: code as hashes". SoftwareMill Tech Blog. Retrieved 2023-07-21.
  4. ^ "The big idea". unison-lang.org. Retrieved 2023-07-21.
  5. ^ The Meerkat Vision: Language Support for Live, Scalable, Reactive Web Apps, João Costa Seco and Jonathan Aldrich, 2024, https://doi.org/10.1145/3689492.3690048
  6. ^ "Writing Code Without Plain Text Files". 25 January 2023.
  7. ^ "Unison Programming Language - Literals". Unison Programming Language Official Website. Retrieved July 21, 2023.
  8. ^ "Unison Programming Language - Hashes". Unison Programming Language Official Website. Retrieved July 21, 2023.
  9. ^ Chiusano, Paul (2020-04-10). "How Unison reduces ecosystem churn". unisonweb.org. Retrieved 2023-07-21.
  10. ^ "A look at Unison: a revolutionary programming language". renato.athaydes.com. Retrieved 2025-03-17.