JS: Fix load.js example path

This commit is contained in:
Willy-JL
2024-10-16 14:16:19 +01:00
parent 6b4e94ec58
commit 3b86248288

View File

@@ -1,3 +1,3 @@
let math = load("/ext/apps/Scripts/load_api.js");
let math = load(__dirpath + "/load_api.js");
let result = math.add(5, 10);
print(result);