-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add many enhancements and new layout on the landing page
- Loading branch information
1 parent
360df81
commit f1f6259
Showing
10 changed files
with
196 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
chris: | ||
name: Christopher Goes | ||
description: Heliax | ||
avatar: https://github.com/cwgoes.png | ||
authors: | ||
jonathan: | ||
name: Jonathan Cubides | ||
description: Heliax | ||
avatar: https://github.com/jonaprieto.png | ||
|
||
jonathan: | ||
name: Jonathan Cubides | ||
description: Heliax | ||
avatar: https://github.com/jonaprieto.png | ||
jan: | ||
name: Jan Mas Rovira | ||
description: Heliax | ||
avatar: https://github.com/janmasrovira.png | ||
|
||
jan: | ||
name: Jan Mas Rovira | ||
description: Heliax | ||
avatar: https://github.com/janmasrovira.png | ||
paul: | ||
name: Paul Cadman | ||
description: Heliax | ||
avatar: https://github.com/paulcadman.png | ||
|
||
paul: | ||
name: Paul Cadman | ||
description: Heliax | ||
avatar: https://github.com/paulcadman.png | ||
lukasz: | ||
name: Łukasz Czajka | ||
description: Heliax | ||
avatar: https://github.com/lukaszcz.png | ||
|
||
lukasz: | ||
name: Łukasz Czajka | ||
description: Heliax | ||
avatar: https://github.com/lukaszcz.png | ||
artem: | ||
name: Artem Gureev | ||
description: Heliax | ||
avatar: https://github.com/vrom911.png | ||
|
||
veronika: | ||
name: Veronika Romashkina | ||
description: Heliax | ||
avatar: https://github.com/vrom911.png | ||
veronika: | ||
name: Veronika Romashkina | ||
description: Heliax | ||
avatar: https://github.com/vrom911.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module index; | ||
|
||
import Stdlib.Prelude open; | ||
import Stdlib.Data.Nat.Ord open; | ||
|
||
--8<-- [start:exponentiation] | ||
module FastExponentiation; | ||
|
||
{-# unroll: 30 #-} | ||
terminating | ||
power' (acc a b : Nat) : Nat := | ||
let | ||
acc' : Nat := if (mod b 2 == 0) acc (acc * a); | ||
in if (b == 0) acc (power' acc' (a * a) (div b 2)); | ||
|
||
power : Nat → Nat → Nat := power' 1; | ||
|
||
end; | ||
--8<-- [end:exponentiation] | ||
|
||
--8<-- [start:intent] | ||
-- ss | ||
--8<-- [end:intent] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
icon: material/rename-outline | ||
comments: true | ||
comments: false | ||
--- | ||
|
||
# Aliases | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
icon: material/axe | ||
comments: true | ||
comments: false | ||
--- | ||
|
||
# Axiom | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters