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