Creating functions¶
After you have installed Knative Functions, you can create a function project by using the func CLI or the kn func plugin:
func create -l <language> <function-name>
Example:
func create -l go hello
kn func create -l <language> <function-name>
Example:
kn func create -l go hello
Expected output
Created go function in hello
For more information about options for function create commands, see the func create documentation.