grassator / mass

A compiler for a new language focusing on compile-time execution and no LLVM dependency.
https://www.youtube.com/watch?v=k3gDvF-Fbpw&list=PLvdK1vRmp8wMzH4w_8sQ30NKU3Bt4Cc-M
MIT License
285 stars 7 forks source link

Fizz Buzz Test Crashes in CI when using byte `i` #2

Closed grassator closed 3 years ago

grassator commented 4 years ago

The strange thing is that it works locally just fine but fails on CI 🤷

Minimal code seems to be:

fizz_buzz :: () -> () {
  i := 0;
  stdout_handle := GetStdHandle(-11);
  while (i < 100) {
    i = i + 1;
    remainder := i % 3;
}
grassator commented 3 years ago

Seems fixed as of #28