Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ariya/bosque-by-examples

Simple examples of Bosque language features
https://github.com/ariya/bosque-by-examples

bosque bosquelanguage examples

Last synced: 13 days ago
JSON representation

Simple examples of Bosque language features

Awesome Lists containing this project

README

        

# Bosque by Examples

These are some examples written to learn [Bosque](https://github.com/Microsoft/BosqueLanguage).

## Hello, world!

```js
namespace NSMain;

entrypoint function main(): Int {
var _ = "Hello, world!"->display();
return 0;
}
```