Socket
Socket
Sign inDemoInstall

acalang

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

acalang

Aca, a functional programming language, and shitty toy


Maintainers
1

Aca

Aca, a functional programming language, and shitty toy.

Aca is a toy functional programming language initially inspired by ISWIM. The interpreter is currently written in Python.

Install

$ pip install acalang

Example

  1. Command line usage
$ cat foo.aca
let main =
    dechurch 3

$ aca foo.aca
3

$ aca foo.aca -S    # `noeval' mode
(lambda x: dechurch(x))((lambda x: x)((lambda f: lambda x: (f(f(f(x)))))))

$ aca       # REPL
$ aca -S    # REPL with `noeval'
  1. Lambda calculus
let main =
    (\x y f. f x y)
  1. Standard library for basic datatypes
let a = zero
let b = succ zero
let main = dechurch b
-- 1
  1. Sugar for Church numerals
let main = 0

-- This is identical to
{-
let main =
    (\x . x)
-}
  1. Special builtin functions for debugging (decoded into Python value)
let main =
    dechurch 42
-- Output: 42

let main =
    debool true
-- Output: True

let main =
    dereal (neg (u2i 42))
-- Output: -42
  1. Simple module import with use
$ foo.aca
let foo = 42

$ bar.aca
use foo

let main =
    dechurch foo

$ aca bar.aca
42

Goals

  • Before v1.0.0:
    • Untyped lambda calculus
  • v1.0.0:
    • Simply typed lambda calculus
  • v2.0.0:
    • System F

License

MIT

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc