Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Exale Programming Language SupportNew to Visual Studio Code? Get it now.
Exale Programming Language Support

Exale Programming Language Support

Mrcat327846521306

|
3 installs
| (1) | Free
Support for the Exale programming language
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

EXALE PROGRAMMING LANGUAGE NEW!

Exale Programming Language Support

Come eseguire un file .exale con tasks.json in Visual Studio Code

  1. Preparazione: Assicurati di aver installato e configurato correttamente:

    • La tua estensione Exale Programming Language in Visual Studio Code.
    • Il compilatore o interprete Exale (ad esempio, exale.exale).
  2. Struttura di tasks.json: Il file tasks.json è utilizzato da VSCode per automatizzare l'esecuzione del tuo codice. Devi configurarlo per eseguire il file .exale.

  3. Configurazione di tasks.json: Crea un file tasks.json nella cartella .vscode del tuo progetto, se non esiste già. Puoi farlo manualmente o usare la funzionalità integrata di VSCode per aggiungere un nuovo task.

  4. Esempio di tasks.json:

    {
     "version": "2.0.0 (version that you want)",
     "tasks": [
       {
         "label": "Esegui Exale",
         "type": "shell",
         "command": "./exale (or your name of your file!)",  
         "args": [
           "${file}"  
         ],
         "group": {
           "kind": "build",
           "isDefault": true
         },
         "problemMatcher": [],
         "detail": "Esegui il file Exale con l'interprete"
       }
     ]
    

}

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft