1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 22:57:46 +00:00

space between the def name and the left bracket

This commit is contained in:
Michael Angerman 2022-03-20 17:53:48 -07:00 committed by GitHub
parent 30cda76252
commit 47325b9a21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,3 +34,13 @@
### {
### echo $arg
### }
### This breaks because you need a space between
### between foo and the left bracket
### def foo[] {
### "bar"
### }
### This works
### def foo [] {
### "bar"
### }