Boo (programming language): Difference between revisions

Content deleted Content added
m c/e
Paisen20 (talk | contribs)
 
(7 intermediate revisions by 4 users not shown)
Line 14:
| dialects =
| influenced_by = [[C Sharp (programming language)|C#]], [[Python (programming language)|Python]]
| influenced = [[Genie (programming language)|Genie]], [[Vala (programming language)|Vala]]
| programming_language = [[C Sharp (programming language)|C#]]
| platform = [[Common Language Infrastructure]] ([[.NET Framework]] & [[Mono (software)|Mono]])/
Line 27:
Boo is [[free software]] released under the [[BSD licenses|BSD 3-Clause license]]. It is compatible with the [[Microsoft]] [[.NET Framework|.NET]] and [[Mono (software)|Mono]] frameworks.
 
== Code samplesSyntax ==
{{rewrite|2=section|date=May 2023}}
 
=== Hello world program ===
<syntaxhighlight lang="boo">
print ("Hello World")
</syntaxhighlight>
 
=== Fibonacci series generator function ===
<syntaxhighlight lang="boo">
def fib():
a, b = 0L, 1L h
# The 'L's make the numbers double word length (typically 64 bits)
while true:
Line 61 ⟶ 60:
{{Reflist}}
 
== External links ==
 
* [https://github.com/boo-lang Official website]
* [https://webgithub.archive.org/web/20151225214729/http:/com/boo-lang.org/ WaybackMachineboo Official website]
* [https://github.com/boo-lang/ The sources of Boo hosted on GitHub]
* [https://github.com/boo-lang/boo/wiki The documentation of Boo hosted on GitHub]
* [https://web.archive.org/web/20131213022040/http://visualstudiogallery.msdn.microsoft.com/8d15c62f-de0d-42f0-863a-daa8330d977a Visual Boo, for Visual Studio 2010]
* [http://boolangstudio.codeplex.com/ BooLangStudio VSIP for Visual Studio 2008]
* [http://www.icsharpcode.net/OpenSource/SD/ #develop free IDE for C#, VB.NET and Boo projects on Microsoft's .NET platform]
* [http://vs2010boo.codeplex.com/ Boo syntax highlighting for Visual Studio 2010]
* [http://jbryankelly.files.wordpress.com/2012/07/thinksciboorev2_hb.pdf How To Think Like a Computer Scientist: Learning to Program with Boo]
* [https://docs.google.com/file/d/0B8oSXKT4_sy7ZERmYnozaFlTY2M/edit?usp=sharing.pdf Boo Succinctly Revealed]
Line 80 ⟶ 73:
[[Category:Brazilian inventions]]
[[Category:Class-based programming languages]]
[[Category:Free compilers and interpretersopen source compilers]]
[[Category:Object-oriented programming languages]]
[[Category:Procedural programming languages]]