mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
23 lines
323 B
Markdown
23 lines
323 B
Markdown
|
```sh
|
||
|
echo info >&2
|
||
|
```
|
||
|
|
||
|
```js
|
||
|
import { say } from "npm:cowsay";
|
||
|
|
||
|
console.log(say({ text: "hello world" }));
|
||
|
```
|
||
|
|
||
|
```
|
||
|
$ deno -A npm:zx README.md
|
||
|
info
|
||
|
_____________
|
||
|
< hello world >
|
||
|
-------------
|
||
|
\ ^__^
|
||
|
\ (oo)\_______
|
||
|
(__)\ )\/\
|
||
|
||----w |
|
||
|
|| ||
|
||
|
```
|