Différences
Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente | ||
| en:download [2025/08/31 15:35] – créée root | en:download [2026/04/03 14:40] (Version actuelle) – [Linux] root | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ===== Donwload===== | + | ===== Downloads |
| ==== Linux ==== | ==== Linux ==== | ||
| - | ^ OS ^ Version ^ Link^ | + | ^ OS ^ Version ^ MD5 Hash ^ Comment ^ Direct link to '' |
| - | | Debian | 0.2 | Alpha release | + | | Debian | 0.6 | '' |
| - | Installation | + | | Debian | 0.5 | -\\ - | Version 28/02/2026 | {{https:// |
| + | === Debian === | ||
| + | To manage installations/ | ||
| + | <code bash> | ||
| + | apt update | ||
| + | apt install ca-certificates curl | ||
| + | curl -fsSL http:// | ||
| + | tee / | ||
| + | Types: | ||
| + | URIs: http:// | ||
| + | Suites: $(. / | ||
| + | Components: main | ||
| + | Signed-By: / | ||
| + | EOF | ||
| + | apt update | ||
| + | </ | ||
| + | Then install W : | ||
| + | <code bash> | ||
| + | apt install wlanguage | ||
| + | </ | ||
| + | //Note//: To manually install a '' | ||
| + | <code bash> | ||
| + | # example | ||
| + | sudo apt install ./ | ||
| + | </ | ||
| ==== Windows ==== | ==== Windows ==== | ||
| + | ^ OS ^ Version ^ Link^ MD5 Hash ^ Comment ^ | ||
| + | | Debian | 0.6 | {{https:// | ||
| + | | Debian | 0.5 | {{https:// | ||
| + | Run the installer as administrator.\\ | ||
| + | To uninstall W, go to the directory '' | ||
| + | ==== Hash calculation ==== | ||
| + | For fun, here's the code for the program that calculates the hash in W : | ||
| + | <code wlang hash.w> | ||
| + | begin | ||
| + | declare file, md5, path | ||
| + | let file = '' | ||
| + | let md5 = '' | ||
| + | let path = field(@arg, @fm, 2) | ||
| + | part 1 | ||
| + | invoke file& | ||
| + | part 2 | ||
| + | invoke hash& | ||
| + | echonl 'MD5 => ':md5 | ||
| + | except | ||
| + | if @part = 1 then | ||
| + | echonl ' | ||
| + | endif | ||
| + | end | ||
| + | </ | ||