From 2f9aca3fb1227cfdbc9782fe55b09e4fd306900a Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Sat, 20 Jan 2024 11:03:15 -0800 Subject: [PATCH] initial commits --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dadee85..4dd8008 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The **zarf format** is meant to be both programmer-legible and programmer-friend ## Sample -A **zarf** file looks like this: +Here is an example **zarf** file with 3 files embedded in it. ``` ZARF/1 @@ -30,8 +30,24 @@ images/logo.svg + + ``` +The files inside of this **zarf** file are named: + +* `README.md` +* `article.txt` +* `images/logo.svg` + +The **zarf** file also specifies the size of each of these embedded files. + +| File Name | File Size | +|-------------------|-----------| +| `README.md` | 12 | +| `article.txt` | 1572 | +| `images/logo.svg` | 1819 | + ## Motivation There are many many use-cases where multiple files are combined into a single file.