11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
// fifo-helper.ts
|
|
async function main() {
|
|
const fifo = Bun.file("/tmp/adder.fifo")
|
|
// Bun.write(fifo, "testing 123\n")
|
|
const txt = await fifo.text()
|
|
console.log(txt)
|
|
|
|
}
|
|
|
|
main()
|