11 lines
177 B
Raku
11 lines
177 B
Raku
my $file = 'notes.txt';
|
|
|
|
multi MAIN() {
|
|
print slurp($file);
|
|
}
|
|
|
|
multi MAIN(*@note) {
|
|
my $fh = open($file, :a);
|
|
$fh.say: DateTime.now, "\n\t", @note;
|
|
$fh.close;
|
|
}
|