Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ariya/bosque-by-examples
- Owner: ariya
- Created: 2019-04-27T18:32:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-27T18:32:44.000Z (over 5 years ago)
- Last Synced: 2024-10-23T06:21:38.627Z (2 months ago)
- Topics: bosque, bosquelanguage, examples
- Size: 0 Bytes
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
```