Last active
December 6, 2024 02:23
-
-
Save BluePyTheDeer251/1fbf64a645d4fdd40696df3c50317335 to your computer and use it in GitHub Desktop.
Just a Dart recap.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io' | |
void main() { | |
print("Oh, user, I haven't seen you in a while! How many days have passed?"); | |
String? passedDays = stdin.readLineSync(); | |
if (passedDays != null) { | |
print("Oh man, It's been $passedDays since I have seen you! Hopefully you are fine."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment