v1.1.0!!!
Vast has finally been upgraded to #15 Along with it came a LOT of exciting new stuff.
As mentioned before, there have been plans for implementing CVast, which when un-acronymed is: Compiled Vast!
Although the compiler is still in it's early stages, variable declarations are possible:
var int myvar = 5;
And guess what, its implementation is in C++, making it an astonishing 3 times faster!
This is just the first of, the dozens of updates to come, so, stay tuned!
Simply go to the cloned repo on your computer and cd
into cmake-build-debug
foulder, there should be an executable there named Vast
, then simply run it with ./Vast <path-to-.cv-file>
If you are already in the cmake-build-debug
folder, assuming you have made no changes to the cloned repo, just run:
./Vast ../examples/cvast/test/test.cv
You can alternatively create an alias and add it to your ~/.bashrc
or ~/.zshrc
file instead of mentioning the path to Vast
command all the time:
alias vast="path-to-vast-binary"
Enjoy!