Skip to content

Instantly share code, notes, and snippets.

@axurright
Last active December 6, 2024 02:23
Show Gist options
  • Select an option

  • Save axurright/1fbf64a645d4fdd40696df3c50317335 to your computer and use it in GitHub Desktop.

Select an option

Save axurright/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