Julia Online IDE & Code Editor for Technical Interviews
Running 1.8.5 - IntelliSense is not available
Experience our Julia IDE yourself
See just how easy and intuitive CoderPad Interview is to use below.
Guidelines to use Julia in this online IDE
The julia environment gives you the ability to write and execute high-performace code with ease while using a flexible and dynamic syntax.
function sum_n(n)
s = 0
for i = 1:n
s += i
end
return s
end
n = 10
s = sum_n(n)
println("The sum of the first $n positive integers is $s")
Code language: Julia (julia)