Skip to content

Instantly share code, notes, and snippets.

@IndiceeCoder
Created July 19, 2011 23:16
Show Gist options
  • Save IndiceeCoder/1093979 to your computer and use it in GitHub Desktop.
Save IndiceeCoder/1093979 to your computer and use it in GitHub Desktop.
iBIOS Customization Example - Currency Exchange 2
/**
* 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