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

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