riju/langs/boo.yaml

43 lines
782 B
YAML

id: "boo"
aliases:
- "booc"
name: "Boo"
info:
year: 2003
desc: "Object-oriented, statically typed, general-purpose programming language on Microsoft's Common Language Infrastructure"
ext: boo
web:
wiki: "https://en.wikipedia.org/wiki/Boo_(programming_language)"
home: "https://boo-language.github.io/"
source: "https://github.com/boo-lang/boo"
category: general
mode: compiled
platform: clr
syntax:
- python
- extensible
- whitespace
typing:
- static
- dynamic
paradigm:
- imperative
- oo
usage: []
setup: |
mkdir -p "$HOME/.local/share" && touch "$HOME/.local/share/booish_history"
repl: |
booish
main: "main.boo"
template: |
print "Hello, world!"
compile: |
booc main.boo
run: |
mono main.exe; booish