Language Server: Full LSP support for enhanced development
Installation
Open VS Code
Go to Extensions (Ctrl+Shift+X)
Search for "PowerScript"
Click Install
Usage
Create a .ps file
Start coding in PowerScript
Enjoy syntax highlighting and auto-completion!
Example
let greeting = "Hello, PowerScript!"
print(greeting)
developer()
let factorial = fun(n) {
if n <= 1 then
1
else
n * factorial(n - 1)
}
print(factorial(5))
Requirements
PowerScript interpreter (install from GitHub releases)
Release Notes
0.1.0
Initial release
Syntax highlighting for PowerScript
Auto-completion support
Error detection
Custom file icons
About PowerScript
PowerScript is a modern programming language that combines the power of C with the simplicity of Python.