diff fib.rhope @ 88:f69987c58fa8

Merge
author Mike Pavone <pavone@retrodev.com>
date Fri, 30 Jul 2010 19:52:54 -0400
parents a163250b8885
children
line wrap: on
line diff
--- a/fib.rhope	Fri Jul 30 01:48:59 2010 -0400
+++ b/fib.rhope	Fri Jul 30 19:52:54 2010 -0400
@@ -23,8 +23,7 @@
 Main[args]
 {
 	//Here we get the first command line argument and convert it to a number
-	//Yes I realize this is incredibly ugly looking
-	n <- <String@Whole Number[[args]Index[1]]
+	n <- Int32[[args]Index[1]]
 	//Call our Fib worker and Print the result to the terminal
 	Print[Fib[n]]
 }