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
Hi, I think there is an issue with F# online editor test.
I've already submitted a bug using the 'Rpeort a bug' function on the editor, apology for the duplication, but I didn't receive any confirmation of the bug I submitted. So I decided to submit the bug report again here as it's easier for me to follow up and see the progress of the bug.
When I am running tests, it always gives me the error message "An ERROR OCCURED" without details:
I can't tell if there is any issue with the code, which is relatively simple, and it runs fine inside Visual Studio 2022, so I assume it's a bug in the online editor test runner.
Here is my code if it helps:
module Accumulate
let rec accumulate (func: 'a -> 'b) (input: 'a list): 'b list =
match input with
| [] -> []
| h :: t -> (func h) :: (accumulate func t)
The text was updated successfully, but these errors were encountered:
At Exercism we use our Community Forum, not GitHub issues, as the primary place for discussion. That allows maintainers and contributors from across Exercism's ecosystem to discuss your problems/ideas/suggestions without them having to subscribe to hundreds of repositories.
This issue will be automatically closed. Please use this link to copy your GitHub Issue into a new topic on the forum, where we look forward to chatting with you!
If you're interested in learning more about this auto-responder, please read this blog post.
Hi, I think there is an issue with F# online editor test.
I've already submitted a bug using the 'Rpeort a bug' function on the editor, apology for the duplication, but I didn't receive any confirmation of the bug I submitted. So I decided to submit the bug report again here as it's easier for me to follow up and see the progress of the bug.
When I am running tests, it always gives me the error message "An ERROR OCCURED" without details:
I can't tell if there is any issue with the code, which is relatively simple, and it runs fine inside Visual Studio 2022, so I assume it's a bug in the online editor test runner.
Here is my code if it helps:
The text was updated successfully, but these errors were encountered: