Skip to content

Commit

Permalink
Define a List datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
robrix committed Oct 20, 2020
1 parent 20a7167 commit 731b833
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Base/List.facet
Expand Up @@ -2,6 +2,9 @@ Base.List
: Module
{


List : (A : Type) -> Type
{ nil : List A
, cons : A -> List A -> List A
}

}

0 comments on commit 731b833

Please sign in to comment.