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

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