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