Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created March 17, 2024 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnlokerse/f670706e78c093935cd73ed369c66346 to your computer and use it in GitHub Desktop.
Save johnlokerse/f670706e78c093935cd73ed369c66346 to your computer and use it in GitHub Desktop.
Create your own function in Azure Bicep with user-defined functions blog
func funcSayHelloTo() string => 'Hello and welcome, John Doe'
output outName string = funcSayHelloTo()
/*
Outputs:
'Hello and welcome, John Doe'
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment