pen-lang/pen
{ "createdAt": "2021-06-09T01:54:08Z", "defaultBranch": "main", "description": "The parallel, concurrent, and functional programming language for scalable software development", "fullName": "pen-lang/pen", "homepage": "https://pen-lang.org", "language": "Rust", "name": "pen", "pushedAt": "2025-11-20T17:04:40Z", "stargazersCount": 464, "topics": [ "concurrency", "functional", "go", "language", "programming-language", "rust", "statically-typed", "wasm" ], "updatedAt": "2025-10-28T17:24:54Z", "url": "https://github.com/pen-lang/pen"}Pen programming language
Section titled “Pen programming language”Pen is the parallel, concurrent, and functional programming language focused on application programming following [Go][go]‘s philosophy. It aims for further simplicity, testability, and portability to empower team (v. individual) and/or long-term (v. short-term) productivity.
Its syntax, type system, [effect system]!(#dynamic-effect-system), and module system are fashioned to achieve those goals being simple and easy to grasp for both newcomers and experts. One of the biggest differences from the other functional languages is [polymorphism without generics]!(#polymorphism-without-generics).
Pen provides [the two built-in functions of go and race][concurrency] to represent many concurrent/parallel computation patterns. Thanks to its syntax, type system, and [the state-of-the-art reference counting garbage collection][gc], programs are always memory safe and data-race free.
System libraries and runtime in Pen are detachable from applications. Thanks to this, Pen can compile the same applications even for WebAssembly and WASI. Pen also provides [Rust][rust]/C FFI to reuse existing libraries written in those languages.
import Core'Numberimport Os'File
# The `\` prefix for λ denotes a function.findAnswer = \(kind string) number { # Secret source...
21}
main = \(ctx context) none { # The `go` function runs a given function in parallel. # `x` is a future for the computed value. x = go(\() number { findAnswer("humanity") }) y = findAnswer("dolphins")
_ = File'Write(ctx, File'StdOut(), Number'String(x() + y))
none}Install
Section titled “Install”Pen is available via Homebrew.
brew install pen-lang/pen/penFor more information, see [Install][install].
Examples
Section titled “Examples”See [the examples directory]!(examples).
Documentation
Section titled “Documentation”- [Getting started][install]
- Guides
- Language reference
Comparison with [Go][go]
Section titled “Comparison with [Go][go]”Overview
Section titled “Overview”| Pen | Go | |
|---|---|---|
| Domain | Application programming | System programming |
| Paradigm | Functional | Imperative / object-oriented |
| Memory management | [Reference counting][gc] | Concurrent mark-and-sweep |
| System library | Your choice! | Built-in |
| Values | Immutable | Mutable |
Runtime
Section titled “Runtime”| Pen | Go | |
|---|---|---|
| Context switch | [Continuations]!(#context-switch) | Platform dependent |
| Concurrent computation | [Built-in functions][concurrency] | go expression |
| Synchronization | Futures, lazy lists | Channels, concurrent data structures |
| Data race prevention | Built into [GC][gc] | Dynamic analysis |
| Resource management | Built into [GC][gc] | defer statement |
| Error handling | error type, [? operator][error-handling] | error type, multi-value return |
| Exception | None | panic and recover functions |
| Pen | Go | |
|---|---|---|
| Number | number (IEEE 754) | int, float64, … |
| Sequence | [number] (lazy list) | []int (array or slice) |
| Map | {string: number} | map[string]int |
| Optional value | none, union types | null pointer (or zero value) |
| Function | \(number, boolean) string | func(int, bool) string |
| Union | number | string | Interface |
| Top type | any | any (interface{}) |
| Interface | Records | Interface |
| Futures | Functions (thunks) | None |
| Concurrent queue | [number], [built-in functions][concurrency] | chan int |
The \ (lambda, λ) notation in function types and literals originates from other functional programming languages like Haskell.
Technical design
Section titled “Technical design”Polymorphism without generics
Section titled “Polymorphism without generics”Pen explicitly omit generics (or specifically parametric polymorphism for user-defined functions and types) from its language features as well as the original [Go][go]. It is one of the biggest experiments in the language as most of existing functional languages have generics as their primary features.
Instead, we explore polymorphism with other language features, such as generic constructs (e.g. list comprehension and pattern matches,) subtyping, top types, reflection, code generation, and so on. A belief behind this decision is that Pen can achieve the same flexibility as other languages reducing complexity of the language itself. For the same reason, we don’t adopt macros as we believe they are too powerful for humanity to handle.
Dynamic effect system
Section titled “Dynamic effect system”Pen does not adopt any formal effect system of algebraic effects or monads. Instead, Pen rather uses a simple rule to manage side effects: all effects are passed down from the main functions to child functions. So unless we pass those impure functions to other functions explicitly, they are always pure. As such, Pen is an impure functional programming language although all runtime values are immutable. However, it still provides many of the same benefits purely functional languages do, such as determinicity and testability.
The reason we do not adopt any formal and statically provable effect system is to keep the language and its type system simple and lean for the purpose of improving developer productivity and software development scalability; we want to make Pen accessible and easy to learn for both newbie and expert programmers.
Context switch
Section titled “Context switch”Like [Go][go], every function in Pen is suspendable and can be called asynchronously. This is realized by intermediate representation compiled into Continuation Passing Style (CPS) which also enables proper tail calls. Thus, Pen implements context switch without any platform-dependent codes for slight sacrifice of performance while Go requires logic written in assembly languages.
Currently, Pen does not use delimited continuations for the following reasons.
- Traditional continuations are sufficient for our use cases, such as asynchronous programming.
- Delimited continuations require heap allocations although the second-class continuations do not.
Reference counting GC
Section titled “Reference counting GC”Pen implements [the Perceus reference counting][perceus] as its GC. Thanks to the state-of-the-art ownership-based RC algorithm, programs written in Pen performs much less than traditional RC where every data transfer or mutation requires counting operations. In addition, the algorithm reduces heap allocations significantly for records behind unique references, which brings practical performance without introducing unsafe mutability.
See also How to Implement the Perceus Reference Counting Garbage Collection.
Inductive values
Section titled “Inductive values”TBD
Stackful coroutines
Section titled “Stackful coroutines”TBD
Contributing
Section titled “Contributing”Pen is under heavy development. Feel free to post Issues and Discussions!
Workflows
Section titled “Workflows”Installing from source
Section titled “Installing from source”See Install.
Building crates
Section titled “Building crates”tools/build.shRunning unit tests
Section titled “Running unit tests”tools/unit_test.shRunning integration tests
Section titled “Running integration tests”tools/build.shtools/integration_test.shRunning benchmarks
Section titled “Running benchmarks”Those benchmarks include ones written in both Pen and Rust.
tools/benchmark.shLinting crates
Section titled “Linting crates”tools/lint.shFormatting crates
Section titled “Formatting crates”tools/format.shDirectory structure
Section titled “Directory structure”- [
cmd]!(cmd): Commands- [
pen]!(cmd/pen):pencommand
- [
- [
lib]!(lib): Libraries for compiler, formatter, documentation generator, etc.- [
app]!(lib/app): Platform-agnostic application logic forpencommand - [
infra]!(lib/infra): Platform-dependent logic forpencommand - [
ast]!(lib/ast): Abstract Syntax Tree (AST) types - [
hir]!(lib/hir): High-level Intermediate Representation (HIR) types and semantics - [
mir]!(lib/mir): Mid-level Intermediate Representation (MIR) - [
ast-hir]!(lib/ast-hir): AST to HIR compiler - [
hir-mir]!(lib/hir-mir): HIR to MIR compiler - [
mir-fmm]!(lib/mir-fmm): MIR to F— compiler
- [
- [
packages]!(packages): Packages written in Pen- [
core]!(packages/core): Package for platform-independent algorithms and data structures - [
os]!(packages/os): Package for a common OS interface
- [
- [
tools]!(tools): Developer and CI tools - [
doc]!(doc): Documentation at pen-lang.org
License
Section titled “License”Pen is dual-licensed under [MIT]!(LICENSE-MIT) and [Apache 2.0]!(LICENSE-APACHE).
[concurrency] !: https://pen-lang.org/guides/concurrency-and-parallelism [error-handling] !: https://pen-lang.org/references/language/syntax#error-handling [gc] !: #reference-counting-gc [go] !: https://go.dev/ [install] !: https://pen-lang.org/introduction/install [perceus] !: https://www.microsoft.com/en-us/research/publication/perceus-garbage-free-reference-counting-with-reuse/ [rust] !: https://www.rust-lang.org/