Created
July 19, 2011 23:16
-
-
Save IndiceeCoder/1093979 to your computer and use it in GitHub Desktop.
iBIOS Customization Example - Currency Exchange 2
This file contains hidden or 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
/** | |
* Obtain the unit conversion between two currencies | |
*/ | |
unitExchangeRate :: String -> String -> Double; | |
unitExchangeRate fromCurrency toCurrency = | |
exchangeRateConversion fromCurrency toCurrency 1.0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment