Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/src/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ A Julia app is structured similar to a standard Julia library with the following

A very simple example of an app that prints the reversed input arguments would be:

Create new package `pkg> generate MyReverseApp` with the following code:
```julia
# src/MyReverseApp.jl
module MyReverseApp
Expand All @@ -44,6 +45,8 @@ reverse = {}
```
The empty table `{}` is to allow for giving metadata about the app.

Install app from developed package with `pkg> app dev .` or `pkg> app dev MyReverseApp` if your package is at `JULIA_DEPOT_PATH`

After installing this app one could run:

```
Expand Down