pub const omega = 3 // should be first pub const alpha = 5 // should be in the middle pub const beta = 2 // should be at the end // def - should be first pub fn def() { println(1) } // xyz - should be in the middle pub fn xyz() { println(2) } // abc - should be last pub fn abc() { println(3) }