#!/usr/bin/env node
export {}

const data = await fetch('https://htsit.se/f/test.txt');

const text = await data.text();

console.log(text);