This commit is contained in:
Peter Harpending
2025-09-29 13:34:08 -07:00
parent 91f0064a5b
commit 5135a55081
6 changed files with 268 additions and 13 deletions
+22
View File
@@ -0,0 +1,22 @@
% @doc
% porcelain wfc ops
-module(wfc).
-export_type([
sentence/0
]).
-export([
zero/0, one/0,
add/1, add/2,
mul/1, mul/2
]).
-type sentence() :: wfc_sentence:sentence().
%% constructors
-spec
zero()