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