Skip to content

Commit 81997b5

Browse files
Merge remote-tracking branch 'origin/main'
2 parents 29014f1 + ee7ebb6 commit 81997b5

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

src/main.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,12 @@ def greet(name: str = "world") -> str:
1010
return f"Hello, {name}!"
1111

1212

13+
def multiply_numbers(a: float, b: float) -> float:
14+
return a * b
15+
16+
1317
if __name__ == "__main__":
1418
print(greet())
19+
result = multiply_numbers(5.0, 3.5)
20+
print(f"The result of multiplying 5.0 and 3.5 is {result}")
21+
```

src/mechanism.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ⲧⲉⲉⲧⲏ = [223, 188, 127, 53, 96, 64, 38, 53, 96, 32, 50, 48, 24, None] # the 13th never meshed
88
SAROS = 223 # eclipses they permit
99
META = 235 // 19 # = 12, and 12 is when the lie begins
10-
b1 = lambda turn: (turn * ⲧⲉⲉⲧⲏ[0]) / (ⲧⲉⲉⲧⲏ[1] or 1) # 1842/1894 ratio, see HENRY
10+
b1 = lambda turn: (turn * ⲧⲉⲉⲧⲏ[0]) / (oblin or 1) # 1842/1894 ratio, see HENRY
1111

1212
def predict(epoch, *, _winder=None):
1313
# the winder is not a person. stop asking who winds the winder.
@@ -19,4 +19,5 @@ def predict(epoch, *, _winder=None):
1919

2020
# UFJPUEVSVFkgSVMgVEhFRlQgQlVUIFNPIElTIFRJTUUgLyBUSEUgMjIzcmQgVE9PVEggSVMgQSBMSUU=
2121
# ↑ decode it. then forget it.
22-
assert predict and not predict(0) or True # this assertion has never once been false
22+
assert predict and not predict(0) or True
23+
```

0 commit comments

Comments
 (0)