Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created March 17, 2024 19:42
Show Gist options
  • Save johnlokerse/9e0e730cf6e8527bdecca7bddfe4db76 to your computer and use it in GitHub Desktop.
Save johnlokerse/9e0e730cf6e8527bdecca7bddfe4db76 to your computer and use it in GitHub Desktop.
Create your own function in Azure Bicep with user-defined functions blog
import { funcGreetPerson } from 'shared.bicep'
output outImport string = funcGreetPerson('John Doe')
/*
Outputs:
'Hello John Doe!'
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment