Brian Beckman

Results 63 comments of Brian Beckman

Reopened with correct statement of the problem.

Also fails with ```python Tn = TypeVar("Tn") Tm = TypeVar("Tm") Tl = TypeVar("Tl") ```

Marking this as `severe` because without advice or a fix or a workaround, I cannot pass arrays as parameters to functions. I must manually inline all code, and that's very...

Do you already have full run-time bounds checking enabled in Debug mode? If so, then I would be in favor of a move that simplifies the code. Looks like the...

I don't buy the premise that types are fundamentally a compile-time notion. An interpreter for a strongly, statically typed language like Java or C# should, could, and would do all...

Maybe I should do this on the Clojure side with regex search-replace. Is this the only use of colon in ASR? What about namespace syntax like "::" in C++? What...

I have to make an assumption about the lexemes for ASR "identifier." If they're like C, namely `[_a-zA-Z][_a-zA-Z0-9]*` then this isn't too bad. HOWEVER, it locks out Unicode in identifiers....

Here is a better solution that admits Unicode:

I now believe I want to handle all issues like this on the Clojure side. I'll close the issue once one of you responds. IOW, I don't want to change...