-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change naming convention of files -- back to lisp-case
- Loading branch information
Showing
23 changed files
with
161 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
change naming convention -- back to lisp-case -- use -t for types | ||
|
||
ambr @Type @type-t | ||
ambr Nat nat-t | ||
ambr List list-t | ||
ambr DiffList diff-list-t | ||
ambr Trivial trivial-t | ||
|
||
ambs @Type | ||
ambs Nat | ||
ambs List | ||
ambs DiffList | ||
|
||
add define- to statement keywords | ||
|
||
drop @ from builtin | ||
static import should handled by an extra pass -- instead of injecting a `Loader` to `Mod` | ||
`NodeId` vs `Node` -- instead of `Node` vs `NodeEntry` -- the same for `HalfEdge` |
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,4 +1,4 @@ | ||
require "../datatypes/Nat.i" | ||
require "../datatypes/nat.i" | ||
|
||
one one add | ||
one one add | ||
|
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
File renamed without changes.
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
4 changes: 2 additions & 2 deletions
4
examples/datatypes/DiffList.test.i → examples/datatypes/diff-list.test.i
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
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
examples/datatypes/List.test.i → examples/datatypes/list.test.i
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,5 +1,5 @@ | ||
require "List.i" | ||
require "Trivial.i" | ||
require "list.i" | ||
require "trivial.i" | ||
|
||
claim sixSoles -- Trivial List end | ||
|
||
|
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
examples/datatypes/Nat.test.i → examples/datatypes/nat.test.i
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
File renamed without changes.
File renamed without changes.
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
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,3 +1,3 @@ | ||
import zero, one, add from "../datatypes/Nat.i" | ||
import zero, one, add from "../datatypes/nat.i" | ||
|
||
zero one add @inspect @run @inspect |
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,3 +1,3 @@ | ||
type Nat -- @Type end | ||
|
||
require "../datatypes/Nat.i" | ||
require "../datatypes/nat.i" |
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,3 +1,3 @@ | ||
require "../datatypes/Nat.i" | ||
require "../datatypes/nat.i" | ||
|
||
zero one add @inspect @run @inspect |
Oops, something went wrong.