Skip to content

Instantly share code, notes, and snippets.

@RhyshaKachari
RhyshaKachari / main.dart
Created July 30, 2022 15:21
snowy-illusion-4802
int addNumbers(int num1 ,int num2){
//print(num1 + num2) ;
return(num1+num2);
}
class Person{
String name = 'Rhysha';
int age = 19;
}