Skip to content

Latest commit

 

History

History
 
 

julia

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Tennis in Julia

Installation

Start the Julia REPL with the current directory as project root.

julia --project=@.

Once you are in REPL, use the Pkg module to download the project's dependencies (the Test module).

using Pkg

Pkg.instantiate()

Running Tests

Using the Julia REPL, use the Pkg module to run the tests.

using Pkg

Pkg.test()