Nathan Shiraini

Results 3 comments of Nathan Shiraini

Hello, Adding to the problem: I have the same result in non-class methods: ```python import enum, typing class TestNamedTuple(typing.NamedTuple): member : str class TestEnum(enum.Enum): value : TestNamedTuple TEST_VALUE = TestNamedTuple("test")...

> You can define these now using `@compiles`, likely using `FunctionElement` as a base. I didn't know about this feature, thanks! I'll try it soon, it should be a good...

After some research, I have found 4 different and independent errors with the code present in the tutorial. I hope these will help, and with the last two in particular,...