Yolol icon indicating copy to clipboard operation
Yolol copied to clipboard

Emulator for the YOLOL Language

Results 3 Yolol issues
Sort by recently updated
recently updated
newest added

AST equality allows you to test where two syntax trees are the same with: ``` var a = TestExecutor.Parse("program"); var b = TestExecutor.Parse("program"); Assert.isTrue(a.Equals(b)); ``` This needs testing for every...

good first issue

Every single optimisation pass needs tests covering: - The most basic case where optimisation should happen. Verify that it does. - A more complex "real world" example where optimisation should...

good first issue