]> gitweb.michael.orlitzky.com - octave.git/blobdiff - odd.m
Move homework #1's octave code into its directory.
[octave.git] / odd.m
diff --git a/odd.m b/odd.m
deleted file mode 100644 (file)
index b0bc626..0000000
--- a/odd.m
+++ /dev/null
@@ -1,15 +0,0 @@
-function odd = odd(integer_n)
-  ## Returns true if its argument is odd; false otherwise.
-  ##
-  ## INPUTS:
-  ##
-  ##   * ``integer_n`` - The integer whose parity you're determining.
-  ##
-  ##
-  ## OUTPUTS:
-  ##
-  ##   * ``odd`` - True if `integer_n` is odd, false otherwise.
-  ##
-  
-  odd = !even(integer_n);
-end