# Compile and run
vox hello.vox --run
# Build executable with custom name
vox hello.vox -o myprogram
# Build shared library
vox math.vox --shared -o libmath.so
# Consume a Vox library through its .lib (the `see` does the linking)
vox mathkit_consumer.vox -o consumer
# Link an executable against a .so that has no .lib (stem, not the lib prefix)
vox main.vox --link math --lib-path ./libs