4cec10ebd2423bb9886d01bdf54aabae33061997
Misc/Moelang.md
| ... | ... | @@ -30,14 +30,14 @@ module Complex |
| 30 | 30 | im: Float |
| 31 | 31 | end |
| 32 | 32 | |
| 33 | - func conjugate -\> Complex(c: Complex) |
|
| 33 | + func conjugate -;;> Complex(c: Complex) |
|
| 34 | 34 | return Complex { |
| 35 | 35 | re=c.re, |
| 36 | 36 | im=-c.im, |
| 37 | 37 | } |
| 38 | 38 | end |
| 39 | 39 | |
| 40 | - cast -> Complex(f: Float) |
|
| 40 | + cast -;;> Complex(f: Float) |
|
| 41 | 41 | return Complex { |
| 42 | 42 | re=f, |
| 43 | 43 | im=0.0, |