more changes
This commit is contained in:
parent
344477f21d
commit
01ebc0a315
4 changed files with 10 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
*.agdai
|
*.agdai
|
||||||
.direnv/
|
.direnv/
|
||||||
|
public/
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -9,12 +9,12 @@ pandoc: public/*.md
|
||||||
)
|
)
|
||||||
|
|
||||||
agda: Everything.agda
|
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
|
rm -f public/Agda.css
|
||||||
cp Agda.css public/Agda.css
|
cp Agda.css public/Agda.css
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f Everything.agda
|
rm -f src/Everything.agda
|
||||||
rm -rf public/*
|
rm -rf public/*
|
||||||
find . -name '*.agdai' -exec rm \{\} \;
|
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
|
```agda
|
||||||
|
{-# OPTIONS --allow-unsolved-metas #-}
|
||||||
module Intro where
|
module Intro where
|
||||||
Type = Set
|
Type = Set
|
||||||
private
|
private
|
||||||
|
|
Loading…
Reference in a new issue