Hi, Im a student of the University of the Aegean, and i need your help with a project in Julia. I have done this programm so far, but something is missing in the beginning and i dont what i have to do to run the programm. Do i have to put numbers?
if x < y
println("x is less than y")
elseif x > y
println("x is greater than y")
else
for i in 1:x
print(i, ", ")
end
end
Thank you
