You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
jrosendo 53af9f2ecb docs(mobile-dev): add mobile branch subjects to public 2 years ago
..
README.md docs(mobile-dev): add mobile branch subjects to public 2 years ago

README.md

Plain Sum

Instructions

Write a function int plainSum(int, int, int) which takes 3 integers and returns their sum.

Functions in Dart are declared as follows:

bool isEven(int num) {
  return num % 2;
}

Usage

void main() {
  var res = plainSum(1, 2, 3);
  print(res); // prints 6
}