applications for julia with pkg and manifest toml
Step 1: Add "PkgTemplates","DocumenterTools"
Step 2: template = Template(dir=".", user="rcherukuri12")
Step 3: PkgTemplates.generate(template,"libsvm_reader")
This will create an app folder called "libsvm_reader" in the folder where you started Julia.
Step 4: cd("libsvm_reader")
Step 5: DocumenterTools.generate()
Now exit out of Julia command-line and use atom or VS code to write code. You will see "src" for building your julia module and other files You will see "test" for writing test files You will see "docs" for writing documentation.
julia --project=. src/libsvm_reader.jl
julia --project=. test/runtests.jl