Skip to content

Instantly share code, notes, and snippets.

@boraseoksoon
Created August 25, 2025 22:55
Show Gist options
  • Save boraseoksoon/86e3bfc458f1a46d58bc2919692cd049 to your computer and use it in GitHub Desktop.
Save boraseoksoon/86e3bfc458f1a46d58bc2919692cd049 to your computer and use it in GitHub Desktop.
hello world hlvm js extension
/**
* @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