Idris2

A dependently typed programming language, a successor to Idris

Github星跟踪图

Idris 2

This is a pre-alpha implementation of Idris 2, the successor to Idris.

*** Please note: To build, these requires Idris version 1.3.2 ***

Idris 2 is mostly backwards compatible with Idris 1, with some minor
exceptions. The most notable user visible differences, which might cause Idris
1 programs to fail to type check, are:

  • Unbound implicit arguments are always erased, so it is a type error to
    attempt to pattern match on one.
  • Simplified resolution of ambiguous names, which might mean you need to
    explicitly disambiguate more often. As a general rule, Idris 2 will be able
    to disambiguate between names which have different concrete return types
    (such as data constructors), or which have different concrete argument
    types (such as record projections). It may struggle to resolve ambiguities
    if one name requires an interface to be resolved.
  • Minor differences in the meaning of export modifiers private, export,
    and public export, which now refer to visibility of names from other
    namespaces rather than visibility from other files.
  • Module names must match the filename in which they are defined (unless
    the module's name is "Main").
  • Anything which uses a %language pragma in Idris 1 is likely to be different.
    Notably, elaborator reflection will exist, but most likely in a slightly
    different form because the internal details of the elaborator are different.
  • The Prelude is much smaller (and easier to replace with an alternative).

Watch this space for more details and the rationale for the changes, as I
get around to writing it...

Summary of new features:

  • A core language based on "Quantitative Type Theory" which allows explicit
    annotation of erased types, and linear types.
  • let bindings are now more expressive, and can be used to define pattern
    matching functions locally.
  • Names which are in scope in a type are also always in scope in the body of
    the corresponding definition.
  • Better inference. Holes are global to a source file, rather than local to
    a definition, meaning that some holes can be left in function types to be
    inferred by the type checker. This also gives better inference for the types
    of case expressions, and means fewer annotations are needed in interface
    declarations.
  • Better type checker implementation which minimises the need for compile
    time evaluation.
  • New Chez Scheme based back end which both compiles and runs faster than the
    default Idris 1 back end. (Also, optionally, Chicken Scheme and Racket can
    be used as targets).
  • Everything works faster :).

A significant change in the implementation is that there is an intermediate
language TTImp, which is essentially a desugared Idris, and is cleanly
separated from the high level language which means it is potentially usable
as a core language for other high level syntaxes.

Installation

To build and install what exists of it so far:

  • Optionally, set the PREFIX in Makefile
  • make idris2
  • make install

You'll need to set your PATH to $PREFIX/bin
You may also want to set IDRIS_CC to clang, since this seems to build
the generated C significantly faster.

Note: If you edit idris2.ipkg to use the opts with optimisation set
(--cg-opt -O2) you'll find it runs about twice as fast, at the cost of
taking a couple of minutes to generate the idris2 executable.

You can check that building succeeded by running

  • make test

I make no promises how well this works yet, but you are welcome to have a
play. Good luck :).

Information about external dependencies are presented in INSTALL.md.

Things still missing

  • 'using' blocks
  • Disambiguation via 'with'
  • Cumulativity (so we currently have Type : Type! Bear that in mind when you
    think you've proved something :))
  • 'rewrite' doesn't yet work on dependent types
  • Parts of the ide-mode, particularly syntax highlighting
  • Documentation strings and HTML documentation generation
  • ':search' and ':apropos' at the REPL
  • The rest of this "Things still missing" list

Talks

Idris 2 - Type-driven Development of Idris (Curry On - London 2019)

主要指标

概览
名称与所有者idris-lang/Idris2
主编程语言Idris
编程语言Idris (语言数: 13)
平台
许可证Other
所有者活动
创建于2020-05-17 23:25:25
推送于2025-06-13 13:17:37
最后一次提交
发布数9
最新版本名称v0.7.0 (发布于 2023-12-22 14:53:08)
第一版名称v0.2.0 (发布于 2020-05-25 14:43:10)
用户参与
星数2.7k
关注者数66
派生数385
提交数3.8k
已启用问题?
问题数1273
打开的问题数585
拉请求数2023
打开的拉请求数13
关闭的拉请求数251
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?