Created
January 10, 2024 02:01
-
-
Save Philogy/a7dd9d1663ecec9755cae0d6444fc1c5 to your computer and use it in GitHub Desktop.
Revisions
-
Philogy created this gist
Jan 10, 2024 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ (defn _double [:uint256 x] :uint256 [:internal :pure] (* x 2)) (defn add [:uint256 x] :uint256 [:external :pure] (if (< x 10) 0 (self/_double x)))