]> gitweb.factorcode.org Git - factor.git/commitdiff
move a few time util words to calendar
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 29 Nov 2008 18:36:10 +0000 (12:36 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 29 Nov 2008 18:36:10 +0000 (12:36 -0600)
extra/taxes/usa/usa-tests.factor
extra/taxes/utils/utils.factor [deleted file]

index a529762c81500a2d75cbab65007d207f40c6945f..002299fef17ef281ab7be7550f0508aee4dc020e 100644 (file)
@@ -1,6 +1,6 @@
 USING: kernel money tools.test
 taxes.usa taxes.usa.federal taxes.usa.mn
-taxes.utils taxes.usa.w4 usa-cities ;
+calendar taxes.usa.w4 usa-cities ;
 IN: taxes.usa.tests
 
 [
diff --git a/extra/taxes/utils/utils.factor b/extra/taxes/utils/utils.factor
deleted file mode 100644 (file)
index a5c2240..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-! Copyright (C) 2008 Doug Coleman.
-! See http://factorcode.org/license.txt for BSD license.
-USING: math ;
-IN: taxes.utils
-
-: monthly ( x -- y ) 12 / ;
-: semimonthly ( x -- y ) 24 / ;
-: biweekly ( x -- y ) 26 / ;
-: weekly ( x -- y ) 52 / ;
-: daily ( x -- y ) 360 / ;