mirror of
https://github.com/ilyakooo0/Idris-dev.git
synced 2024-11-11 14:57:30 +03:00
A Dependently Typed Functional Programming Language
0d5c5b650b
Can't assume that the string resulting from an FFI call is not null! The RTS generally assumes strings are not null later, however, so it's important to test. |
||
---|---|---|
contribs | ||
effects | ||
iif | ||
java | ||
javascript | ||
js | ||
lib | ||
llvm | ||
papers/impl-paper | ||
rts | ||
samples | ||
src | ||
support | ||
test | ||
tutorial | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
CHANGELOG | ||
config.mk | ||
CONTRIBUTORS | ||
idris.cabal | ||
LICENSE | ||
Makefile | ||
README | ||
Setup.hs |
Idris (http://idris-lang.org/) is an experimental functional programming language with dependent types. To configure, edit config.mk. The default values should work for most people. To install, type 'make'. This will install everything using cabal and typecheck the libraries. To run the tests, type 'make test' which will execute the test suite, and 'make relib', which will typecheck and recompile the standard library. Idris has buildtime dependencies on the C libraries llvm-3.3 and libffi. Be sure these are compiled for the same architecture as your Haskell compiler (e.g. 64 bit libraries for 64 bit ghc). Idris has a runtime dependency on libgmp, and on Boehm GC (libgc) when using the LLVM codegen. These are needed for linking into compiled programs, so be sure these are compiled for Idris's default target architecture (usually 64 bit on x86_64 systems). The Idris wiki contains instructions for building on various platforms and for getting involved with development. It is located at https://github.com/idris-lang/Idris-dev/wiki .