Skip to content

Instantly share code, notes, and snippets.

@BluePyTheDeer251
Last active December 6, 2024 02:23
Show Gist options
  • Save BluePyTheDeer251/1fbf64a645d4fdd40696df3c50317335 to your computer and use it in GitHub Desktop.
Save BluePyTheDeer251/1fbf64a645d4fdd40696df3c50317335 to your computer and use it in GitHub Desktop.
Just a Dart recap.
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