Skip to content

Commit

Permalink
Remove obsolete scripts (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
keiravillekode authored Dec 1, 2024
1 parent d886adf commit a231420
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 77 deletions.
11 changes: 0 additions & 11 deletions bin/fetch-idris-testing.sh

This file was deleted.

11 changes: 0 additions & 11 deletions bin/fetch-stack.sh

This file was deleted.

53 changes: 0 additions & 53 deletions bin/solve_exercises.sh

This file was deleted.

2 changes: 1 addition & 1 deletion docs/LEARNING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Learning

- [The official documentation](http://docs.idris-lang.org/en/latest/index.html)
- [The official documentation](https://docs.idris-lang.org/en/latest/index.html)

This tutorial is intended as a brief introduction to the language,
and is aimed at readers already familiar with a functional language such as Haskell or OCaml.
Expand Down
1 change: 0 additions & 1 deletion docs/SNIPPET.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ data Even : Nat -> Type where
EZ : Even Z
ES : Even n -> Even (S (S n))

total
ee : Even n -> Even m -> Even (n + m)
ee EZ m = m
ee (ES n) m = ES (ee n m)

0 comments on commit a231420

Please sign in to comment.