| 
        
 RequirementsFeatures
Syntax highlighting for Karina filesCommand for running Karina code directly from VSCodeError and warning diagnostics for Karina filesQuick fixes for imports and typesCompletion suggestionsDocument Symbols and Outline view Setup
Install the extension from the VSCode Marketplace or search for "Karina" in the extensions tab of VSCode.Download the Karina Language Server and configure the path in the extension settings (karina.lspLocation).Create a new folder called srcin your workspace and create amain.krnafile in it with the following content: pub fn main(args: [string]) {
    println("Hello, World!")
}
Create a karina-build.jsonfile in the root of your workspace with the following content: {
  "source": "src"
}
Set a Keybind for the karina.run.maincommand or use the command palette to run. |  |