mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
const file1 = Deno.readFileSync(Deno.args[0]);
|
|
const file2 = Deno.readFileSync(Deno.args[1]);
|
|
|
|
if (file1.length !== file2.length) {
|
|
console.error("File lengths are different");
|
|
Deno.exit(1);
|
|
}
|
|
for (let i = 0; i < file1.length; i++) {
|
|
if (file1[i] !== file2[i]) {
|
|
console.error("Files are different");
|
|
Deno.exit(1);
|
|
}
|
|
}
|
|
|
|
console.error("Same");
|