Closed tomoyanonymous closed 3 years ago
implement struct type(record type) and type alias. Example is in test_typealias.mmm in test/mmm.
test_typealias.mmm
test/mmm
type stereo = (float,float) type composite = {signal:stereo , id:float} fn test2(){ ogya = composite{(100,200), 100} ho,fu = ogya.signal he = ogya.id println(ho) println(fu) println(he) } test2()
implement struct type(record type) and type alias. Example is in
test_typealias.mmm
intest/mmm
.