Stan Language Support for VS Code
This extension adds syntax highlighting for .stan files — a custom language inspired by Python and designed for simple interpreted scripts.
Features
- Syntax highlighting for keywords like
name, print, ask, if, loop, and more.
- Recognizes
.stan files.
- Supports basic variables and control flow in the Stan language.
Example
name word = hi
print !word
if word == hi ->
print Hello, Stan!
<-
| |