0
I created a school project to use the language Hack.
I performed the installation of the hhvm
as documented
sudo apt-get install hhvm
I started the server
hhvm -m server -p 8080
And I created a file called selectPost.hh
which contains only the initial tag
<?hh
//Nao tem mais nada
When I open the browser and try to run my file it does not work. In the terminal log generates the following:
Fatal error: /home/usuario/Documents/web/ajax/selectPost.hh appears to be a Hack file, but you do not appear to be running the Hack typechecker.
I don’t understand how I manage to run a file on the server.
Does anyone know which configuration I missed perform?