struct MyPair:
var first: Int
var second: Int
var _hi
fn __init__(inout self, first: Int, second: Int):
self.first = first
self.second = second
fn _hello():
return None
self._hi = _hello
struct MyPair:
var first: Int
var second: Int
var _hi
fn __init__(inout self, first: Int, second: Int):
self.first = first
self.second = second
fn _hello():
return None
self._hi = _hello