about
11/29/2022
BuildOn Repo
BuildOn Repository
Learning Rust by Building
Quick Status
- Don Marquis
Contents:
I think of these steps as a work book for the Rust Story. The story
provides a fairly complete narrative description of the Rust programming language.
Each project step takes an important feature or capability of the language, provides a consise statement,
an example of its operation, and, for most of the steps, a short set of links to things you need to know
to complete the step.
Steps:
-
BuildOn Introduction
What is BuildOn? Why Rust? Rust Safety
You will find introductory code for step_1 in the BuildOn Repository. -
TextFinder Introduction
Getting started: references, partitioning, execution Next Step: text_search lib specification, step references. You will find introductory code for step_1 in the BuildOn Repository. -
TextSearch
text_search lib: references, example implementation Next Step: dir_nav lib specification, step references. -
DirNav
dir_nav lib: references, example implementation Next Step: cmdln_parser lib specification, step references. -
CmdlnParser
cmdln_parser lib: references, example implementation Next Step: display lib specification, step references. -
Executive
executive and display: references, example structure Next Step: regular_expression extensions, references -
Regular Expression Extension
regular_expression extension: references, example implementation Next Step: concurrency -
Concurrency Extension
parallel_search extension: references, example implementation Next Step: New Project?