https://github.com/ppmpreetham/bend-syntax-highlighter
VSCode extension for Bend Language Syntax Highlighting
https://github.com/ppmpreetham/bend-syntax-highlighter
bend-lang bend-language vscode-extension
Last synced: 2 months ago
JSON representation
VSCode extension for Bend Language Syntax Highlighting
- Host: GitHub
- URL: https://github.com/ppmpreetham/bend-syntax-highlighter
- Owner: ppmpreetham
- License: mit
- Created: 2025-03-27T08:35:01.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-27T08:59:30.000Z (2 months ago)
- Last Synced: 2025-03-27T09:43:42.812Z (2 months ago)
- Topics: bend-lang, bend-language, vscode-extension
- Homepage: https://marketplace.visualstudio.com/items?itemName=ppmpreetham.bend-lang
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Bend Language Support
Visual Studio Code extension providing syntax highlighting and language support for the Bend programming language.
## Features
- Syntax highlighting for both imperative and functional Bend syntax
- Support for Bend's unique features like:
- Type and object definitions
- Both imperative and functional style code
- Special syntax for monadic operations
- Pattern matching
- Native HVM functions## Example
```bend
# Sample Bend code
type Option(T):
Some { value: T }
Nonedef identity(x: A) -> A:
return xmain =
let result = (identity 41)
(+ result 1)
```## Requirements
- Visual Studio Code 1.60.0 or newer
## Extension Settings
- This extension doesn't contribute any settings yet.
## Contributions
Contribute at [Github](https://github.com/ppmpreetham/bend-syntax-highlighter)
## Known Issues- This is an early version of the Bend language extension.
## Release Notes
### 1.0.0Initial release of Bend language support