mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 23:04:22 +08:00
1e858eae35
This demonstrates that we only write control sequences when interactive.
36 lines
599 B
Fish
36 lines
599 B
Fish
#RUN: %fish %s
|
|
|
|
function stuff --argument a b c
|
|
# This is a comment
|
|
echo stuff
|
|
# This is another comment
|
|
end
|
|
|
|
functions stuff
|
|
#CHECK: # Defined in {{.*}}
|
|
#CHECK: function stuff --argument a b c
|
|
#CHECK: # This is a comment
|
|
#CHECK: echo stuff
|
|
#CHECK: # This is another comment
|
|
#CHECK: end
|
|
|
|
function commenting
|
|
|
|
# line 2
|
|
|
|
# line 4
|
|
|
|
echo Bye bye says line 6
|
|
end
|
|
|
|
functions commenting
|
|
#CHECK: # Defined in {{.*}}
|
|
#CHECK: function commenting
|
|
#CHECK:
|
|
#CHECK: # line 2
|
|
#CHECK:
|
|
#CHECK: # line 4
|
|
#CHECK:
|
|
#CHECK: echo Bye bye says line 6
|
|
#CHECK: end
|