Skip to content

Instantly share code, notes, and snippets.

@danieldk
Created April 17, 2011 17:44
Show Gist options
  • Save danieldk/924270 to your computer and use it in GitHub Desktop.
Save danieldk/924270 to your computer and use it in GitHub Desktop.
FeatureValue
import Data.Char (isNumber, isUpper)
import Data.List (genericLength, genericTake)
import Text.Printf (printf)
data FeatureValue =
FeatureValue {
feature :: String,
value :: Double
} deriving (Show)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment