// This file has no lint issues const greeting = 'hello'; console.log(greeting); function add(a, b) { return a + b; } const result = add(1, 2); console.log(result);