Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Nov 1, 2024
1 parent 3d932eb commit 3539910
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions HelloWorld/Resource.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ import Anoma.Builtin.System open;
import Applib open;

-- HELPER
label : Label := mkLabel (anomaEncode ("Hello World!"));
logic
(publicInputs : Logic.Instance) (privateInputs : Logic.Witness) : Bool := true;
label : Label := mkLabel (anomaEncode "Hello World!");

logic (publicInputs : Logic.Instance) (privateInputs : Logic.Witness) : Bool :=
true;

value : Value := mkValue 0;

-- RESOURCE OBJECT
Expand All @@ -22,5 +24,5 @@ mkHelloWorld : Resource :=
ephemeral := false;
nullifierKeyCommitment := toNullifierKeyCommitment Universal.identity;
nonce := mkNonce rand;
randSeed := mkRandSeed rand
};
randSeed := mkRandSeed rand;
};

0 comments on commit 3539910

Please sign in to comment.