Why Julia?
I don't know specific reason. I thought Julia may be useful for building High Performance Computing solutions. So I am learning Julia.
Why this blog?
I thought sharing my learning will help me to reinforce my learning.
What is my first program?
println("Welcome to julia")
என்பெயர் = "Karthiganesh"
println(என்பெயர்)
println(typeof(என்பெயர்))
days = 365
days_float = convert(Float16,days)
println(days_float)
@assert days == 365
@assert days_float == 365.0
Comments
Post a Comment