You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to compile the following racket code (which runs fine locally) with the compiler bot, it gives the error below:
#lang racket/base
(define (sum-of-squares n)
(define (iter n running-sum)
(if (= n 0)
running-sum
(iter (- n 1) (+ running-sum (* n n)))))
(iter n 0))
(print (sum-of-squares 3))
Internal Compiler Explorer error: Error: ENOENT: no such file or directory, open '/nosym/tmp/compiler-explorer-compiler2024414-7757-1w9983b.c6lo/compiled/example_rkt.zo'
This doesn't seem to be an error with the code above but rather the bot's handling of racket.
The text was updated successfully, but these errors were encountered:
When I try to compile the following racket code (which runs fine locally) with the compiler bot, it gives the error below:
This doesn't seem to be an error with the code above but rather the bot's handling of racket.
The text was updated successfully, but these errors were encountered: