-
Notifications
You must be signed in to change notification settings - Fork 141
Add ReasonML #686
Comments
This is good idea! I sugest to add this language too. |
I think we can use Jest wrapper for testing. If I'm understanding correctly, it'll output tests in JS and regular Jest can be used to run them. |
I think yes, I use it exactly the way you wrote. |
I got it working with the latest It'll look something like let add = (a, b) => a + b; open Jest;
describe("add", () => {
open Expect;
test("1 + 1", () =>
expect(Solution.add(1, 1)) |> toBe(2));
}); Solution will be always put in |
@kazk |
Maybe next week. I'm doing this on my own time after work so I don't know how much time I can spend. I'd say it's 95% complete because code runner is done. I just need to update Codewars to let it know about Reason. I still need to find an icon though. |
Reason is now available on Codewars! Currently there's only Multiply. |
@kazk |
Hello, I suggest to add language ReasonML. It's quite new but very promising and is becoming more and more popular.
Now, the most popular use is for web application (can be compile to javascript).
The text was updated successfully, but these errors were encountered: