Documentation for PkgTest.jl
Reference
PkgTest.Hello.hello
— Functionhello(name::String)
Return a greeting "Hello, <name>" for the specified name
.
Arguments
name::String
: The name to greet.
Returns
- A string that says
"Hello, <name>"
Examples
```julia julia> hello("Alice") "Hello, Alice"
PkgTest.Hello.goodbye
— Functiongoodbye(name::String)
Return a farewell "Goodbye, <name>" for the specified name
.
Arguments
name::String
: The name to say goodbye to.
Returns
- A string that says
"Goodbye, <name>"
Examples
```julia julia> goodbye("Alice") "Goodbye, Alice"