Files
2024-09-29 10:59:18 -07:00

16 lines
203 B
Python

from typing import List
Vector = List[float]
def main(a: Vector):
print("Hello Nested!")
class MyClass:
def test(a: Vector) -> Vector:
return a
raise Exception("This is an error")