Skip to content

Instantly share code, notes, and snippets.

@adityasuseno
Created July 15, 2019 15:29
Show Gist options
  • Save adityasuseno/148e927e4b6de55872808140b1bd1a5c to your computer and use it in GitHub Desktop.
Save adityasuseno/148e927e4b6de55872808140b1bd1a5c to your computer and use it in GitHub Desktop.
My Fist Program in Julia Language
print("Enter a number: ")
n = parse(UInt8, readline())
for c = 1:n
for i = 1:c
print(i, " ")
end
println(" ")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment