A purely functional programming language with first class types
Go to file
Mathew Polzin 178f26ec17
[ re #1162 ] Test without install (#1240)
Co-authored-by: Guillaume ALLAIS <guillaume.allais@ens-lyon.org>
2021-04-05 11:27:56 +01:00
.github Added new nix functionalities (#1154) 2021-03-15 14:21:50 +00:00
benchmark fixed whitespace for *.sh 2021-01-22 15:08:49 +00:00
bootstrap Add --ignore-missing-ipkg flag 2021-02-27 19:39:47 +00:00
docs [ docs ] Update Control.App docs 2021-03-31 18:01:39 +01:00
icons Add icons 2020-05-20 18:48:55 +01:00
libs [ refactor ] introduce NonZero 2021-03-31 17:59:58 +01:00
lint Lint utility 2021-01-16 10:00:03 +00:00
nix Added new nix functionalities (#1154) 2021-03-15 14:21:50 +00:00
Release Add a test package to the Idris 2 project (#1162) 2021-03-09 18:27:05 +00:00
samples fixed whitespace for *.idr,*.ipkg,*.tex,*.yaff, and *.lidr 2021-01-22 15:08:49 +00:00
src Use correct multiplicity in scope of lets 2021-04-04 18:10:34 +01:00
support Fixes from trying to compile idris with the refc backend 2021-04-02 15:02:40 +02:00
tests [ re #1162 ] Test without install (#1240) 2021-04-05 11:27:56 +01:00
.editorconfig editorconfig: trailing whitespaces in expected 2021-02-03 12:22:56 +00:00
.gitattributes Add a .gitattributes 2020-05-20 15:37:28 +01:00
.gitignore [ re #1162 ] Test without install (#1240) 2021-04-05 11:27:56 +01:00
bootstrap-stage1-chez.sh Refactor bootstrap and CI action to speedup CI 2021-01-27 20:39:42 +00:00
bootstrap-stage1-racket.sh Refactor bootstrap and CI action to speedup CI 2021-01-27 20:39:42 +00:00
bootstrap-stage2.sh Add a test package to the Idris 2 project (#1162) 2021-03-09 18:27:05 +00:00
CHANGELOG.md Patch CVs and sleep in Racket (#1059) 2021-03-15 13:43:12 +00:00
config.mk Merge branch 'master' into custom_conf 2020-06-17 15:26:08 +02:00
CONTRIBUTING.md fixed whitespace for *.md and .rst files 2021-01-22 15:08:49 +00:00
CONTRIBUTORS Patch CVs and sleep in Racket (#1059) 2021-03-15 13:43:12 +00:00
default.nix Added new nix functionalities (#1154) 2021-03-15 14:21:50 +00:00
flake.lock Added new nix functionalities (#1154) 2021-03-15 14:21:50 +00:00
flake.nix [ fix #1212 ] Removed apps from nix flakes (#1213) 2021-03-22 11:25:38 +00:00
idris2.ipkg Version number constraints in 'depends' field 2021-02-27 17:58:52 +00:00
idris2api.ipkg [ fix #1230 ] Better error messages for out-of-scope identifiers (#1233) 2021-03-29 10:45:48 +01:00
INSTALL.md Added new nix functionalities (#1154) 2021-03-15 14:21:50 +00:00
LICENSE Add licence and changelog and update REAMDE 2020-05-20 11:31:48 +01:00
Makefile [ re #1162 ] Test without install (#1240) 2021-04-05 11:27:56 +01:00
README.md [ fix #978 ] Mention Editor Plugins in README (#1111) 2021-02-23 11:54:26 +00:00

Idris 2

Documentation Status Windows Status Ubuntu Status Ubuntu Racket Status MacOS Status API Status Nix Status

Idris 2 is a purely functional programming language with first class types.

For full installation instructions, see INSTALL.md. Briefly, if you have Chez Scheme installed, with the executable name chez, type:

  • make bootstrap SCHEME=chez
  • make install

You may need to change chez to be the local name of your Chez Scheme. This is often one of scheme, chezscheme or chezscheme9.5 (depending on the version). On a modern desktop machine, this process (including tests) should take less than 5 minutes.

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.

  • The cong function now takes its congruence explicitly as its first argument.

  • 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).

  • let x = val in e no longer computes with x in e, instead being essentially equivalent to (\x => e) val. This is to make the behaviour of let consistent in the presence of case and with (where it is hard to push the computation inside the case/with efficiently). Instead, you can define functions locally with let, which do have computational force, as follows:

    let x : ?
        x = val in
        e
    

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, Racket and Gambit 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.

Javascript

The javascript codegen uses the new BigInt, hence nodejs 10.4 or higher is required.

Editor Plugins

The wiki lists the current plugins available for common text editors and their features.

Things still missing

  • 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
  • Metaprogramming (reflection, partial evaluation)

Talks

Edwin Brady Tells Us What's New in Idris 2 (Berlin Functional Programming Group)

Scheme Workshop Keynote (ACM SIGPLAN)

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

Idris 2: Type-driven Development of Idris (Code Mesh LDN 18)