9 lines
158 B
JavaScript
9 lines
158 B
JavaScript
// Copyright (c) Daniel Gakwaya.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
function greeting()
|
|
{
|
|
console.log("Hello there from external JS file utilities1.js")
|
|
}
|
|
|