diff options
author | Andinus <andinus@nand.sh> | 2021-04-29 20:46:30 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2021-04-29 20:46:30 +0530 |
commit | 3cf07e5d8f5579893a43a4300d44d4dbab90ba81 (patch) | |
tree | 736fefaf3d286f6fe37e332aacf4ec09e27d3899 /README | |
parent | 7a5a05f5af12731bc714234726ab4049e68461f3 (diff) | |
download | antlia-3cf07e5d8f5579893a43a4300d44d4dbab90ba81.tar.gz |
Initial implementation
Diffstat (limited to 'README')
-rw-r--r-- | README | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/README b/README new file mode 100644 index 0000000..2499d14 --- /dev/null +++ b/README @@ -0,0 +1,105 @@ + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + ANTLIA + Antlia is a text based Rock paper scissors game + + Andinus + ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + + +Table of Contents +───────────────── + +Installation +Documentation +News + + +━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + Website <https://andinus.nand.sh/antlia> + Source <https://git.tilde.institute/andinus/antlia> + GitHub (mirror) <https://github.com/andinus/antlia> +━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ + + +Installation +════════════ + + Antlia is released to CPAN, you can get it from there or install it + from source. In any case, `zef' is required to install the + distribution. + + You can run Antlia without `zef'. Just run `raku -Ilib bin/antlia' + from within the source directory. + + +Release +─────── + + 1. Run `zef install antlia'. + + Antlia should be installed, try running `antlia --version' to confirm. + + +From Source +─────────── + + You can either download the release archive generated by cgit/GitHub + or clone the project if you have `git' installed. + + +Without `git' +╌╌╌╌╌╌╌╌╌╌╌╌╌ + + 1. Download the release: + • <https://git.tilde.institute/andinus/antlia> + • <https://github.com/andinus/antlia/releases> + 2. Extract the file. + 3. Run `zef install .' in source directory. + + +With `git' +╌╌╌╌╌╌╌╌╌╌ + + All commits will be signed by my [PGP Key]. + + ┌──── + │ # Clone the project. + │ git clone https://git.tilde.institute/andinus/antlia + │ cd antlia + │ + │ # Install octans. + │ zef install . + └──── + + +[PGP Key] +<https://andinus.nand.sh/static/D9AE4AEEE1F1B3598E81D9DFB67D55D482A799FD.asc> + + +Documentation +═════════════ + +Implementation +────────────── + + Just enter the player names & it'll print each throw along with + scores. Press enter to play another round. + + +Options +─────── + +players +╌╌╌╌╌╌╌ + + Number of players. Default is 2, should be an integer equal to 2. + Support for more than 2 players will be added later. + + +News +════ + +v0.1.0 - 2021-04-29 +─────────────────── + + Initial Implementation |