Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Oktopios LanguageNew to Visual Studio Code? Get it now.
Oktopios Language

Oktopios Language

oktopios-language

|
2 installs
| (0) | Free
Support du langage Oktopios (.okp) — coloration syntaxique, snippets, icônes de fichiers
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

🐙 Oktopios Language — Extension VSCode

Support complet du langage Oktopios (.okp) dans Visual Studio Code.

Fonctionnalités

  • ✅ Coloration syntaxique complète (mots-clés, types, fonctions, classes, modules)
  • ✅ Snippets pour accélérer l'écriture
  • ✅ Icône de fichier .okp personnalisée avec le logo Oktopios
  • ✅ Thème sombre Oktopios Dark
  • ✅ Auto-fermeture des accolades, parenthèses, guillemets
  • ✅ Indentation automatique
  • ✅ Commandes intégrées (exécuter, REPL, vérifier syntaxe)

Installation

Depuis le marketplace VSCode

Recherchez Oktopios dans l'onglet Extensions de VSCode.

Depuis le fichier .vsix

code --install-extension oktopios-0.0.1.vsix

Commandes disponibles

Commande Raccourci Description
Oktopios: Run File F5 Exécute le fichier .okp courant
Oktopios: Open REPL — Ouvre le REPL interactif
Oktopios: Check Syntax — Vérifie la syntaxe du fichier

Snippets disponibles

Préfixe Description
var Variable typée
val Constante
fun Fonction
lambda Fonction anonyme
class Classe
classe Classe avec héritage
if / ife Condition
for / fore Boucles
try Try/catch/finally
inject Module natif
matrix Utilisation Matrix

Prérequis

Oktopios doit être installé :

pip install oktopios

Syntaxe Oktopios rapide

// Variables
var age: int = 25
val nom: string = "Oktopios"

// Fonction
fun saluer(prenom: string): string {
    return f"Bonjour {prenom} !"
}

// Classe
class Animal {
    var nom: string
    fun __construct(n: string) { this.nom = n }
}

// Modules
inject Math
print(Math.sqrt(16))  // 4.0
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft