Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleCreate a directory FOO
  • Click the Create Folder icon

    Image Added
  • Enter the folder name and click and click the green [CREATE] button

    Image Added
  • You should see something like this:

    Image Added
Try this
Expand
titleCreate a file BAR.lua in the directory with a function
  • Select the Create File menu optin on the FOO folder

    Image Added
  • Enter the folder name and click and click the green [CREATE] button

    Image Added
  • Create a function in the BAR.lua file, you can paste this example:

  • Code Block
    function FOObar()
       return "The world needs more FOO";
    end
  • You should see something like this:

    Image Added
Expand
titlePush Commit the changes and push them to the upstream repo
  • Click the Commit changes toolbar button

    Image Added
  • The commit dialogue will open, enter a commit message and click the green [COMMIT] button

  • Click the Push changes to remote toolbar button

    Image Added
  • The upstream repository will look something like this:
    NOTE: FOO is currently just a folder

    Image Added
Expand
titleRight click and convert FOO to a library

...