Created
March 19, 2012 12:07
-
-
Save jraregris/2109503 to your computer and use it in GitHub Desktop.
Penger til overs per dag
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'chronic' | |
saldo = STDIN.gets.to_i | |
today = Date.today | |
p saldo / (Chronic.parse("12th day of #{today.day < 12 ? 'this' : 'next'} month").to_date - today).to_i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment