Quick actions

cmd+k|ctrl+k

Navigation

Languages

Function

Snippet info

Language

Bash

Visibility

public

Author

yahiko

Created

2018-07-05T09:29:14Z

Updated

2018-07-05T09:31:04Z

function test(){
    echo Hello, World!
}

test

function print(){
    echo $1, $2
}

print a b
INFO