This guide will show step-by-step how to Install Arch Linux on UEFI mode.
- Bootable Flash Drive
- BIOS
- Pre installation
- Set Keyboard Layout
- Check boot mode
- Update System Clock
| #!/usr/bin/lua5.1 | |
| --- Async/Await for Lua 5.1 | |
| -- This script implements async/await functions for Lua, allowing tasks to | |
| -- be queued and scheduled independently. | |
| -- | |
| -- This is just an example and has a bunch of issues, isn't tested, isn't | |
| -- even actually used anywhere; I basically just got bored and had one of | |
| -- those "what if?" type ideas 6 hours ago. | |
| local co_create = coroutine.create |
| This archive contains the following programs: | |
| bfc The compiler for the 'brainfuck' language (240 bytes!) | |
| bfc.asm Source for the compiler | |
| bfi The interpreter for the 'brainfuck' language | |
| bfi.c Source for the interpreter (portable) | |
| src/ Some example programs in 'brainfuck' | |
| src/atoi.b Reads a number from stdin | |
| src/div10.b Divides the number under the pointer by 10 | |
| src/hello.b The ubiquitous "Hello World!" |