Created
August 17, 2020 01:10
-
-
Save sagnibak/00c08500d35ac150b6f41d462a88d5f4 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