changes to README and config
This commit is contained in:
parent
844d39fef0
commit
6ff8e77c22
3 changed files with 13 additions and 15 deletions
21
README.md
21
README.md
|
@ -15,13 +15,14 @@ and
|
||||||
[Philip Wadler](
|
[Philip Wadler](
|
||||||
http://homepages.inf.ed.ac.uk/wadler/
|
http://homepages.inf.ed.ac.uk/wadler/
|
||||||
).
|
).
|
||||||
|
Please send us comments! Contact details below.
|
||||||
|
|
||||||
|
|
||||||
## How to host literate code
|
## How to host literate code
|
||||||
|
|
||||||
In directory `sf/` run the following:
|
In directory `sf/` run the following:
|
||||||
|
|
||||||
$ make clobber
|
$ make clobber
|
||||||
$ make
|
$ make
|
||||||
$ make serve &
|
$ make serve &
|
||||||
|
|
||||||
|
@ -29,18 +30,6 @@ The visible page appears at
|
||||||
|
|
||||||
localhost:4000/sf/<permalink>
|
localhost:4000/sf/<permalink>
|
||||||
|
|
||||||
## Markdown
|
|
||||||
|
|
||||||
For markdown commands see [Daring Fireball](
|
|
||||||
https://daringfireball.net/projects/markdown/syntax
|
|
||||||
).
|
|
||||||
|
|
||||||
## Important git commands
|
|
||||||
|
|
||||||
git pull
|
|
||||||
git commit -am "message"
|
|
||||||
git push
|
|
||||||
|
|
||||||
## Unicode abbreviations
|
## Unicode abbreviations
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,3 +57,9 @@ Also see [here](
|
||||||
http://agda.readthedocs.io/en/latest/tools/emacs-mode.html
|
http://agda.readthedocs.io/en/latest/tools/emacs-mode.html
|
||||||
).
|
).
|
||||||
|
|
||||||
|
## Markdown
|
||||||
|
|
||||||
|
For markdown commands see [Daring Fireball](
|
||||||
|
https://daringfireball.net/projects/markdown/syntax
|
||||||
|
).
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,10 @@ author: Wen Kokke
|
||||||
contributors:
|
contributors:
|
||||||
- name: Wen Kokke
|
- name: Wen Kokke
|
||||||
email: wen.kokke@ed.ac.uk
|
email: wen.kokke@ed.ac.uk
|
||||||
github_username: wenkokke
|
twitter_username: wenkokke
|
||||||
- name: Philip Wadler
|
- name: Philip Wadler
|
||||||
email: wadler@inf.ed.ac.uk
|
email: wadler@inf.ed.ac.uk
|
||||||
github_username: wadler
|
twitter_username: philipwadler
|
||||||
|
|
||||||
description: >
|
description: >
|
||||||
Software Foundations in Agda.
|
Software Foundations in Agda.
|
||||||
|
|
|
@ -192,6 +192,9 @@ is sometimes called _alpha renaming_.
|
||||||
As we descend from a term into its subterms, variables
|
As we descend from a term into its subterms, variables
|
||||||
that are bound may become free. Consider the following terms.
|
that are bound may become free. Consider the following terms.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
* `` λ[ f ∶ 𝔹 ⇒ 𝔹 ] λ[ x ∶ 𝔹 ] ` f · (` f · ` x) ``
|
* `` λ[ f ∶ 𝔹 ⇒ 𝔹 ] λ[ x ∶ 𝔹 ] ` f · (` f · ` x) ``
|
||||||
Both variable `f` and `x` are bound.
|
Both variable `f` and `x` are bound.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue