JuliaZoid

Your home for Julia programming articles on Medium! Share your Julia learnings, projects, and packages with the world. By the community, for the community!

Follow publication

Tricky concepts in Julia for beginners (and how to overcome them)

Logan Kilpatrick
JuliaZoid
Published in
8 min readSep 20, 2022

--

Image by Author

1-based indexing 🥇

julia> a = "Hello world""Hello world"julia> a[1]'H': ASCII/Unicode U+0048 (category Lu: Letter, uppercase)julia> a[0]ERROR: BoundsError: attempt to access 11-codeunit String at index [0]Stacktrace:[1] checkbounds@ ./strings/basic.jl:216 [inlined][2] codeunit@ ./strings/string.jl:104 [inlined][3] getindex(s::String, i::Int64)@ Base ./strings/string.jl:225[4] top-level scope@ REPL[32]:1

String concatenation with 🌟

julia> "Hello" + "World"ERROR: MethodError: no method matching +(::String, ::String)Closest candidates are:+(::Any, ::Any, ::Any, ::Any...) at operators.jl:591Stacktrace:[1] top-level scope@ REPL[33]:1
julia> import Base.+ #Import base.+ so that we can add a new implementationjulia> function +(a::String, b::String)          return a*b        end+ (generic function with 207 methods)julia> "Hello" + "World""HelloWorld"

Defining a string with a single quote 🗯

julia> 'hello'ERROR: syntax: character literal contains multiple charactersStacktrace:[1] top-level scope@ none:1
"This is a valid Julia string"
#vs
'This is NOT a valid string'

Looping Through Dictionaries 🔁📖

for key,value in dictionary
print(key, value)
julia> for key,value in my_dictionaryERROR: syntax: invalid iteration specificationStacktrace:[1] top-level scope@ none:1
julia> my_dictionary = Dict("test"=>1, "test2"=>2)Dict{String, Int64} with 2 entries:"test2" => 2"test"  => 1julia> for (key,value) in my_dictionary            print(key, value)       endtest22test1

Intermission 🍿

The End keyword 🔚🎬

if a == b
print("A is equal to B")
end
for item in array
print(item)
end
function test()
print("test")
end
function test(item, item2)
print("test")
for new_item in item
if new_item == item2
print("We found the item")
end

print(item)
end
end
julia> function test()          print(test)ERROR: syntax: incomplete: "function" at REPL[50]:1 requires endStacktrace:[1] top-level scope@ none:1

Vectors of Booleans 🤨

julia> d = [true, false, true]3-element Vector{Bool}:101

Object-Oriented programming (or a lack thereof) 📦

julia> mutable struct Dog
breed::String
paws::Int
name::String
weight::Float64
end

julia> my_dog = Dog("Australian Shepard", 4, "Indy", 34.0)
dog("Australian Shepard", 4, "Indy", 34.0)

julia> my_dog.name
"Indy"
julia> mutable struct Dog
breed::String
paws::Int
name::String
weight::Float64

function Dog(breed, name, weight, paws=4)
new(breed, paws, name, weight)
end
end

julia> new_dog = Dog("German Shepard", "Champ", 46)
Dog("German Shepard", 4, "Champ", 46.0)
julia> function get_name(dog_obj::Dog)
print("The dogs's name is: ", dog_obj.name)
end
get_name (generic function with 1 method)

julia> get_name(new_dog)
The dogs's name is: Champ
julia> get_name("test")
ERROR: MethodError: no method matching get_name(::String)
Closest candidates are:
get_name(::Dog) at REPL[61]:1
Stacktrace:
[1] top-level scope
@ REPL[63]:1
julia> typeof(new_dog)
Dog

Closing Out With Additional Resources 👀

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in JuliaZoid

Your home for Julia programming articles on Medium! Share your Julia learnings, projects, and packages with the world. By the community, for the community!

Written by Logan Kilpatrick

Lead product for Google AI Studio, working on the Gemini API, and AGI. Ex-OpenAI.

Responses (1)

Write a response