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

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