Skip to content

Instantly share code, notes, and snippets.

@angelabauer
Created February 12, 2019 15:36
Show Gist options
  • Save angelabauer/d187e6ed6f85c6972e1bc7effe8fe6e4 to your computer and use it in GitHub Desktop.
Save angelabauer/d187e6ed6f85c6972e1bc7effe8fe6e4 to your computer and use it in GitHub Desktop.
import 'dart:math';
void main() {
//Full function
// double bmiCalculator(double height, double weight) {
// final bmi = weight / pow(height, 2);
// return bmi;
// }
//Fat arrow function
// bmiCalculator (double height, double weight) => weight / pow(height, 2);
// print(bmiCalculator(1.8, 63.5));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment