RosettaCodeData/Task/Classes/Rhovas/classes-1.rhovas
2023-12-16 21:33:55 -08:00

8 lines
162 B
Text

struct Vector {
var x: Decimal;
var y: Decimal;
func magnitude(this): Decimal {
return Math.sqrt(this.x * this.x + this.y * this.y);
}
}