All Projects → plfa → Plfa.github.io

plfa / Plfa.github.io

Licence: cc-by-4.0
An introduction to programming language theory in Agda

Labels

Projects that are alternatives of or similar to Plfa.github.io

Learn Vim
Learning Vim and Vimscript doesn't have to be hard. This is the guide that you're looking for.
Stars: ✭ 7,221 (+681.49%)
Mutual labels:  book
Gitinpractice
📖 An opinionated intermediate/advanced Git book
Stars: ✭ 798 (-13.64%)
Mutual labels:  book
Programming Basics Book Java Bg
Textbook for the "Programming Basics" course @ SoftUni (Java, Bulgarian)
Stars: ✭ 17 (-98.16%)
Mutual labels:  book
Ethereum Development With Go Book
📖 A little book on Ethereum Development with Go (golang)
Stars: ✭ 754 (-18.4%)
Mutual labels:  book
Postgresql book
Book about PostgreSQL (russian)
Stars: ✭ 780 (-15.58%)
Mutual labels:  book
Elegantbook
Elegant LaTeX Template for Books
Stars: ✭ 800 (-13.42%)
Mutual labels:  book
Example.v2
An example project for book 'Go Programming & Concurrency in Practice, 2nd edition' (《Go并发编程实战》第2版).
Stars: ✭ 722 (-21.86%)
Mutual labels:  book
Readteractive
Tool for writing and generating interactive books.
Stars: ✭ 23 (-97.51%)
Mutual labels:  book
Mastering Shiny
Mastering Shiny: a book
Stars: ✭ 790 (-14.5%)
Mutual labels:  book
Everything Curl
The book documenting the curl project, the curl tool, libcurl and everything related to this.
Stars: ✭ 885 (-4.22%)
Mutual labels:  book
Go Internals
A book about the internals of the Go programming language.
Stars: ✭ 6,694 (+624.46%)
Mutual labels:  book
The Power Of Prolog
Introduction to modern Prolog
Stars: ✭ 776 (-16.02%)
Mutual labels:  book
The Complete Guide To Modern Javascript
A comprehensive, easy-to-follow ebook to learn everything from the basics of JavaScript to ES2020. Read more on my blog https://inspiredwebdev.com or buy it here http://a-fwd.to/jHO6m9t. Get the course here https://www.educative.io/courses/complete-guide-to-modern-javascript?aff=BqmB
Stars: ✭ 827 (-10.5%)
Mutual labels:  book
Easybook
Book publishing as easy as it should be (built with Symfony components)
Stars: ✭ 744 (-19.48%)
Mutual labels:  book
Buka
Buka is a modern software that helps you manage your ebook at ease.
Stars: ✭ 896 (-3.03%)
Mutual labels:  book
Webrtc Book Cn
中文翻译 《 Real-Time Communication with WebRTC 》
Stars: ✭ 726 (-21.43%)
Mutual labels:  book
Github
GitHub 漫游指南- a Chinese ebook on how to build a good project on Github. Explore the users' behavior. Find some thing interest.
Stars: ✭ 7,168 (+675.76%)
Mutual labels:  book
Gitbook Plugin Build
Extends gitbook build system with pandoc converter.
Stars: ✭ 23 (-97.51%)
Mutual labels:  book
Easy Jquery
EASYJQUERY-可能是最适合你的 jQuery 课程
Stars: ✭ 19 (-97.94%)
Mutual labels:  book
Game Programming Patterns Cn
《游戏编程模式》中文版
Stars: ✭ 837 (-9.42%)
Mutual labels:  book

layout : page title : Getting Started prev : /Preface/ permalink : /GettingStarted/ next : /Naturals/

Calendar Version Agda agda-stdlib

Dependencies for users

You can read PLFA online without installing anything. However, if you wish to interact with the code or complete the exercises, you need several things:

PLFA is tested against specific versions of Agda and the standard library, which are shown in the badges above. Agda and the standard library change rapidly, and these changes often break PLFA, so using older or newer versions usually causes problems.

There are several versions of Agda and its standard library online. If you are using a package manager, like Homebrew or Debian apt, the version of Agda available there may be out-of date. Furthermore, Agda is under active development, so if you install the development version from the GitHub, you might find the developers have introduced changes which break the code here. Therefore, it’s important to have the specific versions of Agda and the standard library shown above.

On macOS: Install the XCode Command Line Tools

On macOS, you’ll need to install the XCode Command Line Tools. For most versions of macOS, you can install these by running the following command:

xcode-select --install

Install the Haskell Tool Stack

Agda is written in Haskell, so to install it we’ll need the Haskell Tool Stack, or Stack for short. Stack is a program for managing different Haskell compilers and packages:

  • On UNIX and macOS. If your package manager has a package for Stack, that’s probably your easiest option. For instance, Homebrew on macOS and APT on Debian offer the “haskell-stack” package. Otherwise, you can follow the instructions on the Stack website. Usually, Stack installs binaries at “HOME/.local/bin”. Please ensure this is on your PATH, by including the following in your shell configuration, e.g., in HOME/.bash_profile:

    export PATH="${HOME}/.local/bin:${PATH}"
    

    Finally, ensure that you’ve got the latest version of Stack, by running:

    stack upgrade
    
  • On Windows. There is a Windows installer on the Stack website.

Install Git

If you do not already have Git installed, see the Git downloads page.

Install Agda using Stack

The easiest way to install a specific version of Agda is using Stack. You can get the required version of Agda from GitHub, either by cloning the repository and switching to the correct branch, or by downloading the zip archive:

git clone https://github.com/agda/agda.git
cd agda
git checkout v2.6.1.1

To install Agda, run Stack from the Agda source directory:

stack install --stack-yaml stack-8.8.3.yaml

This step will take a long time and a lot of memory to complete.

Using an existing installation of GHC

Stack is perfectly capable of installing and managing versions of the Glasgow Haskell Compiler for you. However, if you already have a copy of GHC installed, and you want Stack to use your system installation, you can pass the --system-ghc flag and select the appropriate “stack-*.yaml” file. For instance, if you have GHC 8.2.2 installed, run:

stack install --system-ghc --stack-yaml stack-8.2.2.yaml

Check if Agda was installed correctly

If you’d like, you can test to see if you’ve installed Agda correctly. Create a file called “hello.agda” with these lines:

data Greeting : Set where
  hello : Greeting

greet : Greeting
greet = hello

From a command line, change to the same directory where your “hello.agda” file is located. Then run:

agda -v 2 hello.agda

You should see a short message like the following, but no errors:

Checking hello (/path/to/hello.agda).
Finished hello.

Install PLFA and the Agda standard library

You can get the latest version of Programming Language Foundations in Agda from GitHub, either by cloning the repository, or by downloading the zip archive:

git clone --recurse-submodules https://github.com/plfa/plfa.github.io plfa

PLFA ships with the required version of the Agda standard library, so if you cloned with the --recurse-submodules flag, you’ve already got, in the “standard-library” directory!

If you forgot to add the --recurse-submodules flag, no worries, we can fix that!

cd plfa/
git submodule update --recursive

If you obtained PLFA by downloading the zip archive, you can get the required version of the Agda standard library from GitHub. You can either clone the repository and switch to the correct branch, or you can download the the zip archive:

git clone https://github.com/agda/agda-stdlib.git agda-stdlib
cd agda-stdlib
git checkout v1.3

Finally, we need to let Agda know where to find the Agda standard library. You'll need the path where you installed the standard library. Check to see that the file “standard-library.agda-lib” exists, and make a note of the path to this file. You will need to create two configuration files in “AGDA_DIR”. On UNIX and macOS, “AGDA_DIR” defaults to “~/.agda”. On Windows, “AGDA_DIR” usually defaults to “%AppData%\agda”, where “%AppData%” usually defaults to “C:\Users\USERNAME\AppData\Roaming”.

  • If the “AGDA_DIR” directory does not already exist, create it.
  • In “AGDA_DIR”, create a plain-text file called “libraries” containing the “/path/to/standard-library.agda-lib”. This lets Agda know that an Agda library called “standard-library” is available.
  • In “AGDA_DIR”, create a plain-text file called “defaults” containing just the line “standard-library”.

More information about placing the standard libraries is available from the Library Management page of the Agda documentation.

It is possible to set up PLFA as an Agda library as well. If you want to complete the exercises found in the “courses” folder, or to import modules from the book, you need to do this. To do so, add the path to “plfa.agda-lib” to “AGDA_DIR/libraries” and add “plfa” to “AGDA_DIR/defaults”, each on a line of their own.

Check if the Agda standard library was installed correctly

If you’d like, you can test to see if you’ve installed the Agda standard library correctly. Create a file called “nats.agda” with these lines:

open import Data.Nat

ten : ℕ
ten = 10

(Note that the ℕ is a Unicode character, not a plain capital N. You should be able to just copy-and-paste it from this page into your file.)

From a command line, change to the same directory where your “nats.agda” file is located. Then run:

agda -v 2 nats.agda

You should see a several lines describing the files which Agda loads while checking your file, but no errors:

Checking nats (/path/to/nats.agda).
Loading  Agda.Builtin.Equality (…).
…
Loading  Data.Nat (…).
Finished nats.

Setting up an editor for Agda

Emacs

The recommended editor for Agda is Emacs. To install Emacs:

  • On UNIX, the version of Emacs in your repository is probably fine as long as it is fairly recent. There are also links to the most recent release on the GNU Emacs downloads page.

  • On MacOS, Aquamacs is probably the preferred version of Emacs, but GNU Emacs can also be installed via Homebrew or MacPorts. See the GNU Emacs downloads page for instructions.

  • On Windows. See the GNU Emacs downloads page for instructions.

Make sure that you are able to open, edit, and save text files with your installation. The tour of Emacs page on the GNU Emacs site describes how to access the tutorial within your Emacs installation.

Agda ships with the editor support for Emacs built-in, so if you’ve installed Agda, all you have to do to configure Emacs is run:

agda-mode setup
agda-mode compile

If you are already an Emacs user and have customized your setup, you may want to note the configuration which the setup appends to your .emacs file, and integrate it with your own preferred setup.

Check if “agda-mode” was installed correctly

Open the nats.agda file you created earlier, and load and type-check the file by typing C-c C-l.

Auto-loading “agda-mode” in Emacs

Since version 2.6.0, Agda has had support for literate editing with Markdown, using the “.lagda.md” extension. One issue is that Emacs will default to Markdown editing mode for files with a “.md” suffix. In order to have “agda-mode” automatically loaded whenever you open a file ending with “.agda” or “.lagda.md”, add the following line to your Emacs configuration file:

;; auto-load agda-mode for .agda and .lagda.md
(setq auto-mode-alist
   (append
     '(("\\.agda\\'" . agda2-mode)
       ("\\.lagda.md\\'" . agda2-mode))
     auto-mode-alist))

If you already have settings which change your “auto-mode-alist” in your configuration, put these after the ones you already have or combine them if you are comfortable with Emacs Lisp. The configuration file for Emacs is normally located in “HOME/.emacs” or “HOME/.emacs.d/init.el”, but Aquamacs users might need to move their startup settings to the “Preferences.el” file in “HOME/Library/Preferences/Aquamacs Emacs/Preferences”. For Windows, see the GNU Emacs documentation for a description of where the Emacs configuration is located.

Optional: using the “mononoki” font with Emacs

Agda uses Unicode characters for many key symbols, and it is important that the font which you use to view and edit Agda programs shows these symbols correctly. The most important part is that the font you use has good Unicode support, so while we recommend mononoki, fonts such as Source Code Pro, DejaVu Sans Mono, and FreeMono are all good alternatives.

You can download and install mononoki directly from [GitHub][mononoki]. For most systems, installing a font is merely a matter of clicking the downloaded “.otf” or “.ttf” file. If your package manager offers a package for mononoki, that might be easier. For instance, Homebrew on macOS offers the “font-mononoki” package, and APT on Debian offers the “fonts-mononoki” package. To configure Emacs to use mononoki as its default font, add the following to the end of your Emacs configuration file:

;; default to mononoki
(set-face-attribute 'default nil
                    :family "mononoki"
                    :height 120
                    :weight 'normal
                    :width  'normal)

Using “agda-mode” in Emacs

To load and type-check the file, use C-c C-l.

Agda is edited interactively, using “holes”, which are bits of the program that are not yet filled in. If you use a question mark as an expression, and load the buffer using “C-c C-l”, Agda replaces the question mark with a hole. There are several things you can to while the cursor is in a hole:

  • C-c C-c x: case split on variable x
  • C-c C-space: fill in hole
  • C-c C-r: refine with constructor
  • C-c C-a: automatically fill in hole
  • C-c C-,: goal type and context
  • C-c C-.: goal type, context, and inferred type

See the emacs-mode docs for more details.

If you want to see messages beside rather than below your Agda code, you can do the following:

  • Open your Agda file, and load it using C-c C-l;
  • type C-x 1 to get only your Agda file showing;
  • type C-x 3 to split the window horizontally;
  • move your cursor to the right-hand half of your frame;
  • type C-x b and switch to the buffer called “Agda information”.

Now, error messages from Agda will appear next to your file, rather than squished beneath it.

Entering Unicode characters in Emacs with “agda-mode”

When you write Agda code, you will need to insert characters which are not found on standard keyboards. Emacs “agda-mode” makes it easier to do this by defining character translations: when you enter certain sequences of ordinary characters (the kind you find on any keyboard), Emacs will replace them in your Agda file with the corresponding special character.

For example, we can add a comment line to one of the “.agda” test files. Let's say we want to add a comment line that reads:

{- I am excited to type ∀ and → and ≤ and ≡ !! -}

The first few characters are ordinary, so we would just type them as usual:

{- I am excited to type

But after that last space, we do not find ∀ on the keyboard. The code for this character is the four characters \all, so we type those four characters, and when we finish, Emacs will replace them with what we want:

{- I am excited to type ∀

We can continue with the codes for the other characters. Sometimes the characters will change as we type them, because a prefix of our character's code is the code of another character. This happens with the arrow, whose code is \->. After typing \- we see:

{- I am excited to type ∀ and

because the code \- corresponds to a hyphen of a certain width. When we add the >, the ­ becomes ! The code for is \<=, and the code for is \==.

{- I am excited to type ∀ and → and ≤ and ≡

Finally the last few characters are ordinary again,

{- I am excited to type ∀ and → and ≤ and ≡ !! -}

If you're having trouble typing the Unicode characters into Emacs, the end of each chapter should provide a list of the Unicode characters introduced in that chapter.

Emacs with “agda-mode” offers a number of useful commands, and two of them are especially useful when it comes to working with Unicode characters. For a full list of supported characters, use “agda-input-show-translations” with:

M-x agda-input-show-translations

All the supported characters in “agda-mode” are shown.

If you want to know how you input a specific Unicode character in agda file, move the cursor onto the character and type the following command:

M-x quail-show-key

You'll see the key sequence of the character in mini buffer.

Spacemacs

Spacemacs is a “community-driven Emacs distribution” with native support for both Emacs and Vim editing styles. It comes with integration for “agda-mode” out of the box. All that is required is that you turn it on.

Visual Studio Code

Visual Studio Code is a free source code editor developed by Microsoft. There is a plugin for Agda support available on the Visual Studio Marketplace.

Atom

Atom is a free source code editor developed by GitHub. There is a plugin for Agda support available on the Atom package manager.

Dependencies for developers

PLFA is written in literate Agda with Pandoc Markdown. PLFA is available as both a website and an EPUB e-book, both of which can be built on UNIX and macOS. Finally, to help developers avoid common mistakes, we provide a set of Git hooks.

Building the website and e-book

If you’d like to build the web version of PLFA locally, Stack is all you need! PLFA is built using Hakyll, a Haskell library for building static websites. We’ve setup a Makefile to help you run common tasks. For instance, to build PLFA, run:

make build

If you’d like to serve PLFA locally, rebuilding the website when any of the source files are changed, run:

make watch

The Makefile offers more than just building and watching, it also offers the following useful options:

build                      # Build PLFA
watch                      # Build and serve PLFA, monitor for changes and rebuild
test                       # Test web version for broken links, invalid HTML, etc.
test-epub                  # Test EPUB for compliance to the EPUB3 standard
clean                      # Clean PLFA build
init                       # Setup the Git hooks (see below)
update-contributors        # Pull in new contributors from GitHub to contributors/
list                       # List all build targets

For completeness, the Makefile also offers the following options, but you’re unlikely to need these:

legacy-versions            # Build legacy versions of PLFA
setup-install-bundler      # Install Ruby Bundler (needed for ‘legacy-versions’)
setup-install-htmlproofer  # Install HTMLProofer (needed for ‘test’ and Git hooks)
setup-check-fix-whitespace # Check to see if fix-whitespace is installed (needed for Git hooks)
setup-check-epubcheck      # Check to see if epubcheck is installed (needed for EPUB tests)
setup-check-gem            # Check to see if RubyGems is installed
setup-check-npm            # Check to see if the Node Package Manager is installed
setup-check-stack          # Check to see if the Haskell Tool Stack is installed

The EPUB version of the book is built as part of the website, since it’s hosted on the website.

Git hooks

The repository comes with several Git hooks:

  1. The fix-whitespace program is run to check for whitespace violations.

  2. The test suite is run to check if everything type checks.

You can install these Git hooks by calling “make init”. You can install fix-whitespace by running:

git clone https://github.com/agda/fix-whitespace
cd fix-whitespace/
stack install --stack-yaml stack-8.8.3.yaml

If you want Stack to use your system installation of GHC, follow the instructions for Using an existing installation of GHC.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].