Английская Википедия:Boo (programming language): различия между версиями
(Новая страница: «{{Английская Википедия/Панель перехода}} {{Short description|none}} {{More citations needed|date=July 2011}} {{Infobox programming language | name = Boo | logo = File:BooLogo.png | paradigm = Object oriented | year = {{Start date and age|2003}} | designer = Rodrigo B. De Oliveira | developer...») |
(нет различий)
|
Текущая версия от 21:28, 10 февраля 2024
Шаблон:Short description Шаблон:More citations needed Шаблон:Infobox programming language
Boo is an object-oriented, statically typed, general-purpose programming language that seeks to make use of the Common Language Infrastructure's support for Unicode, internationalization, and web applications, while using a Python-inspired syntax[1] and a special focus on language and compiler extensibility. Some features of note include type inference, generators, multimethods, optional duck typing, macros, true closures, currying, and first-class functions.
Boo was one of the three scripting languages for the Unity game engine (Unity Technologies employed De Oliveira, its designer), until official support was dropped in 2014 due to the small userbase.[2] The Boo Compiler was removed from the engine in 2017.[3] Boo has since been abandoned by De Oliveira, with development being taken over by Mason Wheeler.[4]
Boo is free software released under the BSD 3-Clause license. It is compatible with the Microsoft .NET and Mono frameworks.
Syntax
print ("Hello World")
def fib():
a, b = 0L, 1L h
# The 'L's make the numbers double word length (typically 64 bits)
while true:
yield b
a, b = b, a + b
# Print the first 5 numbers in the series:
for index as int, element in zip(range(5), fib()):
print("${index+1}: ${element}")
See also
References
External links
- Official website
- How To Think Like a Computer Scientist: Learning to Program with Boo
- Boo Succinctly Revealed
- Bootorial
Шаблон:Common Language Infrastructure
- Английская Википедия
- Programming languages
- .NET programming languages
- Brazilian inventions
- Class-based programming languages
- Free compilers and interpreters
- Object-oriented programming languages
- Procedural programming languages
- Programming languages created in 2003
- Software using the BSD license
- Statically typed programming languages
- 2003 software
- Страницы, где используется шаблон "Навигационная таблица/Телепорт"
- Страницы с телепортом
- Википедия
- Статья из Википедии
- Статья из Английской Википедии