Skip to content

Instantly share code, notes, and snippets.

View helloworldsmart's full-sized avatar
😀
I may be slow to respond.

MichaelChen helloworldsmart

😀
I may be slow to respond.
  • Mars
View GitHub Profile
import Foundation
class ClassNode {
var value: Double?
var operation: String?
var leftChild: ClassNode?
var rightChild: ClassNode?
init(value: Double? = nil, operation: String? = nil, leftChild:ClassNode? = nil, rightChild: ClassNode? = nil) {