Created
August 25, 2025 22:55
-
-
Save boraseoksoon/86e3bfc458f1a46d58bc2919692cd049 to your computer and use it in GitHub Desktop.
hello world hlvm js extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @name TestModule | |
| * @description A test module | |
| * @icon 🧪 | |
| * @category testing | |
| * @param {string} message - Message to display | |
| */ | |
| export default function(message = "Hello HLVM!") { | |
| console.log(`🎉 ${message}`); | |
| return { success: true, message }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment