aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index d4ee7bc..76c7913 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,4 @@
fn main() {
- // hiccup::run_mortgage(390_000., 0.028, 30);
- hiccup::run_mortgage(200_000., 0.01621, 30);
+ let mut m = hiccup::Mortgage::new(390_000., 0.028, 30);
+ m.run();
}