begun work on tag engine

This commit is contained in:
Yehowshua Immanuel 2025-03-17 12:04:42 -04:00
parent 550b3731b4
commit a3afd66715
4 changed files with 18 additions and 3 deletions

4
bs/Util.bs Normal file
View file

@ -0,0 +1,4 @@
package Util((|>)) where
(|>) :: (a -> b) -> a -> b
f |> x = f x;