Content deleted Content added
m c/e |
m →Syntax |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 14:
| dialects =
| influenced_by = [[C Sharp (programming language)|C#]], [[Python (programming language)|Python]]
| influenced =
| 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.
==
{{rewrite|2=section|date=May 2023}}
<syntaxhighlight lang="boo">
print ("Hello World")
</syntaxhighlight>
<syntaxhighlight lang="boo">
def fib():
a, b = 0L, 1L
# The 'L's make the numbers double word length (typically 64 bits)
while true:
Line 61 ⟶ 60:
{{Reflist}}
== External links ==
* [https://
* [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
[[Category:Object-oriented programming languages]]
[[Category:Procedural programming languages]]
|