6 lines
72 B
Raku
6 lines
72 B
Raku
my $app = sub {
|
|
my ($environ) = @_;
|
|
|
|
return ['200', [], []];
|
|
};
|