Ilya Yanok 23c9474092 [ whitespace ] untabify everything před 10 roky
..
AlonzoPrelude.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
BadPrintf.agda 23c9474092 [ whitespace ] untabify everything před 10 roky
BadPrintf2.agda 23c9474092 [ whitespace ] untabify everything před 10 roky
Bool.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
Bool.hs e227990568 [ fix-agda-whitespace ] Don't running from the src/directoy but the base directory. před 10 roky
ListTest.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
Makefile 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
Point.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
Point.hs e227990568 [ fix-agda-whitespace ] Don't running from the src/directoy but the base directory. před 10 roky
PreludeAll.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
PreludeBool.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
PreludeInt.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
PreludeList.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
PreludeNat.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
PreludeNatType.agda d05260528c [ issue 730 ] BUILTIN NATURAL now binds ZERO and SUC před 11 roky
PreludeNatType.hs e227990568 [ fix-agda-whitespace ] Don't running from the src/directoy but the base directory. před 10 roky
PreludeShow.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
PreludeString.agda 23c9474092 [ whitespace ] untabify everything před 10 roky
Primitive.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
PrintFloat.agda 23c9474092 [ whitespace ] untabify everything před 10 roky
PrintNat.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
Printf.agda 23c9474092 [ whitespace ] untabify everything před 10 roky
Proj.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
Q.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
README 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
RTD.hs e227990568 [ fix-agda-whitespace ] Don't running from the src/directoy but the base directory. před 10 roky
RTN.agda d05260528c [ issue 730 ] BUILTIN NATURAL now binds ZERO and SUC před 11 roky
RTN.hs e227990568 [ fix-agda-whitespace ] Don't running from the src/directoy but the base directory. před 10 roky
RTP.agda 23c9474092 [ whitespace ] untabify everything před 10 roky
RTP.hs 23c9474092 [ whitespace ] untabify everything před 10 roky
RTP.hs.sav 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
RTS.hs e227990568 [ fix-agda-whitespace ] Don't running from the src/directoy but the base directory. před 10 roky
Records.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
Records.hs e227990568 [ fix-agda-whitespace ] Don't running from the src/directoy but the base directory. před 10 roky
TestInt.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
TestNat.agda 689c6aaa09 Moved away or fixed many broken example files. před 16 roky
TestVec.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
TestWith.agda dcd3b453cb [ fix-agda-whithespace ] Added .agda, .cabal and .md files. před 10 roky
Vec.agda 23c9474092 [ whitespace ] untabify everything před 10 roky
almake 689c6aaa09 Moved away or fixed many broken example files. před 16 roky

README

== Using Alonzo ==

agda --alonzo File.agda

or

agda -c File.agda

produces File.hs

compile it with
ghc -c File.hs

The main module should contain the function mainS : String, compile it with

ghc --make -main-is File.main File.hs

There is a shell script "almake" that will do both, provided you have
compiled all dependencies beforehand.

Prerequisites

You need the following runtime files:

RTS.hs RTN.hs RTP.hs
RTN.agda RTP.agda

NEVER run agda -c on RT* files as it will destroy the corresponding .hs files

There is a "runtime" target in the Makefile, so running

make runtime

will compile the runtime files for you.

There is a small prelude included, you can compile it with

make prelude