diff options
Diffstat (limited to 'tests/modules/test_modules/_physics.zc')
| -rw-r--r-- | tests/modules/test_modules/_physics.zc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/modules/test_modules/_physics.zc b/tests/modules/test_modules/_physics.zc new file mode 100644 index 0000000..ee56f7e --- /dev/null +++ b/tests/modules/test_modules/_physics.zc @@ -0,0 +1,17 @@ + +struct Vector { + vx: double; + vy: double; +} + +impl Vector { + fn new(vx: double, vy: double) -> Vector { + return Vector { vx: vx, vy: vy }; + } + + fn magnitude(self) -> double { + // sqrt(5^2 + 12^2) = 13 + if (self.vx == 5.0 && self.vy == 12.0) return 13.0; + return 0.0; + } +} |
