General info
What have you used Julia for in the past?
What makes you interested in Julia?
This is the first event in the Nordic RSE seminar series.
Today's speaker is Luca Ferranti,
See setup instructions: https://github.com/lucaferranti/juliaPackageDevelopment/
It checks compatibility by looking at semantic versioning?
Can you please summarize again what the difference was between Project.toml and Manifest.toml?
Why are there the semicolons inside the Template() and GitHubActions()?
function f(x, y; z=1)
to define function f
with one z optional parameter.How do you get back to julia> after being in package mode?
Sorry I missed it: How did you create the mycoolpackage?
Can you use @edit
on function defined inside REPL instead of source file?
Would it be bad practice or technically not possible to define tests in the same place where code is defined? To avoid changing two files every time you want to move something around.
test/runtests.jl
(at least by default, I don't know if you can change it)
@include
files in other paths in the test/runtests.jl
file.test
folder. You might also want to add some tests to src/subpackage/tests
, for example.…
…
…