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

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