-
Notifications
You must be signed in to change notification settings - Fork 2
/
bob.dart
executable file
·38 lines (35 loc) · 1.17 KB
/
bob.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#! /usr/bin/env dart
/* Copyright (C) Rhiannon Sutton - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Rhiannon Sutton <[email protected]>, Jan 2022
*/
import 'package:dcli/dcli.dart';
/// dcli script generated by:
/// dcli create bob.dart
///
/// See
/// https://pub.dev/packages/dcli#-installing-tab-
///
/// For details on installing dcli.
///
void main() {
print('''
Bob is a fish who really, Really, REALLY wants a cat.
Sadly however, Bob's father is a horrible tyrannical fish who hates the poor innocent cat race.
So, he wont allow his sweet beautiful child get a cat.
How cruel :(''');
final horrible =
confirm(magenta("Do you think Bob's father is a horrible fish being."));
if (horrible) {
print(blue('''
"Yay!!!!!:)
I knew you would agree with me.
I mean how could anyone think someone who doesn't like cats could be anything but EVIL >:("'''));
} else {
print('''
Bob, got so angry with your horrendous claim of his father being right that Bob killed you very slowly and painfully.
you are now dead.
${red("I wish you a horrible time in hell:)")}''');
}
}