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)
Precompiling packages...
    381.1 msPrecompileTools
   1049.0 msBioSymbols
   6347.1 msBioSequences
  3 dependencies successfully precompiled in 8 seconds. 6 already precompiled.
  1 dependency precompiled but a different version is currently loaded. Restart julia to access the new version. Otherwise, loading dependents of this package may trigger further precompilation to work with the unexpected version.
  1 dependency had output during precompilation:BioSymbolsWARNING: Constructor for type "Char" was extended in `BioSymbols` without explicit qualification or import.  NOTE: Assumed "Char" refers to `Base.Char`. This behavior is deprecated and may differ in future versions.`  NOTE: This behavior may have differed in Julia versions prior to 1.12.  Hint: If you intended to create a new generic function of the same name, use `function Char end`.  Hint: To silence the warning, qualify `Char` as `Base.Char` in the method signature or explicitly `import Base: Char`.
3