diff options
author | 2021-09-20 13:48:05 -0700 | |
---|---|---|
committer | 2021-09-20 13:48:05 -0700 | |
commit | 7e2539ed702f0667163b726a6bb12bbd5569979d (patch) | |
tree | 0daa2e883acb4e93a2df2bbb16eefb0dc7ce539f /examples/macros/hello.js | |
parent | 60b5fb95b19b2f96dcfd851663b40e1155c9cc0e (diff) | |
download | bun-jarred/ast.tar.gz bun-jarred/ast.tar.zst bun-jarred/ast.zip |
WIPjarred/ast
Diffstat (limited to '')
-rw-r--r-- | examples/macros/hello.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/macros/hello.js b/examples/macros/hello.js new file mode 100644 index 000000000..80ea9ba03 --- /dev/null +++ b/examples/macros/hello.js @@ -0,0 +1,4 @@ +import { dogeify } from "macro:./dogeify"; + +const wow = dogeify`Call #1!`; +const suchDoge = dogeify`Call #2!`; |