Boo Keywords
Index
#abstract
#and
#as
#AST
#break
#callable
#cast
#char
#class
#constructor
#continue
#def
#destructor
#do
#elif
#else
#ensure
#enum
#event
#except
#failure
#final
#from
#for
#false
#get
#given
#goto
#if
#import
#in
#interface
#internal
#is
#isa
#not
#null
#of
#or
#otherwise
#override
#namespace
#partial
#pass
#public
#protected
#private
#raise
#ref
#retry
#return
#self
#set
#super
#static
#struct
#success
#transient
#true
#try
#typeof
#unless
#virtual
#when
#while
#yield
Keywords
| Anchor | ||
|---|---|---|
|
...
| Code Block |
|---|
def dobyref(ref x as int):
x = 4
x = 1
print x //-->1
dobyref(x)
print x //-->4
|
...
"self" is used to reference the current class. "self" is not required for boo buy but may be used to add clarity to the code. "self" is synonymous with the c# keyword "this".
...
