[]
= "example"
# # Sequence
# variable -> change -> replace
# assign a new variable
[[]]
# with a name of "example"
= "example"
# which will have default value of "project"
= "project"
# and ask it with this question from user
= "What would you like to name this project?"
# change a content inside a file
[[]]
# from this file
= "Cargo.toml"
# locate necessary location inside with this catchphrase
= "#author#"
# and replace it with this value whereas every @{word}@ will be
# replaced with corresponding variable value, which is "project"
# if user didn't enter anything, final value is: "project-file"
= "@example@-file"
# maybe apply these functions to the value (optional)
= "uppercase"
# rename/move a file from one place to another
[[]]
# take this file from this location
= "some.txt"
# and computate the name of the file as explained in change
# instruction, then move old file to new location with the new
# computated name, final value in this case is: project.toml
= "@example@.toml"