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