The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
- Image from https://www.archlinux.org/
The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
| #include <stdio.h> | |
| void hackerName(char *string) { | |
| printf("Your hacker name is %s", string); | |
| } | |
| void hackMe(char *string) { | |
| printf("%s has hacked me.\n", string); | |
| } |
``` tex
\documentclass[a5paper,9pt]{scrartcl}
#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6
Paragraph
| #!/bin/bash | |
| # For LS_COLORS, print type and description in the relevant color. | |
| IFS=: | |
| for ls_color in $LS_COLORS; do | |
| color="${ls_color#*=}" | |
| type="${ls_color%=*}" | |
| # Add descriptions for named types. | |
| case "$type" in |