Austin Henley

Results 12 comments of Austin Henley

If the event logging is set up correctly, we would be able to simulate the programmers' coderibbon environment, such as how long patches stay open, how they arrange them, the...

Potential solution: https://github.com/atom/atom/issues/4033

Type checking the return type to match the function declaration should already be done. Just need to prevent main from returning something other than int or void.

I think this is done? Need to test.

More: - Helper functions to create the type objects - Maintain a structure of primitive types - Remove name checks (e.g.,is this equal to "int") - Break code up into...

Model after C#: https://docs.microsoft.com/en-us/dotnet/api/system.math?view=netframework-4.8

Possibly remove keywords from the lexer and treat all identifiers the same. That way they do not need to be maintained in multiple places.

Awesome!!! Do you have a link to the repo?