more changes
This commit is contained in:
parent
344477f21d
commit
01ebc0a315
4 changed files with 10 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
*.agdai
|
||||
.direnv/
|
||||
.direnv/
|
||||
public/
|
||||
|
|
4
Makefile
4
Makefile
|
@ -9,12 +9,12 @@ pandoc: public/*.md
|
|||
)
|
||||
|
||||
agda: Everything.agda
|
||||
agda --html --html-dir=public src/Everything.agda --html-highlight=auto -i.
|
||||
agda --html --html-dir=public src/Everything.agda --html-highlight=auto -isrc
|
||||
rm -f public/Agda.css
|
||||
cp Agda.css public/Agda.css
|
||||
|
||||
clean:
|
||||
rm -f Everything.agda
|
||||
rm -f src/Everything.agda
|
||||
rm -rf public/*
|
||||
find . -name '*.agdai' -exec rm \{\} \;
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
import Intro
|
||||
import Intro
|
||||
import Intro
|
||||
import Intro
|
||||
import Intro
|
|
@ -6,6 +6,7 @@ Das sind Typen welche von Termen der Programmiersprache abhängen können, aber
|
|||
|
||||
<!--
|
||||
```agda
|
||||
{-# OPTIONS --allow-unsolved-metas #-}
|
||||
module Intro where
|
||||
Type = Set
|
||||
private
|
||||
|
|
Loading…
Reference in a new issue