Easypt

Prepare environment

Auto-updates are coming soon!

1. Download Easypt interpreter

You can obtain latest interpreter executable here:

Unpack artifacts.zip and place easypt interpreter in a worthy place.

2. Add Easypt interpreter to PATH

3. Download Visual Studio Code

You can download it here.

Skip this step if you already have VS Code installed.

4. Add Easypt extension to VS Code

You can download it in VS Code extension marketplace.

5. When you create new project add following 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).


Next lesson (Basics)

Table of contents