Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

;compile racket seems to be broken #230

Open
davidscholberg opened this issue May 14, 2024 · 0 comments
Open

;compile racket seems to be broken #230

davidscholberg opened this issue May 14, 2024 · 0 comments

Comments

@davidscholberg
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant