Skip to content

Instantly share code, notes, and snippets.

@Ashish-Gurung7
Ashish-Gurung7 / age_calculator.dart
Last active November 2, 2025 07:04
Flutter class assignment
import 'daRt:io';
int calculateAge(int birthYear, int currentYear) {
int voterCheck = currentYear - birthYear;
return voterCheck;
}
void main() {
print("please enter your birth year");
int birthYear = int.parse(stdin.readLineSync()!);