Created
March 25, 2022 13:00
-
-
Save vikingosegundo/9be7262082a3e94ec94ff874d6fc46f7 to your computer and use it in GitHub Desktop.
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
typealias _Stack<T> = ( | |
push : (T) -> (), | |
pop : ( ) -> T?, | |
peek : ( ) -> T?, | |
string: ( ) -> String | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment