Auto-updates are coming soon!
You can obtain latest interpreter executable here:
Unpack artifacts.zip
and place easypt interpreter in a worthy place.
For Windows:
For Linux run commands:
echo "export PATH=\"$PATH:/path/to/interpreter\"" >> ~/.bash_profile
source ~/.bash_profile
chmod -R u=rwx /path/to/interpreter
For all:
Run command easypt -entryPoint log(1234);
to verify Easypt interpreter is correctly installed.
You can download it here.
Skip this step if you already have VS Code installed.
You can download it in VS Code extension marketplace.
tasks.json
to project’s .vscode
directory:{
"version": "2.0.0",
"tasks": [
{
"label": "Run Easypt source",
"type": "process",
"command": "easypt",
"args": [
"-file",
"${file}"
],
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Now you are able to run Easypt code with VS Code build task (Ctrl+Shift+B
).