1
0
mirror of https://github.com/UberGuidoZ/Flipper.git synced 2025-01-11 00:00:15 +00:00
Flipper/Applications/Custom (UL, RM)/Unleashed/Scripts/js_examples/console.js

6 lines
121 B
JavaScript
Raw Normal View History

2024-08-07 03:09:52 +00:00
print("print", 1);
console.log("log", 2);
console.warn("warn", 3);
console.error("error", 4);
console.debug("debug", 5);