Skip to content

Instantly share code, notes, and snippets.

View piccolo-namek's full-sized avatar

piccolo-namek

View GitHub Profile
Option Explicit
Main
Sub Main()
Dim original
original = Array(-6,3,9,5,3,-7)
Dim sorted
sorted = Sort((original))
Option Explicit
Call Main()
Sub Main()
Dim Tree
Set Tree = MakeTree(1, 255)
Dim Stack
Set Stack = CreateObject("System.Collections.Stack")