Hello from JuliaCon 2023!

This is an example post for the new website.

julia> println("This is REPL code!")
This is REPL code!
foo = "This is a regular code block"
bar = "Variables get saved"
@show foo bar
foo = "This is a regular code block"
bar = "Variables get saved"
println(foo)
This is a regular code block

We can even include Literate.jl notebooks with their own environment / deps!

using BioSequences

my_seq = dna"GATTACA"

count(==(DNA_A), my_seq)
3
CC BY-SA 4.0 kevin. Last modified: . Website built with Franklin.jl and the Julia programming language.