Created
August 17, 2020 01:10
-
-
Save sagnibak/b3570a15b50ac9b629937cfa8a9df498 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
@dataclass | |
class TailCall: | |
args: Tuple[Any, ...] = field(default_factory=tuple) | |
kwargs: Dict[str, Any] = field(default_factory=dict) | |
@dataclass | |
class Return: | |
return_val: Any |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment