aboutsummaryrefslogtreecommitdiff
path: root/_mint/internal/StdIO.js
blob: 3e352606072f056361d9e9a4b3f5925f85c64f3a (plain)
1
2
3
4
5
6
7
module.exports = {
    stdout: {
        writeln: (line) => {
            console.log(line);
        }
    }
}