An open API service indexing awesome lists of open source software.

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

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 }
None

def identity(x: A) -> A:
return x

main =
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.0

Initial release of Bend language support