FLUJOS/BACK_BACK/node_modules/static-module/test/vars/five.js
2025-11-07 00:06:12 +01:00

6 lines
141 B
JavaScript
Executable file

var a = 1, fs = require('fs'),
b = 2,
html = fs.readFileSync(__dirname + '/vars.html', 'utf8'),
c = 3
;
console.log(html + a + b + c);