So, you want to use IntelliJ IDEA for your Exercism.io Java exercises?
Here’s my workflow. Note, using IntelliJ IDEA CE 14.
- [ ]
cd
to$EXERCISM_DIR/java/the-exercise
- [ ] Run
gradle idea
to generate the*.iml* and =.idea
files/dirs
(function() { | |
var highland = require("highland") | |
var array = [1,2,3], | |
spy = (message, fn) => { | |
return x => { | |
console.log(`${message} ${x}`) | |
return fn(x) | |
} | |
}, |