math.complex: make fields public

This commit is contained in:
Simon Heuser 2019-10-15 11:43:28 +02:00 committed by Alexander Medvednikov
parent 49d6c26da4
commit a5d61f6da0
2 changed files with 7 additions and 0 deletions

View file

@ -7,6 +7,7 @@ module complex
import math
struct Complex {
pub:
re f64
im f64
}