Added build files to turn the bible into a book

This commit is contained in:
Dylan Araps
2018-06-20 12:24:38 +10:00
parent dbed16c54e
commit e0aadbde13
23 changed files with 1907 additions and 1 deletions

17
manuscript/chapter6.txt Normal file
View File

@@ -0,0 +1,17 @@
# Variables
## Assign and access a variable using a variable
```shell
hello_world="test"
# Create the variable name.
var1="world"
var2="hello_${var1}"
# Print the value of the variable name stored in 'hello_$var1'.
printf '%s\n' "${!var2}"
```
<!-- CHAPTER END -->