Created
March 12, 2025 06:02
-
-
Save trentgill/b4b45ebfea71b4cbac41e57633f32e7f to your computer and use it in GitHub Desktop.
example usage of sequins fennel library
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 characters
(local s* (require sequins)) | |
(local my_s (s* {0,4,7,11} | |
{:map #(/ $ 12)})) | |
(print (my_s)) ;; 0 | |
(print (my_s)) ;; 4/12 | |
(print (my_s)) ;; 7/12 | |
(print (my_s)) ;; 11/12 | |
(print (my_s)) ;; 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment