C Sharp to Boo
From Unify Community Wiki
(Difference between revisions)
Isaiah Kelly (Talk | contribs) m (marked as legacy) |
|||
Line 30: | Line 30: | ||
myQueue.Dequeue() | myQueue.Dequeue() | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | [[Category:Legacy]] |
Latest revision as of 20:14, 8 December 2018
Finding the difference in C# and Boo can be trying at the best of times. So hopefully there is something here to help you use Boo.
Variable definition:
var1 as int var2 as int = 2 var3 as single = 1.0 # single precision floating point number var4 as double = 2.2342352 # double precision floating point number
Collections:
import System.Collections
# Lists
myList1 as List myList2 as List = List() # instantiates new List object myList3 as List = List(1, 2, 3) myList.Add(4)
# Queues
myQueue as Queue myQueue as Queue = Queue() myQueue.Enqueue(1) myQueue.Peek() myQueue.Dequeue()