Getting started
Install
See Install.
Creating a package
To create your first package, run the following command.
pen create foo
Then, you should see a foo
directory under the current directory. When you go to the foo
directory, you should see a main.pen
source file and a pen.json
file for package configuration.
Building a package
To build the package, run the following command in the foo
directory.
pen build
Then, you will see an executable file named app
in the directory. Run it to see your first "Hello, world!"
./app
For more information...
Now, you can start editing *.pen
files and build your own application!