Greatly simpliflied tag engine to use stack implementation. Having trouble guarding on interface argument...

This commit is contained in:
Yehowshua Immanuel 2025-03-23 08:12:24 -04:00
parent 8e27ca877f
commit c5ad62aaed
2 changed files with 35 additions and 63 deletions

View file

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