pengines

(★ 59)

Pengine and Prolog scratchpad

File Explorer

  • .gitignore
  • .gitmodules
  • daemon.pl
  • debug.pl
  • LICENSE
  • load.pl
  • README.md
  • run.pl
  • server.pl
  • storage.pl
  • TODO.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

bower

View Details ▼

A package manager optimized for front-end web development.
A package can be a GitHub user/repo shorthand, a Git endpoint, a URL or a registered package.

bower install

Install a project's dependencies, listed in its `bower.json`:

bower install {{package1 package2 ...}}

Install one or more packages to the bower_components directory:

bower uninstall {{package1 package2 ...}}

Uninstall packages locally from the bower_components directory:

🔍

git submodule

View Details ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

swipl

View Details ▼

SWI-Prolog - A comprehensive free Prolog environment.

swipl

Start an interactive session:

swipl --quiet -t "{{command}}"

Execute a command without showing any output:

swipl {{path/to/file.pl}}

Execute a script:

// repository documentation