Hong-Phuc Bui
2025-10-17 0079221776106e3ca91076938e80d37e38eacc29
textbased-programms/arithmetic-op.js
@@ -6,10 +6,10 @@
import {terminal} from "./dfhi.js";
window.main = function(...argv) {
   let a = 12;
   let b = 5;
   let c = Math.floor(12/5); // 2
   let d = (12/5) | 0;
window.main = (...argv)=> {
   const a = 12;
   const b = 5;
   const c = Math.floor(a/b); // 2
   const d = (a/b) | 0;
   terminal.print(c);
};