Last active
December 6, 2024 02:23
-
-
Save axurright/1fbf64a645d4fdd40696df3c50317335 to your computer and use it in GitHub Desktop.
Revisions
-
axurright revised this gist
Dec 6, 2024 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,8 @@ 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."); } } -
axurright created this gist
Dec 6, 2024 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ import 'dart:io' void main() { print("Oh, user, I haven't seen you in a while! How many days have passed?"); passedDays = stdin.readLineSync(); print("Oh man, It's been $passedDays since I have seen you! Hopefully you are fine."); }