Skip to content

Instantly share code, notes, and snippets.

@pschanely
Created July 15, 2024 09:32
Show Gist options
  • Save pschanely/4cb4eb2bcc4fb1f6d8bdc5178a96aebe to your computer and use it in GitHub Desktop.
Save pschanely/4cb4eb2bcc4fb1f6d8bdc5178a96aebe to your computer and use it in GitHub Desktop.
Shared via CrossHair Playground
from fractions import Fraction
def test(n1: int, n2: int) -> None:
'''
post: True
'''
assert n2 > 0
print(Fraction(n1, n2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment