From 65a5168ca769d5ea5032072f10b8a6360f88e9c7 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Mon, 13 Jan 2014 12:49:48 -0800 Subject: [PATCH 001/135] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 38dfcec..c273dbe 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ -Hackbright-Curriculum -===================== \ No newline at end of file +![Logo](http://www.hackbrightacademy.com/assets/Hackbright-6c7b7cf9a39c92964e3fde0c682f48e8.png) + +Hackbright Curriculum +===================== + +Here you will find many of the exercises we will use during the first half of the Hackbright Academy 10-week Software Engineering Fellowship Program for Women. + +Our Curriculm continually evolves, so don't be surprised if you find material here that is extra or unused during the program. From 40a3b3a7d039cbe53e5753265d36fb05dd54d370 Mon Sep 17 00:00:00 2001 From: Liz Howard Date: Mon, 13 Jan 2014 15:31:40 -0800 Subject: [PATCH 002/135] Spellcheck --- skills1/skills1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills1/skills1.py b/skills1/skills1.py index 81dc81b..d474b1e 100644 --- a/skills1/skills1.py +++ b/skills1/skills1.py @@ -25,7 +25,7 @@ def halvesies(some_list): return [] # Write a function that takes a list of words and returns a list of all the lengths of those words. -def word_lenths(word_list): +def word_lengths(word_list): return [] # Write a function (using iteration) that sums all the numbers in a list. From 975390745354a440c428b92ed8573302f2761e5e Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Tue, 14 Jan 2014 14:06:34 -0800 Subject: [PATCH 003/135] Exercise 01 README --- Exercise01/{README => README.md} | 7 +++++++ 1 file changed, 7 insertions(+) rename Exercise01/{README => README.md} (86%) diff --git a/Exercise01/README b/Exercise01/README.md similarity index 86% rename from Exercise01/README rename to Exercise01/README.md index c31b453..84ca9e1 100644 --- a/Exercise01/README +++ b/Exercise01/README.md @@ -86,6 +86,13 @@ A rough pseudocode outline of the program will look like this: give hint else: congratulate player + +Version Control (git) +------- +While you're writing your code, try and remember to use 'git' at various points to save your progress. If you've never used version control before, it's a lot like enabling "Track Changes" in a Microsoft Word document. Every time you "commit" your code, you're saving a snapshot in time. If you make a change you don't like or mess something up, you can rollback to a previous commit. + +For those of you who play adventure games, the moto "Save Early, Save Often" should come to mind. + From 4a38f1e68d62232a6cb7597d45390dfd320ee0b4 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Tue, 14 Jan 2014 15:21:03 -0800 Subject: [PATCH 004/135] Adding Version Control steps to Ex01 --- Exercise01/README.md | 64 +++++++++++++++++++++++++++++++++----------- 1 file changed, 49 insertions(+), 15 deletions(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 84ca9e1..4d7dc3d 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -5,21 +5,21 @@ Tutorials & Resources: ------- Take a look at these online resources before you attempt this exercise. If you get stuck, check the work you've already completed. Do these before starting the exercise below. - * http://learnpythonthehardway.org/book/ex6.html - * http://learnpythonthehardway.org/book/ex7.html - * http://learnpythonthehardway.org/book/ex11.html - * http://learnpythonthehardway.org/book/ex29.html - * http://learnpythonthehardway.org/book/ex30.html - * http://learnpythonthehardway.org/book/ex31.html - * http://learnpythonthehardway.org/book/ex33.html +* http://learnpythonthehardway.org/book/ex6.html +* http://learnpythonthehardway.org/book/ex7.html +* http://learnpythonthehardway.org/book/ex11.html +* http://learnpythonthehardway.org/book/ex29.html +* http://learnpythonthehardway.org/book/ex30.html +* http://learnpythonthehardway.org/book/ex31.html +* http://learnpythonthehardway.org/book/ex33.html Concepts required: - * while loops - * 'break' statement - * conditionals - * user input - * formatting strings - * the int() function +* while loops +* 'break' statement +* conditionals +* user input +* formatting strings +* the int() function Introduction ------- @@ -51,6 +51,7 @@ Description ------- Write a program named guess.py that plays the 'number guessing game'. The computer will choose a random number between 1 and 100, and ask the user to guess the number, giving them a hint if it's high or low. A sample game looks like this: +``` Meringue:guessing chriszf$ python ./guess.py Howdy, what's your name? (type in your name) Christian @@ -73,7 +74,7 @@ Your guess? 69 Your guess is too high, try again. Your guess? 68 Well done, Christian! You found my number in 9 tries! - +``` A rough pseudocode outline of the program will look like this: @@ -94,5 +95,38 @@ While you're writing your code, try and remember to use 'git' at various points For those of you who play adventure games, the moto "Save Early, Save Often" should come to mind. - +So if you take the rough pseudocode outline from above, you'll probably want to go about creating your program in the following order: + +1. Create a new folder/directory to store your project +1. Create your project file. "subl guessing.py" will probably get you started. ;) +1. Have your code greet the player. +1. Test your code! Does it greet the player? +1. Time to save! + 1. git init + 1. git status + 1. git add guessing.py + 1. git status + 1. git commit -m "Greeting the Player" + 1. git status +1. Ok, on to the next step! Get the player's name. +1. Test your code! +1. Does it work? Time to save! + 1. git status + 1. git add guessing.py + 1. git status + 1. git commit -m "Getting the Player's Name" + 1. git status +1. Sensing a pattern yet? Repeat for the next steps, testing your code at each step. When you have a step working, save it! + +As you get more comfortable with git, you won't need to do a 'git status' at every step. We're only having you do that here so you can see what is happening at each step and get used to the messages that git returns. + +## Go Back! + +At some point, if you didn't make a mistake in your code, go ahead and break something (though make sure you've commited your working code before you go breaking things). + +So if you're code is broken or you explored an idea that didn't turn out the way you wanted it to and you just want to go back to your last commit, try: + + git reset --hard HEAD + +*WARNING:* This will erase any changes you have not committed, so please use with care! From 1799e31507d6c5f71f54dd5dce030d5f58302c3a Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Tue, 14 Jan 2014 15:29:43 -0800 Subject: [PATCH 005/135] README --- Exercise02/README | 117 ---------------------------------------------- 1 file changed, 117 deletions(-) delete mode 100644 Exercise02/README diff --git a/Exercise02/README b/Exercise02/README deleted file mode 100644 index 414bea2..0000000 --- a/Exercise02/README +++ /dev/null @@ -1,117 +0,0 @@ -Exercise 02: Math and functions -======= - -Introduction --------- -We're taught mathematical notation using 'infix' notation, that is, the operator goes between the numbers: - - eg: In '3 + 2', the operator, '+', goes between the operands, 3 and 2. - -An alternate notation for math is called 'prefix'. As you might have guessed, in prefix notation, the operator goes in front of the operands: - - eg: In prefix notation, the same statement would be written '+ 3 2' - -Some advantages of prefix notation include the ability to have an arbitrary number of operands. - - eg: '+ 3 2 1 4 5 6 7' will add up all the numbers. - -In this exercise, we will build a basic prefix calculator together. We will provide half of the program, and you will code the other half. We will use this idea to explore the concept of an 'interface'. - -In common English, an interface is defined as a surface that is a common boundary between two different things. In computing, the idea is very similar. An interface is the common 'surface' between two pieces of code, and is defined by an agreed-upon set of 'function signatures'. - -A function signature is a way of describing a function without going into the details of how it operates. For example, consider the following function: - - def square(x): - return x * x - -If we were to describe this function, we might say "the function named 'square' accepts a single number as an input, and returns a number as output (presumably the square of the input)." This phrase is the function signature. It includes the function name, the number (and type) of inputs, and the type of the output. We can also include a rough description of what the function is _supposed_ to do. More succinctly, we can say: - - square(int) -> int - Returns the square of the input integer. - - -Note that it says nothing about how the output integer is produced, nor does it say anything about the correctness of the output. It also doesn't say anything about what arguments to a function should be named. - -Why is this useful? Well, when two or more programmers collaborate on a project, it is rare that they can work completely independently of each other. At some point, I will rely on code that you have written, or more likely, you will write in the future. If I waited until you wrote your code, that would delay the project significantly. Instead, we would agree upon an interface, a series of method signatures that my code would use to interact with yours. I would write my code _assuming_ at some point, you will fill in those method signatures with the correct implementation eventually. - -One way of thinking about it is like after-market parts for cars. As long as the screws and holes are in the right positions at the right sizes, the pieces can be bolted together even though they come from different manufacturers. - - -Resources: - - * http://learnpythonthehardway.org/book/ex3.html - * http://learnpythonthehardway.org/book/ex18.html - * http://learnpythonthehardway.org/book/ex19.html - * http://learnpythonthehardway.org/book/ex21.html - * http://www.learnpython.org/Variables_and_Types - * http://www.learnpython.org/Functions - -Concepts required: - * functions - * arithmetic - * return values - - -Description -------- -We have provided a program, calculator.pyc that implements a basic prefix calculator. A pyc is a special python file. You can still run the program, but you can't view the original source of the program. Run it with the following command from your shell: - - python calculator.pyc - -The calculator lets a user add, subtract, multiply, divide, square a number, cube a number, and find the square root. - -Calculator uses the following interface: - - In the file arithmetic.py, these function signatures are required - - add(int, int) -> int - Returns the sum of the two input integers - - subtract(int, int) -> int - Returns the second number subtracted from the first - - multiply(int, int) -> int - Multiplies the two inputs together - - divide(int, int) -> float - Divides the first input by the second, returning a floating point - - square(int) -> int - Returns the square of the input - - cube(int) -> int - Returns the cube of the input - - power(int, int) -> int - Raises the first integer to the power of the second integer and returns the value. - - mod(int, int) -> int - Returns the remainder when the first integer is divided by the second integer. - - -A sample session of the calculator looks like this: - Meringue:math chriszf$ python calculator.pyc - > + 1 2 - 3 - > - 10 5 - 5 - > * 2 3 - 6 - > / 6 2 - 3.000000 - > square 2 - 4 - > cube 3 - 27 - > pow 2 5 - 32 - > mod 10 3 - 1 - > q - Meringue:math chriszf$ - -We have provided a sample arithmetic.py with a function that matches the signature for 'add', although it returns an incorrect value. Your job is to make it return the correct value, then provide the remaining interface. - -Try running the program first to understand where and how it fails. Read the error messages, and try to fix it by addressing one error at a time. - - From 1858ca169258239528f6512100af97f394fa62a3 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Tue, 14 Jan 2014 15:30:30 -0800 Subject: [PATCH 006/135] README --- Exercise02/README.md | 117 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 Exercise02/README.md diff --git a/Exercise02/README.md b/Exercise02/README.md new file mode 100644 index 0000000..44372e4 --- /dev/null +++ b/Exercise02/README.md @@ -0,0 +1,117 @@ +Exercise 02: Math and functions +======= + +Introduction +-------- +We're taught mathematical notation using 'infix' notation, that is, the operator goes between the numbers: + + eg: In '3 + 2', the operator, '+', goes between the operands, 3 and 2. + +An alternate notation for math is called 'prefix'. As you might have guessed, in prefix notation, the operator goes in front of the operands: + + eg: In prefix notation, the same statement would be written '+ 3 2' + +Some advantages of prefix notation include the ability to have an arbitrary number of operands. + + eg: '+ 3 2 1 4 5 6 7' will add up all the numbers. + +In this exercise, we will build a basic prefix calculator together. We will provide half of the program, and you will code the other half. We will use this idea to explore the concept of an 'interface'. + +In common English, an interface is defined as a surface that is a common boundary between two different things. In computing, the idea is very similar. An interface is the common 'surface' between two pieces of code, and is defined by an agreed-upon set of 'function signatures'. + +A function signature is a way of describing a function without going into the details of how it operates. For example, consider the following function: + + def square(x): + return x * x + +If we were to describe this function, we might say "the function named 'square' accepts a single number as an input, and returns a number as output (presumably the square of the input)." This phrase is the function signature. It includes the function name, the number (and type) of inputs, and the type of the output. We can also include a rough description of what the function is _supposed_ to do. More succinctly, we can say: + + square(int) -> int + Returns the square of the input integer. + + +Note that it says nothing about how the output integer is produced, nor does it say anything about the correctness of the output. It also doesn't say anything about what arguments to a function should be named. + +Why is this useful? Well, when two or more programmers collaborate on a project, it is rare that they can work completely independently of each other. At some point, I will rely on code that you have written, or more likely, you will write in the future. If I waited until you wrote your code, that would delay the project significantly. Instead, we would agree upon an interface, a series of method signatures that my code would use to interact with yours. I would write my code _assuming_ at some point, you will fill in those method signatures with the correct implementation eventually. + +One way of thinking about it is like after-market parts for cars. As long as the screws and holes are in the right positions at the right sizes, the pieces can be bolted together even though they come from different manufacturers. + + +Resources: + +* http://learnpythonthehardway.org/book/ex3.html +* http://learnpythonthehardway.org/book/ex18.html +* http://learnpythonthehardway.org/book/ex19.html +* http://learnpythonthehardway.org/book/ex21.html +* http://www.learnpython.org/Variables_and_Types +* http://www.learnpython.org/Functions + +Concepts required: +* functions +* arithmetic +* return values + + +Description +------- +We have provided a program, calculator.pyc that implements a basic prefix calculator. A pyc is a special python file. You can still run the program, but you can't view the original source of the program. Run it with the following command from your shell: + + python calculator.pyc + +The calculator lets a user add, subtract, multiply, divide, square a number, cube a number, and find the square root. + +Calculator uses the following interface: + + In the file arithmetic.py, these function signatures are required + + add(int, int) -> int + Returns the sum of the two input integers + + subtract(int, int) -> int + Returns the second number subtracted from the first + + multiply(int, int) -> int + Multiplies the two inputs together + + divide(int, int) -> float + Divides the first input by the second, returning a floating point + + square(int) -> int + Returns the square of the input + + cube(int) -> int + Returns the cube of the input + + power(int, int) -> int + Raises the first integer to the power of the second integer and returns the value. + + mod(int, int) -> int + Returns the remainder when the first integer is divided by the second integer. + + +A sample session of the calculator looks like this: + Meringue:math chriszf$ python calculator.pyc + > + 1 2 + 3 + > - 10 5 + 5 + > * 2 3 + 6 + > / 6 2 + 3.000000 + > square 2 + 4 + > cube 3 + 27 + > pow 2 5 + 32 + > mod 10 3 + 1 + > q + Meringue:math chriszf$ + +We have provided a sample arithmetic.py with a function that matches the signature for 'add', although it returns an incorrect value. Your job is to make it return the correct value, then provide the remaining interface. + +Try running the program first to understand where and how it fails. Read the error messages, and try to fix it by addressing one error at a time. + + From 34e84cbdb0473a86e7a0fdf21fc88a811a557713 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Tue, 14 Jan 2014 15:31:36 -0800 Subject: [PATCH 007/135] Update README.md --- Exercise02/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Exercise02/README.md b/Exercise02/README.md index 44372e4..e22b336 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -90,6 +90,7 @@ Calculator uses the following interface: A sample session of the calculator looks like this: + Meringue:math chriszf$ python calculator.pyc > + 1 2 3 From 55c2b6f29db3f75760c016062c9159c9008cf63b Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Wed, 15 Jan 2014 12:52:24 -0800 Subject: [PATCH 008/135] Adding git --- Exercise02/README.md | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index e22b336..d59a3d0 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -54,7 +54,13 @@ Concepts required: Description ------- -We have provided a program, calculator.pyc that implements a basic prefix calculator. A pyc is a special python file. You can still run the program, but you can't view the original source of the program. Run it with the following command from your shell: +We have provided a program, calculator.pyc that implements a basic prefix calculator. To download the file from github, click on the file, then click on "Raw" to download the file (the browser may place it in your Downloads folder). + +A pyc is a special python file. It's python code that has been "compiled" into machine code. You can still run the program, but you can't view the original source of the program. If you try and look at the file on your terminal (e.g. "cat calculator.pyc") you probably get a bunch of gross garbage outputted. That's okay, because the computer still knows how to run it. + +As you create and run more python programs, you may notice .pyc files get created. That's fine, they're making things run faster. However they're not your source code and you probably don't want to check them into version control (git). + +Run it with the following command from your shell: python calculator.pyc @@ -116,3 +122,26 @@ We have provided a sample arithmetic.py with a function that matches the signatu Try running the program first to understand where and how it fails. Read the error messages, and try to fix it by addressing one error at a time. +Version Control +------- +Just like in [Exercise 01](https://github.com/hackbrightacademy/Hackbright-Curriculum/tree/master/Exercise01) we want to make sure we're saving our work along the way. Start getting used to creating a new git repo, we'll be doing it for each Exercise we do. + +In short, remember this pattern: + +1. Create a new directory for your project +2. Run 'git init' to create the git repository +3. Write some code +4. Test some code +5. Got something working / at a good place to save? 'git add' to add your changes. +6. 'git commit' to save what you've added. Nothing is saved until you commit +7. Goto Step 3 + +As you write the code for the functions in arithmetic.py, test one and then commit the change to git before moving on to the next one. It may seem a little like overkill at this point since these functions are so small, but this is a habit you'll want to start practising. + +## Share and Share Alike + +git is great and all, but so far everything you've saved has only been saved on the computer you've been working on. If you move to another workstation or want to work on your computer at home, the files are not there. + +Enter "[github]("http://github.com")" to save the day! + +Github is a company that offers a remote place to syncronize your repository. This makes it easy to keep multiple machines up to date From a9bbb01f6338e3c1d7517f9143d9d731a685ff6f Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Wed, 15 Jan 2014 15:17:34 -0800 Subject: [PATCH 009/135] Update README.md --- Exercise02/README.md | 49 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 46 insertions(+), 3 deletions(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index d59a3d0..4675ab6 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -138,10 +138,53 @@ In short, remember this pattern: As you write the code for the functions in arithmetic.py, test one and then commit the change to git before moving on to the next one. It may seem a little like overkill at this point since these functions are so small, but this is a habit you'll want to start practising. +Complete this exercise before moving onto the next section. + ## Share and Share Alike -git is great and all, but so far everything you've saved has only been saved on the computer you've been working on. If you move to another workstation or want to work on your computer at home, the files are not there. +git is great and all, but so far everything you've commited has only been saved on the computer you've been working on. If you move to another workstation or want to work on your computer at home, the files are not there. + +Enter "[github](http://github.com)" to save the day! + +Github is a company that offers a remote place to syncronize your repository. This makes it easy to keep multiple machines up to date. As you've already seen, you don't need github to use git, but it does make things easier. + +If you have not yet created a github account, make sure you and your partner have done that now. + +Log into your github account and find the "Create Repository" button to create a place in github. Under "Repository Name", enter Exercise02 (or whatever you'd like call it, but note this affects the URL). The description is optional. Leave it set to Public, because Private repositories cost money. Don't check "initialize this repository with a README" because you've already initialized the repository on your local machine with "git init". Click "Create Repository". + +You'll see a screen that says "Quick Setup" - click the HTTP button (next to where it says "SSH"). You'll see an address that says something like https://github.com/[username]/Exercise02.git - copy this url. This is the address of the remote (because it's on a different server) git repository we're going to add to our local repository. + +Now you want to tell your local git repository about this new remote source. When you add the remote source, you also give it an identifiable name that you use to refer to it. Usually you would use the name "origin" as that's the default name. However, because you're pairing with another student to work on these exercises, you'll be adding two remotes to each of your projects, so it makes more sense to use your username (no spaces!) to identify the remotes. To add the remote to your repository: + + git remote add [your username goes here] https://github.com/[your username goes here]/Exercise02.git + +When we add a remote, much like when we do any other configuration, it only exists for that repository. Outside of the folder our repository is in, none of these settings exist. + +Now we have a remote - this is like a portal that goes to whatever URL we point at. So, now that we've established a portal link, what do we do with it? Same thing you'd probably do if you actually opened a portal to the server room at Github. Push things through it and see what happens. + + git push [remote name] master + +Replace [remote name] (no square brackets) with the name you used when you added the remote. You might wonder about what "master" means - that's the name of the branch. For now, we'll have only one branch, so we'll always type master there. In the Further Reading section, there's some information about branching. + +Once you've typed the "git push" command, git will ask you for a username - this is the username you signed up with github under. Then, it will ask for a password. When you type, you may be used to seeing asterisks(*) appear, but nothing will show up instead of just displaying your password for the world to see - so don't worry about typing it in in front of your partner. + +After this, head over to your Github profile. You should see your new repo has been created, and any files you've added should have been pushed to the server. This is the simplest way to back up your work to the cloud, share code between teams, and make sure you remember what you did, when you did it, with notes to yourself. + +Now repeat this for your partner so both of you have the code for the exercise saved in your github accounts. + +If you're comfortable with that, try going back and adding the remotes to Exercise 01. + + +Further Reading +======== + +http://try.github.com + +Information about Branching +http://pcottle.github.com/learnGitBranching/ -Enter "[github]("http://github.com")" to save the day! +Here's a very through overview of Git and how it works. +http://ftp.newartisans.com/pub/git.from.bottom.up.pdf -Github is a company that offers a remote place to syncronize your repository. This makes it easy to keep multiple machines up to date +Even more through, is this book: +http://git-scm.com/book/en From 3220b533471c5f0189def77e50ebc0317c662180 Mon Sep 17 00:00:00 2001 From: Liz Howard Date: Wed, 5 Feb 2014 12:07:54 -0800 Subject: [PATCH 010/135] Fixed some links to learnpython.org --- Exercise02/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index 4675ab6..52b74a8 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -43,8 +43,8 @@ Resources: * http://learnpythonthehardway.org/book/ex18.html * http://learnpythonthehardway.org/book/ex19.html * http://learnpythonthehardway.org/book/ex21.html -* http://www.learnpython.org/Variables_and_Types -* http://www.learnpython.org/Functions +* http://www.learnpython.org/en/Variables_and_Types +* http://www.learnpython.org/en/Functions Concepts required: * functions From b4c99f0289fd9d1ecac86a702e6a67104e4d0282 Mon Sep 17 00:00:00 2001 From: Liz Howard Date: Wed, 5 Feb 2014 12:49:29 -0800 Subject: [PATCH 011/135] fixed more links --- Exercise03/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise03/README b/Exercise03/README index 050d07d..0e1018d 100644 --- a/Exercise03/README +++ b/Exercise03/README @@ -67,8 +67,8 @@ Resources: * http://learnpythonthehardway.org/book/ex29.html * http://learnpythonthehardway.org/book/ex30.html * http://learnpythonthehardway.org/book/ex31.html - * http://www.learnpython.org/Variables_and_Types - * http://www.learnpython.org/Functions + * http://www.learnpython.org/en/Variables_and_Types + * http://www.learnpython.org/en/Functions * http://docs.python.org/library/functions.html#int Concepts required: From fa3cc4d2070f282a6f15bee0cdcfc2559ee43e7f Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Fri, 7 Feb 2014 10:24:19 -0800 Subject: [PATCH 012/135] moved README to README.md --- Exercise05/README.md | 55 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 Exercise05/README.md diff --git a/Exercise05/README.md b/Exercise05/README.md new file mode 100644 index 0000000..37d0f9f --- /dev/null +++ b/Exercise05/README.md @@ -0,0 +1,55 @@ +Exercise 05: Files, Creative uses of lists +========================================== + +Introduction +------------ +Files can be opened using the .open method, and then processed one character at a time as a bytestream using the .read method with an argument of 1: + + f = open("myfile.txt") + firstletter = f.read(1) + f.close() + +The entire file can be read in all at once using the .read method with no arguments: + + f = open("myfile.txt") + filetext = f.read() + f.close() + +Once a file has been read, it can be iterated through as if it were a list: + + # Print one character at a time to the screen + for char in filetext: + print char + +Resources: + * http://learnpythonthehardway.org/book/ex15.html + * http://learnpythonthehardway.org/book/ex16.html + * http://learnpythonthehardway.org/book/ex17.html + * http://www.asciitable.com/ + * http://docs.python.org/library/functions.html#ord + +Problem Description +------------------- +Write a program, lettercount.py, that opens a file named on the command line and counts how many times each letter occurs in that file. Your program should then print those counts to the screen, in alphabetical order. For example: + + inputfile.txt: + An abacus + + $ python lettercount.py inputfile.txt + 3 + 1 + 1 + 0 + 0 + ... + +Once you've produced appropriate output, you can visualize it by piping the contents of your program to the 'spark' utility installed on your computer: + + $ python lettercount.py inputfile.txt | spark + ▃▂▄▁▇▅█▁▇▂▁▁▅▃▅▇▁▄▄▂▂▇▆▄▂▄ + +You may find the following two methods useful: + string.lower() + ord() + +We have provided a file 'twain.txt' for you to test your code on. From 7b50ebf1668fd22299bc9f7ae214a429e6fb0d29 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Fri, 7 Feb 2014 10:28:02 -0800 Subject: [PATCH 013/135] removed README --- Exercise05/README | 55 ----------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 Exercise05/README diff --git a/Exercise05/README b/Exercise05/README deleted file mode 100644 index 37d0f9f..0000000 --- a/Exercise05/README +++ /dev/null @@ -1,55 +0,0 @@ -Exercise 05: Files, Creative uses of lists -========================================== - -Introduction ------------- -Files can be opened using the .open method, and then processed one character at a time as a bytestream using the .read method with an argument of 1: - - f = open("myfile.txt") - firstletter = f.read(1) - f.close() - -The entire file can be read in all at once using the .read method with no arguments: - - f = open("myfile.txt") - filetext = f.read() - f.close() - -Once a file has been read, it can be iterated through as if it were a list: - - # Print one character at a time to the screen - for char in filetext: - print char - -Resources: - * http://learnpythonthehardway.org/book/ex15.html - * http://learnpythonthehardway.org/book/ex16.html - * http://learnpythonthehardway.org/book/ex17.html - * http://www.asciitable.com/ - * http://docs.python.org/library/functions.html#ord - -Problem Description -------------------- -Write a program, lettercount.py, that opens a file named on the command line and counts how many times each letter occurs in that file. Your program should then print those counts to the screen, in alphabetical order. For example: - - inputfile.txt: - An abacus - - $ python lettercount.py inputfile.txt - 3 - 1 - 1 - 0 - 0 - ... - -Once you've produced appropriate output, you can visualize it by piping the contents of your program to the 'spark' utility installed on your computer: - - $ python lettercount.py inputfile.txt | spark - ▃▂▄▁▇▅█▁▇▂▁▁▅▃▅▇▁▄▄▂▂▇▆▄▂▄ - -You may find the following two methods useful: - string.lower() - ord() - -We have provided a file 'twain.txt' for you to test your code on. From a5621c43b2560eb519bddae6cccf7d9aaa6161c0 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Fri, 7 Feb 2014 13:13:11 -0800 Subject: [PATCH 014/135] formatting --- Exercise05/README.md | 44 +++++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/Exercise05/README.md b/Exercise05/README.md index 37d0f9f..7b714d1 100644 --- a/Exercise05/README.md +++ b/Exercise05/README.md @@ -4,29 +4,34 @@ Exercise 05: Files, Creative uses of lists Introduction ------------ Files can be opened using the .open method, and then processed one character at a time as a bytestream using the .read method with an argument of 1: - - f = open("myfile.txt") - firstletter = f.read(1) - f.close() - +```python +f = open("myfile.txt") +firstletter = f.read(1) +f.close() +``` The entire file can be read in all at once using the .read method with no arguments: - - f = open("myfile.txt") - filetext = f.read() - f.close() - +```python +f = open("myfile.txt") +filetext = f.read() +f.close() +``` Once a file has been read, it can be iterated through as if it were a list: - - # Print one character at a time to the screen +```python +# Print one character at a time to the screen for char in filetext: print char - +``` Resources: - * http://learnpythonthehardway.org/book/ex15.html - * http://learnpythonthehardway.org/book/ex16.html - * http://learnpythonthehardway.org/book/ex17.html - * http://www.asciitable.com/ - * http://docs.python.org/library/functions.html#ord + +* http://learnpythonthehardway.org/book/ex15.html +* http://learnpythonthehardway.org/book/ex16.html +* http://learnpythonthehardway.org/book/ex17.html +* http://www.asciitable.com/ +* http://docs.python.org/library/functions.html#ord + +Useful Concepts: +* string.lower() +* ord() Problem Description ------------------- @@ -48,8 +53,5 @@ Once you've produced appropriate output, you can visualize it by piping the cont $ python lettercount.py inputfile.txt | spark ▃▂▄▁▇▅█▁▇▂▁▁▅▃▅▇▁▄▄▂▂▇▆▄▂▄ -You may find the following two methods useful: - string.lower() - ord() We have provided a file 'twain.txt' for you to test your code on. From c0604b4e8e74d78997cbce0cb224c5497420a684 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Fri, 7 Feb 2014 15:35:52 -0800 Subject: [PATCH 015/135] moved README to README.md --- Exercise04/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Exercise04/{README => README.md} (100%) diff --git a/Exercise04/README b/Exercise04/README.md similarity index 100% rename from Exercise04/README rename to Exercise04/README.md From 9d6f38b8d73ea82d5442743b6dd1f0a4ec9d6808 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Fri, 7 Feb 2014 15:39:43 -0800 Subject: [PATCH 016/135] Update README.md --- Exercise04/README.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Exercise04/README.md b/Exercise04/README.md index 3710129..18cec73 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -2,24 +2,25 @@ List Operations =============== First, work through the following resources on lists: - * http://learnpythonthehardway.org/book/ex32.html - * http://learnpythonthehardway.org/book/ex33.html - * http://learnpythonthehardway.org/book/ex34.html - * http://learnpythonthehardway.org/book/ex38.html - * http://www.learnpython.org/Lists - * http://docs.python.org/tutorial/introduction.html#lists - * http://docs.python.org/tutorial/datastructures.html#more-on-lists + +* http://learnpythonthehardway.org/book/ex32.html +* http://learnpythonthehardway.org/book/ex33.html +* http://learnpythonthehardway.org/book/ex34.html +* http://learnpythonthehardway.org/book/ex38.html +* http://www.learnpython.org/Lists +* http://docs.python.org/tutorial/introduction.html#lists +* http://docs.python.org/tutorial/datastructures.html#more-on-lists --> stop reading before section 5.1.1 In this directory there are two files, list_operations.py and test_list_operations.py. Try running "python test_list_operations.py" at the CLI prompt. You should see a lot of console output that ends with the following text: - +``` ---------------------------------------------------------------------- Ran 25 tests in 0.007s FAILED (failures=25) - +``` The test_list_operations.py file contains tests for the functions defined in list_operations.py. All the tests are failing because none of the functions are implemented correctly. Your job is to write correct implementations for all the @@ -29,9 +30,10 @@ To check your work, you can run the test_list_operations.py file at any time to get information on the currently failing tests. The failures will be listed in alphabetical order by function name. When all the tests pass, you will see only the following output: - +``` ......................... ---------------------------------------------------------------------- Ran 25 tests in 0.002s OK +``` From c7a39c1a7c6eb80d5ff64a4e4952e3a3c11b73fd Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Fri, 7 Feb 2014 15:55:38 -0800 Subject: [PATCH 017/135] moved README to README.md --- Exercise03/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Exercise03/{README => README.md} (100%) diff --git a/Exercise03/README b/Exercise03/README.md similarity index 100% rename from Exercise03/README rename to Exercise03/README.md From bdf3fab79a113cdd93011204c361e3cd10c71843 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Fri, 7 Feb 2014 17:30:39 -0800 Subject: [PATCH 018/135] PRETTY! --- Exercise03/README.md | 99 ++++++++++++++++++++++---------------------- 1 file changed, 50 insertions(+), 49 deletions(-) diff --git a/Exercise03/README.md b/Exercise03/README.md index 0e1018d..9f3d53b 100644 --- a/Exercise03/README.md +++ b/Exercise03/README.md @@ -4,13 +4,13 @@ Exercise 03: Interfaces, main loops revisited Introduction -------- As we saw before, a main loop looks like this: - - do_setup() - while exit_condition_not_reached: - input = consume_input() - output = evaluate_input(input) - print output - +```python +do_setup() +while exit_condition_not_reached: + input = consume_input() + output = evaluate_input(input) + print output +``` When we consume input from the keyboard, this is a special type of main loop called a 'REPL', a read-eval-print-loop. In exercise 1, we built a very simple REPL that asked for a single number from the user. @@ -35,14 +35,14 @@ To do this, we use the string split method: When we do this, we say we've tokenized the original string on commas. Now consider the following string as read from the keyboard: - - input = "pow 3 5" - +```python +input = "pow 3 5" +``` If we tokenize on spaces, we get the following list: - - tokens = input.split(" ") - # tokens = ["pow", "3", "5"] - +```python +tokens = input.split(" ") +# tokens = ["pow", "3", "5"] +``` Now, we can take the first token, token[0], and make a decision about what to do with the remaining tokens. For example: if tokens[0] is equal to "pow": @@ -60,23 +60,23 @@ The psuedocode for our REPL will look like this: Resources: - * http://learnpythonthehardway.org/book/ex3.html - * http://learnpythonthehardway.org/book/ex18.html - * http://learnpythonthehardway.org/book/ex19.html - * http://learnpythonthehardway.org/book/ex21.html - * http://learnpythonthehardway.org/book/ex29.html - * http://learnpythonthehardway.org/book/ex30.html - * http://learnpythonthehardway.org/book/ex31.html - * http://www.learnpython.org/en/Variables_and_Types - * http://www.learnpython.org/en/Functions - * http://docs.python.org/library/functions.html#int +* http://learnpythonthehardway.org/book/ex3.html +* http://learnpythonthehardway.org/book/ex18.html +* http://learnpythonthehardway.org/book/ex19.html +* http://learnpythonthehardway.org/book/ex21.html +* http://learnpythonthehardway.org/book/ex29.html +* http://learnpythonthehardway.org/book/ex30.html +* http://learnpythonthehardway.org/book/ex31.html +* http://www.learnpython.org/en/Variables_and_Types +* http://www.learnpython.org/en/Functions +* http://docs.python.org/library/functions.html#int Concepts required: - * functions - * arithmetic - * return values - * string parsing - * conditionals +* functions +* arithmetic +* return values +* string parsing +* conditionals Description ------- @@ -110,25 +110,26 @@ Implement a REPL for a calculator in a file named 'calculator.py'. Your calculat A sample session of the calculator looks like this: - Meringue:math chriszf$ python calculator.py - > + 1 2 - 3 - > - 10 5 - 5 - > * 2 3 - 6 - > / 6 2 - 3.000000 - > square 2 - 4 - > cube 3 - 27 - > pow 2 5 - 32 - > mod 10 3 - 1 - > q - Meringue:math chriszf$ - +``` +Meringue:math chriszf$ python calculator.py +> + 1 2 +3 +> - 10 5 +5 +> * 2 3 +6 +> / 6 2 +3.000000 +> square 2 +4 +> cube 3 +27 +> pow 2 5 +32 +> mod 10 3 +1 +> q +Meringue:math chriszf$ +``` We have provided a sample arithmetic.py with dummy stubs that do the wrong thing. When you've completed your REPL, copy your completed arithmetic.py from the previous exercise to the current directory and replace our stubs. From 196c9e1c1dce9b38baac8279b77eae6350fdebe1 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Sun, 9 Feb 2014 22:51:54 -0800 Subject: [PATCH 019/135] moved readme to README.md --- Exercise06/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Exercise06/{README => README.md} (100%) diff --git a/Exercise06/README b/Exercise06/README.md similarity index 100% rename from Exercise06/README rename to Exercise06/README.md From e5a3650c91bdbab3b5b43595dd68f4697bec99ae Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Sun, 9 Feb 2014 23:04:22 -0800 Subject: [PATCH 020/135] Update README.md to proper markdown --- Exercise06/README.md | 145 +++++++++++++++++++++---------------------- 1 file changed, 72 insertions(+), 73 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 20f4b18..4936bac 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -6,33 +6,35 @@ Introduction Files can also be iterated line-by-line, using a for loop on the file directly. For example: - twain = open('twain.txt') - for line in twain: +```python +twain = open('twain.txt') +for line in twain: + # Do something +``` +The loop variable ```line``` will store each line of the file in turn. - # Do something - -The loop variable 'line' will store each line of the file in turn. - -Dictionaries can also be iterated entry-by-entry, using the method iteritems(). +Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. For example: - my_dict = {'a': 1, 'b': 2, 'c': 3} - for key, value in my_dict.iteritems(): - print "Key == %r, value == %r" % (key, value) - +```python +my_dict = {'a': 1, 'b': 2, 'c': 3} +for key, value in my_dict.iteritems(): + print "Key == %r, value == %r" % (key, value) +``` Prints: +``` Key == 'a', value == 1 Key == 'b', value == 2 Key == 'c', value == 3 - +``` This introduces two loop variables, 'key' and 'value', that will store the key and value elements of each dictionary entry in turn. Resources: - * http://learnpythonthehardway.org/book/ex39.html - * http://www.learnpython.org/Dictionaries - * http://docs.python.org/library/stdtypes.html#string-methods - * http://docs.python.org/library/stdtypes.html#mapping-types-dict +* http://learnpythonthehardway.org/book/ex39.html +* http://www.learnpython.org/Dictionaries +* http://docs.python.org/library/stdtypes.html#string-methods +* http://docs.python.org/library/stdtypes.html#mapping-types-dict Problem Description ------------------- @@ -42,67 +44,64 @@ line and counts how many times each space-separated word occurs in that file. Your program should then print those counts to the screen. For example: - inputfile.txt: - As I was going to St. Ives - I met a man with seven wives - Every wife had seven sacks - Every sack had seven cats - Every cat had seven kits - Kits, cats, sacks, wives. - How many were going to St. Ives? - - $ python wordcount.py inputfile.txt - seven 4 - Kits, 1 - sack 1 - As 1 - kits 1 - Ives? 1 - How 1 - St. 2 - had 3 - sacks, 1 - to 2 - going 2 - was 1 - cats, 1 - wives 1 - met 1 - Every 3 - with 1 - man 1 - a 1 - wife 1 - I 2 - many 1 - cat 1 - Ives 1 - sacks 1 - wives. 1 - were 1 - cats 1 - +inputfile.txt: +``` +As I was going to St. Ives +I met a man with seven wives +Every wife had seven sacks +Every sack had seven cats +Every cat had seven kits +Kits, cats, sacks, wives. +How many were going to St. Ives? +``` +Example output: +``` +$ python wordcount.py inputfile.txt +seven 4 +Kits, 1 +sack 1 +As 1 +kits 1 +Ives? 1 +How 1 +St. 2 +had 3 +sacks, 1 +to 2 +going 2 +was 1 +cats, 1 +wives 1 +met 1 +Every 3 +with 1 +man 1 +a 1 +wife 1 +I 2 +many 1 +cat 1 +Ives 1 +sacks 1 +wives. 1 +were 1 +cats 1 +``` You may find the following methods useful: - string.split() - string.strip() - dict.get() - dict.iteritems() - +```python +string.split() +string.strip() +dict.get() +dict.iteritems() +``` We have provided a file 'twain.txt' for you to test your code on. Extra Credit - +----------- The output of your program is not as nice as it could be. Try to improve it: - * Some words are counted separately due to punctuation. Remove punctuation - so that they appear as the same word in the output. - - * In the example above, 'Kits' and 'kits' are treated separately because they - have different capitalization. Make all words lowercase so that - capitalization doesn't matter. - - * Sort the output from the highest frequency words to the lowest frequency - words. - - * Sort words having the same frequency alphabetically. +* Some words are counted separately due to punctuation. Remove punctuation so that they appear as the same word in the output. +* In the example above, 'Kits' and 'kits' are treated separately because they have different capitalization. Make all words lowercase so that capitalization doesn't matter. +* Sort the output from the highest frequency words to the lowest frequency words. +* Sort words having the same frequency alphabetically. From 1c7d765bea0fcbc727408a1635cbb461b47158f3 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Sun, 9 Feb 2014 23:06:27 -0800 Subject: [PATCH 021/135] moved README to README.md --- Exercise07/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Exercise07/{README => README.md} (100%) diff --git a/Exercise07/README b/Exercise07/README.md similarity index 100% rename from Exercise07/README rename to Exercise07/README.md From 429ba59d26f51d51eca91138875ab5ef8a0b2bdd Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Sun, 9 Feb 2014 23:15:08 -0800 Subject: [PATCH 022/135] Update README.md --- Exercise07/README.md | 131 +++++++++++++++++++++++-------------------- 1 file changed, 70 insertions(+), 61 deletions(-) diff --git a/Exercise07/README.md b/Exercise07/README.md index c2b3fe6..e990de0 100644 --- a/Exercise07/README.md +++ b/Exercise07/README.md @@ -4,84 +4,93 @@ Exercise 07: Files and dictionaries Introduction -------- Imagine a list as being a numbered sequence of data. - - fish = ["shark", "ray", "halibut", "tuna", "squid"] - +```python +fish = ["shark", "ray", "halibut", "tuna", "squid"] +``` The first element is shark, and you access it by its index number: - print fish[0] - => shark - +``` +print fish[0] +=> shark +``` To access the nth element, its index number is n-1. The fifth element is accessed thusly: - print fish[4] - => squid - +``` +print fish[4] +=> squid +``` What if, instead of a numbered index, we could use a string as an index? - print fish["deep ocean"] - => anglerfish - print fish["shallow river"] - => candiru - +``` +print fish["deep ocean"] +=> anglerfish +print fish["shallow river"] +=> candiru +``` We would then need another way of specifying a list where each element is named. - fish = {"deep ocean": "anglerfish", "amazon river": "candiru", - "lake": "bass", "shallow river": "trout"} +```python +fish = {"deep ocean": "anglerfish", "amazon river": "candiru", "lake": "bass", "shallow river": "trout"} +``` This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. A dictionary is a collection of 'key-value pairs'. The key 'deep ocean' _maps_ to the value 'anglerfish'. Imagine you were writing a program to keep track of user scores in a game. If you only had arrays, you might do something like this: - - names = ["Bob", "Joe", "Jack", "Jane"] - scores = [ 10, 3, 6, 15] - +``` +names = ["Bob", "Joe", "Jack", "Jane"] +scores = [ 10, 3, 6, 15] +``` To find Joe's score, first you'd have to find which position "Joe" is in, then use that position to look up his score. - index_joe = names.index("Joe") - print "Joe's score is %d"%(scores[index_joe]) - => Joe's score is 3 - +``` +index_joe = names.index("Joe") +print "Joe's score is %d" % (scores[index_joe]) +=> Joe's score is 3 +``` This is unwieldy and complicated. With dictionaries, we could instead do the following: - scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} - - print "Joe's score is %d"%(scores['Joe']) - => Joe's score is 3 - +```python +scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} +``` +``` +print "Joe's score is %d" % (scores['Joe']) +=> Joe's score is 3 +``` Dictionaries have a method called 'get' which allows you to have a default value in case a key does not exist beforehand. +``` +scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} - scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} - print scores.get("Bob", 0) # The second argument is the fallback number if the key doesn't exist - => 10 - - print scores.get("Billy", 0) # Billy doesn't exist in the dictionary, so return the fallback instead - => 0 +print scores.get("Bob", 0) # The second argument is the fallback number if the key doesn't exist +=> 10 +print scores.get("Billy", 0) # Billy doesn't exist in the dictionary, so return the fallback instead +=> 0 +``` Resources: - * http://learnpythonthehardway.org/book/ex15.html - * http://learnpythonthehardway.org/book/ex16.html - * http://learnpythonthehardway.org/book/ex17.html - * http://docs.python.org/tutorial/inputoutput.html#methods-of-file-objects - * http://learnpythonthehardway.org/book/ex39.html - * http://docs.python.org/tutorial/datastructures.html#dictionaries - * http://stackoverflow.com/a/3437070 +* http://learnpythonthehardway.org/book/ex15.html +* http://learnpythonthehardway.org/book/ex16.html +* http://learnpythonthehardway.org/book/ex17.html +* http://docs.python.org/tutorial/inputoutput.html#methods-of-file-objects +* http://learnpythonthehardway.org/book/ex39.html +* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://stackoverflow.com/a/3437070 Description ------- -In this directory, you will find a text file, scores.txt, containing a series of local restaurant ratings. Each line looks like this: - - Restaurant Name:Rating - -Your job is to write a program named 'sorted_data.py' reads the file, then spits out the ratings in alphabetical order by restaurant +In this directory, you will find a text file, ```scores.txt```, containing a series of local restaurant ratings. Each line looks like this: +``` +Restaurant Name:Rating +``` +Your job is to write a program named ```'sorted_data.py'``` reads the file, then spits out the ratings in alphabetical order by restaurant Sample output: - Meringue:Exercise07 chriszf$ python sorted_data.py - Restaurant 'Andalu' is rated at 3. - Restaurant "Arinell's" is rated at 4. - Restaurant 'Bay Blend Coffee and Tea' is rated at 3. - Restaurant 'Casa Thai' is rated at 2. - Restaurant 'Charanga' is rated at 3. - Restaurant 'El Toro' is rated at 5. - Restaurant 'Giordano Bros' is rated at 2. - Restaurant "Irma's Pampanga" is rated at 5. - Restaurant 'Little Baobab' is rated at 1. - Restaurant 'Pancho Villa' is rated at 3. - Restaurant 'Taqueria Cancun' is rated at 2. - Restaurant 'Urbun Burger' is rated at 1. - +``` +Meringue:Exercise07 chriszf$ python sorted_data.py +Restaurant 'Andalu' is rated at 3. +Restaurant "Arinell's" is rated at 4. +Restaurant 'Bay Blend Coffee and Tea' is rated at 3. +Restaurant 'Casa Thai' is rated at 2. +Restaurant 'Charanga' is rated at 3. +Restaurant 'El Toro' is rated at 5. +Restaurant 'Giordano Bros' is rated at 2. +Restaurant "Irma's Pampanga" is rated at 5. +Restaurant 'Little Baobab' is rated at 1. +Restaurant 'Pancho Villa' is rated at 3. +Restaurant 'Taqueria Cancun' is rated at 2. +Restaurant 'Urbun Burger' is rated at 1. +``` From 84194484ffe656c173ae27eeb7fb7b51f8d42fc9 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Sun, 9 Feb 2014 23:18:14 -0800 Subject: [PATCH 023/135] Fixed link to learnpython.org --- Exercise06/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 4936bac..3a66a37 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -32,7 +32,7 @@ and value elements of each dictionary entry in turn. Resources: * http://learnpythonthehardway.org/book/ex39.html -* http://www.learnpython.org/Dictionaries +* http://www.learnpython.org/en/Dictionaries * http://docs.python.org/library/stdtypes.html#string-methods * http://docs.python.org/library/stdtypes.html#mapping-types-dict From 32229b795f3fb94afcce2511dd7b42f083cb3400 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Mon, 10 Feb 2014 23:05:12 -0800 Subject: [PATCH 024/135] moving README to README.md --- Exercise08/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Exercise08/{README => README.md} (100%) diff --git a/Exercise08/README b/Exercise08/README.md similarity index 100% rename from Exercise08/README rename to Exercise08/README.md From 1a7c0ec92f6bd878d435f363b5994775c2415490 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Mon, 10 Feb 2014 23:20:59 -0800 Subject: [PATCH 025/135] Update README.md --- Exercise08/README.md | 137 ++++++++++++++++++++++--------------------- 1 file changed, 69 insertions(+), 68 deletions(-) diff --git a/Exercise08/README.md b/Exercise08/README.md index ac021f4..646835b 100644 --- a/Exercise08/README.md +++ b/Exercise08/README.md @@ -4,97 +4,98 @@ Exercise 08: Markov Chains (Hint: the answer is dictionaries) Introduction ------- A Markov chain is a sequence of random variables X1, X2, X3, etc., with the property that the present, past, and future states are independent. Formally, - - Pr(Xn+1 = x|X1 = x1, X2 = x2, ... , Xn = xn) = Pr(Xn+1 = x|Xn = xn) - +``` +Pr(Xn+1 = x|X1 = x1, X2 = x2, ... , Xn = xn) = Pr(Xn+1 = x|Xn = xn) +``` Just kidding, that's a terrible explanation. -Colloquially, Markov chains are a statistical analysis of frequence patterns in some sequence. Consider the following sequence of words: - - Would you, could you in a house - Would you, could you with a mouse - Would you, could you in a box - Would you, could you with a fox - Would you like green eggs and ham? - Would you like them, Sam I Am? - +Colloquially, Markov chains are a statistical analysis of frequency patterns in some sequence. Consider the following sequence of words: +``` +Would you, could you in a house +Would you, could you with a mouse +Would you, could you in a box +Would you, could you with a fox +Would you like green eggs and ham? +Would you like them, Sam I Am? +``` There is a high frequency of repetition here, and if we were trying to generate a new, unique verse to follow this one, we might just analyze the text for the most common words, and randomly choose from them: - - You! Could a box? With you in eggs. - +``` +You! Could a box? With you in eggs. +``` This isn't completely out of place, but it's not exactly 'right' either. Obviously there's more to the pattern. Let's change our analysis to determine the frequencies of word pairs, as opposed to single words: - - Would you - you could - could you - you in - in a - a box. - +``` +Would you +you could +could you +you in +in a +a box. +``` Now, choosing from these pairs produces something slightly better: - - Would you? You could! In a... a box. - +``` +Would you? You could! In a... a box. +``` Again, better, but not great. Let's change our analysis a little bit, and the rules for choosing besides. Instead of word pairs, we produce a list of every word, and the chance that it's followed by the next word in the text: - - would -> you (100%) - you -> could (40%), like (20%), in (20%), with (20%) - could -> you (100%) - like -> green (50%), them (50%) - - ... and so forth ... - +``` +would -> you (100%) +you -> could (40%), like (20%), in (20%), with (20%) +could -> you (100%) +like -> green (50%), them (50%) + +... and so forth ... +``` Instead of just choosing a random pair, we start by choosing a random word on the left, and choose a word on the right to follow according to the weight. After choosing a word from the right, you can repeat the process, using the word from the right and looking it up on the left, repeating ad nauseum. - - Would you in a fox? Could you like green eggs. - +``` +Would you in a fox? Could you like green eggs. +``` We can improve things even further by using word pairs on the left of the arrow, instead of single words: - - would you -> could (66%), like (33%) - you could -> you (100%) - could you -> in (50%), with (50%) - you in -> a (100%) - you with -> a (100%) - in a -> house (50%), box (50%) - with a -> fox (50%), mouse (50%) - you like -> them (50%), green (50%) - +``` +would you -> could (66%), like (33%) +you could -> you (100%) +could you -> in (50%), with (50%) +you in -> a (100%) +you with -> a (100%) +in a -> house (50%), box (50%) +with a -> fox (50%), mouse (50%) +you like -> them (50%), green (50%) +``` Following the same process, again, choosing a word pair from the left, then randomly choosing a successor from the right, according to the weight: - - You could. You, with a fox! Would you like them? - +``` +You could. You, with a fox! Would you like them? +``` The longer the sequence of words to the left of the arrow, the closer it becomes to the original text, as well as valid English, because there are fewer and fewer random successors. Here, we use bigrams (word pairs) and a successor, but we could use trigrams or n-grams (sequences of n words). The longer the n-gram, the closer you get to the source corpus. Let's look at this again, using Britney Spears' hit song, Womanizer, as the source corpus. - - womanizer womanizer -> womanizer (100%) - +``` +womanizer womanizer -> womanizer (100%) +``` And the resultant text: - - WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER - WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER - WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER - +``` +WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER +WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER +WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER WOMANIZER +``` If only there were some data structure we could use to contain all of these chains which MAP word pairs to some LIST of values... fine, you've twisted my arm. - - { ("womanizer", "womanizer"): ["womanizer"] } - -Notice here, we're explicitly nesting data structures, using a tuple as a key in a dictionary, and a list as the value. +``` +{ ("womanizer", "womanizer"): ["womanizer"] } +``` +**Notice here, we're explicitly nesting data structures, using a tuple as a key in a dictionary, and a list as the value.** +*Emphasis added to see if you've read this far because this part might be important* Description ----------- You are to produce a random text generator using markov chains. We've provided a very bare skeleton for you to start your program from. Up until now, we've been writing our programs in a very freeform manner, just writing code at the 'top level', the same place where we put our global variables. This is generally considered bad form. Code should always be contained in functions or class methods wherever possible. -The skeleton program we've provided has a recommended set of functions to start with, including a very odd if statement at the bottom. You can ignore how this statement works for now, all it does is it makes sure your program starts inside the main() function. +The skeleton program we've provided has a recommended set of functions to start with, including a very odd if statement at the bottom. You can ignore how this statement works for now, all it does is it makes sure your program starts inside the ```main()``` function. The program should accept a filename from the command line, and a sample run should look similar to the following: - - meringue:Exercise08 chriszf$ python markov.py shakespeare.txt - Forsooth, or somesuch. - -You can use any text as an input corpus, you might try (Project Gutenberg)[http://www.gutenberg.org/] for some inspiration. +``` +meringue:Exercise08 chriszf$ python markov.py shakespeare.txt +Forsooth, or somesuch. +``` +You can use any text as an input corpus, you might try [Project Gutenberg](http://www.gutenberg.org/) for some inspiration. Extra Credit ------------ From cd529e17a0826b40e3f151e152fdb8b711e48b1b Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 13 Feb 2014 09:34:18 -0800 Subject: [PATCH 026/135] Update README --- Exercise11/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise11/README b/Exercise11/README index 4a8655d..d25deaf 100644 --- a/Exercise11/README +++ b/Exercise11/README @@ -1,4 +1,4 @@ -Exercise 14: Regular Expressions: ain't nothing regular about them +Exercise 11: Regular Expressions: ain't nothing regular about them ======= Introduction From e4092126d7b499d47afd5c622b18320491a43222 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Thu, 13 Feb 2014 10:28:12 -0800 Subject: [PATCH 027/135] moving README to README.md --- Exercise11/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Exercise11/{README => README.md} (100%) diff --git a/Exercise11/README b/Exercise11/README.md similarity index 100% rename from Exercise11/README rename to Exercise11/README.md From 9a58f6e134e864525082cb6eb01497e42bca4b0b Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 13 Feb 2014 10:45:29 -0800 Subject: [PATCH 028/135] Added resources and fun. --- Exercise11/README.md | 67 +++++++++++++++++++++++++------------------- 1 file changed, 38 insertions(+), 29 deletions(-) diff --git a/Exercise11/README.md b/Exercise11/README.md index d25deaf..574877c 100644 --- a/Exercise11/README.md +++ b/Exercise11/README.md @@ -7,34 +7,34 @@ The term regular expression comes from a mathematical concept called regular sets long lost to history. These days, all you need to know is that regular expressions are a language that lets you do complex text searches. It's easier to start with a demonstration: - - The pattern "aard" will match (and find) all words in a piece of text that - contains that exact letter sequence. If you run this pattern on a - dictionary, you get: - => aardwolf - => aardvark - +``` +The pattern "aard" will match (and find) all words in a piece of text that +contains that exact letter sequence. If you run this pattern on a +dictionary, you get: + => aardwolf + => aardvark +``` Regular expressions give you wildcards, allowing you to do the following search: - - The pattern "h.t" will find all words starting with "h", followed by any - single character (or digit), followed by the letter "t": - => hit - => hot - => hat - => hut - +```` +The pattern "h.t" will find all words starting with "h", followed by any +single character (or digit), followed by the letter "t": + => hit + => hot + => hat + => hut +``` You can also constrain your wildcards to match specific letters: - - The pattern "[ghm][aeiou][aeiou]se" will match any word that begins with a - "g", "h", or "m", followed by any single vowel, followed by another vowel, - followed by the letters "se". - => geese - => goose - => mouse - => moose - => house - => guise - +``` +The pattern "[ghm][aeiou][aeiou]se" will match any word that begins with a +"g", "h", or "m", followed by any single vowel, followed by another vowel, +followed by the letters "se". + => geese + => goose + => mouse + => moose + => house + => guise +``` The most basic use of regular expression is as a plain text search, like you might find in a word processor, but regex (as it is called) is a powerful language that can do much more due to the ability to pattern match. Possibly @@ -47,7 +47,7 @@ email addresses in an html file. Description ------- -Go through the exercises on RegexOne.com. +Go through the exercises on [RegexOne](RegexOne.com). It will sometimes let you pass without actually satisfying the conditions, so make sure you're as thorough as possible. If you complete them all, write regular expressions to find the following patterns. Use egrep on the included word file. @@ -61,7 +61,16 @@ patterns. Use egrep on the included word file. 6. All words that end in either 'vark' or 'wolf' (8 words) Concepts required: - * Regular expressions +* Regular expressions Resources: - * http://regexone.com/ +* http://regexone.com/ +* http://docs.python.org/2/library/re.html +* http://docs.python.org/2/howto/regex.html +* http://regex101.com/ (for testing regular expressions in multiple languages) +* https://pythex.org/ (for testing in Python) + +Other fun RegEx things to play with: +* http://regexcrossword.com/ (Crosswords with RegEx) +* http://regex.alf.nu/ (Regex Golf) + From 64185a1b29c73ba11981132227aa2b0598dcd5ce Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 13 Feb 2014 11:04:21 -0800 Subject: [PATCH 029/135] Fixed link --- Exercise11/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise11/README.md b/Exercise11/README.md index 574877c..72e9334 100644 --- a/Exercise11/README.md +++ b/Exercise11/README.md @@ -47,7 +47,7 @@ email addresses in an html file. Description ------- -Go through the exercises on [RegexOne](RegexOne.com). It will sometimes let you pass without actually satisfying the conditions, so make sure you're as thorough as possible. +Go through the exercises on [RegexOne](http://RegexOne.com). It will sometimes let you pass without actually satisfying the conditions, so make sure you're as thorough as possible. If you complete them all, write regular expressions to find the following patterns. Use egrep on the included word file. From 99ef72582a3f0b457c2839107a09124971777d66 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 13 Feb 2014 11:55:30 -0800 Subject: [PATCH 030/135] Adding wc --- Exercise11/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise11/README.md b/Exercise11/README.md index 72e9334..7f6161b 100644 --- a/Exercise11/README.md +++ b/Exercise11/README.md @@ -50,7 +50,7 @@ Description Go through the exercises on [RegexOne](http://RegexOne.com). It will sometimes let you pass without actually satisfying the conditions, so make sure you're as thorough as possible. If you complete them all, write regular expressions to find the following -patterns. Use egrep on the included word file. +patterns. Use egrep on the included word file. Pipe your output (using |) to the 'wc' command to get a line count. From the file 'words' 1. All the words that begin with the letter a, independent of case (17096 words) From bf7c12e3863785abd03f6d59541eab82551032af Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Thu, 13 Feb 2014 13:46:57 -0800 Subject: [PATCH 031/135] moved README to README.md --- Exercise09/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Exercise09/{README => README.md} (100%) diff --git a/Exercise09/README b/Exercise09/README.md similarity index 100% rename from Exercise09/README rename to Exercise09/README.md From 8e3dd608981318b28dcee9769158abcf5452808e Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 13 Feb 2014 13:51:14 -0800 Subject: [PATCH 032/135] Update README.md --- Exercise09/README.md | 104 +++++++++++++++++++++---------------------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/Exercise09/README.md b/Exercise09/README.md index 6170704..c2880e0 100644 --- a/Exercise09/README.md +++ b/Exercise09/README.md @@ -6,21 +6,21 @@ Introduction Remember when you used to point a video camera at the screen that was displaying the video feed, or tried to put two mirrors face-to-face and peer into infinity? Yeah, recursion is kind of like that. Take the following function: - - def func_a(): - print "Function a is the haps right now." - func_b() - +``` +def func_a(): + print "Function a is the haps right now." + func_b() +``` So far, nothing out of the ordinary. It is perfectly permissible to call func_b from func_a. But, in an M. Night Shyamalan-worthy twist, look at the definition of func_b -- - - def func_b(): - print "FUNCTION B IN THE HIZOUSE." - func_a() - +``` +def func_b(): + print "FUNCTION B IN THE HIZOUSE." + func_a() +``` Uh-oh. Running this beastly combination of functions together produces the following output (assuming we start from func_a) - +``` Function a is the haps right now. FUNCTION B IN THE HIZOUSE. Function a is the haps right now. @@ -31,58 +31,58 @@ Function a is the haps right now. FUNCTION B IN THE HIZOUSE. Function a is the haps right now. FUNCTION B IN THE HIZOUSE. - +``` ... forever. Actually, eventually the computer explodes in a fiery blaze. Better stop your program. Let's take the idea one step further. If func_a can call func_b which just ends up calling func_a, what happens if we eliminate the middle man? - - def func_c(): - print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" - func_c() - +``` +def func_c(): + print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" + func_c() +``` This is a recursive call. Any function that calls itself is said to be recursive. For the full definition of recursion, look up recursion in a dictionary, but the important part here is that the function calls itself. While you were busy panicking, trying to stop the computer from exploding, you may have noticed that a side effect of recursion is that it causes a chunk of code to repeat. As it stands, func_c is effectively an infinite loop. With slight changes, we can harness the power of recursion for evil. I mean good. We can harness it for good. I mean loops. Consider the following scenario. I have two functions, func_d, and func_e. - - def func_d(): - func_e() - print "I'm done." - - def func_e(): - print "Sup." - +``` +def func_d(): + func_e() + print "I'm done." + +def func_e(): + print "Sup." +``` Neither function is recursive. At this point, it's helpful to imagine that the call to func_e is _nested_ inside func_d. If we call func_d, the text "I'm done" won't print until after func_e has been called and completed. The same idea applies to our recursive function: - - def func_c(): - print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" - func_c() - +``` +def func_c(): + print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" + func_c() +``` If we call func_c, it won't complete until after it calls and completes.. func_c, which never completes until it calls func_c and.. arrrrgh. Func_c is nested inside func_c which is nested inside func_c and it never stops. Okay, let's try a different tack. What if we randomly forced func_c to end? - - def func_c(): - if random.choice([True, False]): - return - print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" - func_c() - +``` +def func_c(): + if random.choice([True, False]): + return + print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" + func_c() +``` In this case, each call to func_c might randomly end, allowing the enclosing call to func_c to end, allowing the enclosing one to end, until we finally reach the outer enclosure. Now we're getting somewhere. Let's make one more change. Instead of randomly ending, let's control when we end. In this case, we'll end when the argument to func_c is 0. - - def func_c(n): - if n == 0: - return - print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" - func_c(n) - +``` +def func_c(n): + if n == 0: + return + print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" + func_c(n) +``` So now func_c takes an argument, n. And if n is 0, it stops. If it's not 0, it repeats. So far, things are still not better. We have some control, the function either repeats forever, or doesn't. Let's look at the last line. If the function repeats while n is 0, what if, when we called func_c, we inched n towards 0, like so. - - def func_c(n): - if n == 0: - return - print n - func_c(n-1) - +``` +def func_c(n): + if n == 0: + return + print n + func_c(n-1) +``` If you run this, you'll find that this function counts down from n to 1, printing each number, then stopping. This is a (semi) useful recursive function. Without looping, we can repeat a piece of code and we can control how many times it repeats. There are three rules to writing a recursive function: 1. The recursive function must have a base case where it decides to end, here, it's when n reaches 0. @@ -93,7 +93,7 @@ One note about base cases, consider the base case to be the most degenerate inpu If you need some extra reading, refer to this link: - * http://interactivepython.org/runestone/static/pythonds/Recursion/recursionsimple.html +* http://interactivepython.org/runestone/static/pythonds/Recursion/recursionsimple.html Description ------- From 583b11bb3ebb938859d7c7c834fe9ebbb2aed5f8 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Fri, 14 Feb 2014 19:11:40 -0800 Subject: [PATCH 033/135] Adding extra descriptions and test cases for ex9 --- Exercise09/recursion.py | 56 +++++++++++++++++++++----- Exercise09/test_recursion.py | 78 ++++++++++++++++++++++++++++++++++++ 2 files changed, 125 insertions(+), 9 deletions(-) create mode 100644 Exercise09/test_recursion.py diff --git a/Exercise09/recursion.py b/Exercise09/recursion.py index ed61e92..6b8eea0 100644 --- a/Exercise09/recursion.py +++ b/Exercise09/recursion.py @@ -1,4 +1,28 @@ -# Multiply all the elements in a list +""" +Exercise 9: Recursion +--------------------- + +The Evil Wizard Malloc has attacked you and taken away your ability +to use loops! The only way you can defeat him is by fighting back +using the power of recursion! + +Below are function stubs for a variety of functions that are able +to be solved recursively. For this exercise, you are not allowed +to use: + + * for loops + * "while" loops + * You may use list slicing, but you may not use the "reverse" slice + (e.g, list[::-1]) + * Any built-in function that achieves the same result + +You can use the included test_recursion.py script to test that your +functions work (and if you need hints for what the expected input/output +should be). + +""" + +# Multiply all the elements in a list using recursion def multiply_list(l): return 1 @@ -6,29 +30,32 @@ def multiply_list(l): def factorial(n): return 1 -# Count the number of elements in the list l +# Count the number of elements in the list l without using loops or the len() function def count_list(l): - return + return 0 -# Sum all of the elements in a list +# Sum all of the elements in a list without using loops or the sum() function def sum_list(l): return 0 - -# Reverse a list without slicing or loops +# Reverse a list recursively without loops, the reverse() function or list[::-1] def reverse(l): return [] # Fibonacci returns the nth fibonacci number. The nth fibonacci number is # defined as fib(n) = fib(n-1) + fib(n-2) def fibonacci(n): - pass + return 1 # Finds the item i in the list l.... RECURSIVELY +# Return the item if it is in the list or None if not found. def find(l, i): return None # Determines if a string is a palindrome +# A palindrome is any string that is the same forwards and backwords. +# (e.g. radar, racecar, aibohphobia) +# Solve recursively, def palindrome(some_string): return False @@ -37,6 +64,17 @@ def fold_paper(width, height, folds): return (0, 0) # Count up -# Print all the numbers from 0 to target +# Print all the numbers from 0 to target. +# Use n to keep track of where you're at +# ex, to count from 1 - 100, call count_up(100, 1) +# +# Note: we don't have a test case for this one, so just run this +# script directly +# +# Note #2: We're printing out the numbers, so this script does not +# need to return anything! def count_up(target, n): - return + pass + +if __name__ == "__main__": + count_up(100, 0) diff --git a/Exercise09/test_recursion.py b/Exercise09/test_recursion.py new file mode 100644 index 0000000..1b55477 --- /dev/null +++ b/Exercise09/test_recursion.py @@ -0,0 +1,78 @@ +import unittest +import math + +from recursion import * + +class TestRecursionOperations(unittest.TestCase): + + def setUp(self): + self.numbers1 = [5, 2, 1, 4, 3, 6] + self.numbers2 = [5, 24, 48, 88] + self.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', + 'Sep', 'Oct', 'Nov', 'Dec'] + + + ### Tests for recursion.py ### + def test_multiply_list(self): + self.assertEqual(multiply_list(self.numbers1), 720) + self.assertEqual(multiply_list(self.numbers2), 506880) + + def test_factorial(self): + self.assertEqual(factorial(1), math.factorial(1)) + self.assertEqual(factorial(2), math.factorial(2)) + self.assertEqual(factorial(3), math.factorial(3)) + self.assertEqual(factorial(4), math.factorial(4)) + self.assertEqual(factorial(5), math.factorial(5)) + self.assertEqual(factorial(10), math.factorial(10)) + self.assertEqual(factorial(20), math.factorial(20)) + + def test_count_list(self): + self.assertEqual(count_list(self.numbers1), len(self.numbers1)) + self.assertEqual(count_list(self.numbers2), len(self.numbers2)) + self.assertEqual(count_list(self.months), len(self.months)) + + def test_sum_list(self): + self.assertEqual(sum_list(self.numbers1), sum(self.numbers1)) + self.assertEqual(sum_list(self.numbers2), sum(self.numbers2)) + + def test_reverse_list(self): + self.assertEqual(reverse(self.numbers1), self.numbers1[-1]) + self.assertEqual(reverse(self.numbers2), self.numbers2[-1]) + self.assertEqual(reverse(self.months), self.months[-1]) + + def test_fibonacci(self): + self.assertEqual(fibonacci(1), 1) + self.assertEqual(fibonacci(2), 1) + self.assertEqual(fibonacci(3), 2) + self.assertEqual(fibonacci(4), 3) + self.assertEqual(fibonacci(5), 5) + self.assertEqual(fibonacci(6), 8) + self.assertEqual(fibonacci(7), 13) + self.assertEqual(fibonacci(8), 21) + self.assertEqual(fibonacci(9), 34) + + def test_find(self): + self.assertEqual(find(self.numbers1, 4), 4) + self.assertEqual(find(self.numbers1, 5), 5) + self.assertEqual(find(self.months, "Jan"), "Jan") + self.assertEqual(find(self.months, "Feb"), "Feb") + self.assertEqual(find(self.months, "Dec"), "Dec") + self.assertEqual(find(self.months, "Jul"), "Jul") + self.assertEqual(find(self.months, "Hex"), None) + + def test_palindrome(self): + self.assertTrue(palindrome("radar")) + self.assertTrue(palindrome("racecar")) + self.assertTrue(palindrome("poop")) + self.assertFalse(palindrome("palindrome")) + self.assertFalse(palindrome("abcdecba")) + + def test_fold_paper(self): + self.assertEqual(fold_paper(10, 10, 1), (10/2, 10/2)) + self.assertEqual(fold_paper(10, 10, 2), (10/2/2, 10/2/2)) + self.assertEqual(fold_paper(10, 10, 3), (10/2/2/2, 10/2/2/2)) + self.assertEqual(fold_paper(10, 10, 4), (10/2/2/2/2, 10/2/2/2/2)) + self.assertEqual(fold_paper(10, 10, 5), (10/2/2/2/2/2, 10/2/2/2/2/2)) + +if __name__ == '__main__': + unittest.main() From 56081bba8c635b3d392af30209011c99758b7865 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Sun, 16 Feb 2014 08:28:57 -0800 Subject: [PATCH 034/135] Fixing tests for fold_paper --- Exercise09/recursion.py | 4 +++- Exercise09/test_recursion.py | 14 +++++++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Exercise09/recursion.py b/Exercise09/recursion.py index 6b8eea0..318af75 100644 --- a/Exercise09/recursion.py +++ b/Exercise09/recursion.py @@ -59,7 +59,9 @@ def find(l, i): def palindrome(some_string): return False -# Given the width and height of a sheet of paper, and the number of times to fold it, return the final dimensions of the sheet as a tuple. Assume that you always fold in half along the longest edge of the sheet. +# Given the width and height of a sheet of paper, and the number of times to fold it, +# return the final dimensions of the sheet as a tuple. +# NOTE: Assume that you always fold in half along the longest edge of the sheet. def fold_paper(width, height, folds): return (0, 0) diff --git a/Exercise09/test_recursion.py b/Exercise09/test_recursion.py index 1b55477..0acd156 100644 --- a/Exercise09/test_recursion.py +++ b/Exercise09/test_recursion.py @@ -68,11 +68,15 @@ def test_palindrome(self): self.assertFalse(palindrome("abcdecba")) def test_fold_paper(self): - self.assertEqual(fold_paper(10, 10, 1), (10/2, 10/2)) - self.assertEqual(fold_paper(10, 10, 2), (10/2/2, 10/2/2)) - self.assertEqual(fold_paper(10, 10, 3), (10/2/2/2, 10/2/2/2)) - self.assertEqual(fold_paper(10, 10, 4), (10/2/2/2/2, 10/2/2/2/2)) - self.assertEqual(fold_paper(10, 10, 5), (10/2/2/2/2/2, 10/2/2/2/2/2)) + self.assertEqual(fold_paper(8.5, 11, 1), (8.5, 11.0/2)) + self.assertEqual(fold_paper(8.5, 11, 2), (8.5/2, 11.0/2)) + self.assertEqual(fold_paper(8.5, 11, 3), (8.5/2, 11.0/2/2)) + self.assertEqual(fold_paper(8.5, 11, 4), (8.5/2/2, 11.0/2/2)) + self.assertEqual(fold_paper(8.5, 11, 5), (8.5/2/2, 11.0/2/2/2)) + + self.assertEqual(fold_paper(10, 10, 2), (10.0/2, 10.0/2)) + self.assertEqual(fold_paper(10, 10, 4), (10.0/2/2, 10.0/2/2)) + if __name__ == '__main__': unittest.main() From 99fe07f9b04a6a63af4791bb40465549cfba1602 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Mon, 17 Feb 2014 16:38:36 -0800 Subject: [PATCH 035/135] Fixing test_reverse --- Exercise09/test_recursion.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Exercise09/test_recursion.py b/Exercise09/test_recursion.py index 0acd156..96f40d5 100644 --- a/Exercise09/test_recursion.py +++ b/Exercise09/test_recursion.py @@ -36,9 +36,9 @@ def test_sum_list(self): self.assertEqual(sum_list(self.numbers2), sum(self.numbers2)) def test_reverse_list(self): - self.assertEqual(reverse(self.numbers1), self.numbers1[-1]) - self.assertEqual(reverse(self.numbers2), self.numbers2[-1]) - self.assertEqual(reverse(self.months), self.months[-1]) + self.assertEqual(reverse(self.numbers1), self.numbers1[::-1]) + self.assertEqual(reverse(self.numbers2), self.numbers2[::-1]) + self.assertEqual(reverse(self.months), self.months[::-1]) def test_fibonacci(self): self.assertEqual(fibonacci(1), 1) From f2ef476a902e0f8883da66c1998cd8edfed70bec Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 15 May 2014 10:52:50 -0700 Subject: [PATCH 036/135] Swapping Ex06 & Ex07 --- {Exercise07 => Exercise06}/HINTS | 0 Exercise06/README.md | 169 ++++++++++++-------------- {Exercise07 => Exercise06}/scores.txt | 0 Exercise07/README.md | 169 ++++++++++++++------------ {Exercise06 => Exercise07}/twain.txt | 0 5 files changed, 169 insertions(+), 169 deletions(-) rename {Exercise07 => Exercise06}/HINTS (100%) rename {Exercise07 => Exercise06}/scores.txt (100%) rename {Exercise06 => Exercise07}/twain.txt (100%) diff --git a/Exercise07/HINTS b/Exercise06/HINTS similarity index 100% rename from Exercise07/HINTS rename to Exercise06/HINTS diff --git a/Exercise06/README.md b/Exercise06/README.md index 3a66a37..23b7c9d 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -1,107 +1,96 @@ -Exercise 6: Files and dicts -============================ +Exercise 06: Files and dictionaries +======= Introduction ------------- -Files can also be iterated line-by-line, using a for loop on the file directly. - -For example: +-------- +Imagine a list as being a numbered sequence of data. +```python +fish = ["shark", "ray", "halibut", "tuna", "squid"] +``` +The first element is shark, and you access it by its index number: +``` +print fish[0] +=> shark +``` +To access the nth element, its index number is n-1. The fifth element is accessed thusly: +``` +print fish[4] +=> squid +``` +What if, instead of a numbered index, we could use a string as an index? +``` +print fish["deep ocean"] +=> anglerfish +print fish["shallow river"] +=> candiru +``` +We would then need another way of specifying a list where each element is named. ```python -twain = open('twain.txt') -for line in twain: - # Do something +fish = {"deep ocean": "anglerfish", "amazon river": "candiru", "lake": "bass", "shallow river": "trout"} ``` -The loop variable ```line``` will store each line of the file in turn. -Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. +This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. A dictionary is a collection of 'key-value pairs'. The key 'deep ocean' _maps_ to the value 'anglerfish'. -For example: +Imagine you were writing a program to keep track of user scores in a game. If you only had arrays, you might do something like this: +``` +names = ["Bob", "Joe", "Jack", "Jane"] +scores = [ 10, 3, 6, 15] +``` +To find Joe's score, first you'd have to find which position "Joe" is in, then use that position to look up his score. +``` +index_joe = names.index("Joe") +print "Joe's score is %d" % (scores[index_joe]) +=> Joe's score is 3 +``` +This is unwieldy and complicated. With dictionaries, we could instead do the following: ```python -my_dict = {'a': 1, 'b': 2, 'c': 3} -for key, value in my_dict.iteritems(): - print "Key == %r, value == %r" % (key, value) +scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} +``` ``` -Prints: +print "Joe's score is %d" % (scores['Joe']) +=> Joe's score is 3 ``` -Key == 'a', value == 1 -Key == 'b', value == 2 -Key == 'c', value == 3 +Dictionaries have a method called 'get' which allows you to have a default value in case a key does not exist beforehand. ``` -This introduces two loop variables, 'key' and 'value', that will store the key -and value elements of each dictionary entry in turn. +scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} + +print scores.get("Bob", 0) # The second argument is the fallback number if the key doesn't exist +=> 10 +print scores.get("Billy", 0) # Billy doesn't exist in the dictionary, so return the fallback instead +=> 0 +``` Resources: +* http://learnpythonthehardway.org/book/ex15.html +* http://learnpythonthehardway.org/book/ex16.html +* http://learnpythonthehardway.org/book/ex17.html +* http://docs.python.org/tutorial/inputoutput.html#methods-of-file-objects * http://learnpythonthehardway.org/book/ex39.html -* http://www.learnpython.org/en/Dictionaries -* http://docs.python.org/library/stdtypes.html#string-methods -* http://docs.python.org/library/stdtypes.html#mapping-types-dict - -Problem Description -------------------- +* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://stackoverflow.com/a/3437070 -Write a program, wordcount.py, that opens a file named on the command -line and counts how many times each space-separated word occurs in -that file. Your program should then print those counts to the -screen. For example: -inputfile.txt: -``` -As I was going to St. Ives -I met a man with seven wives -Every wife had seven sacks -Every sack had seven cats -Every cat had seven kits -Kits, cats, sacks, wives. -How many were going to St. Ives? -``` -Example output: -``` -$ python wordcount.py inputfile.txt -seven 4 -Kits, 1 -sack 1 -As 1 -kits 1 -Ives? 1 -How 1 -St. 2 -had 3 -sacks, 1 -to 2 -going 2 -was 1 -cats, 1 -wives 1 -met 1 -Every 3 -with 1 -man 1 -a 1 -wife 1 -I 2 -many 1 -cat 1 -Ives 1 -sacks 1 -wives. 1 -were 1 -cats 1 -``` -You may find the following methods useful: -```python -string.split() -string.strip() -dict.get() -dict.iteritems() +Description +------- +In this directory, you will find a text file, ```scores.txt```, containing a series of local restaurant ratings. Each line looks like this: ``` -We have provided a file 'twain.txt' for you to test your code on. - -Extra Credit ------------ -The output of your program is not as nice as it could be. Try to improve it: - -* Some words are counted separately due to punctuation. Remove punctuation so that they appear as the same word in the output. -* In the example above, 'Kits' and 'kits' are treated separately because they have different capitalization. Make all words lowercase so that capitalization doesn't matter. -* Sort the output from the highest frequency words to the lowest frequency words. -* Sort words having the same frequency alphabetically. +Restaurant Name:Rating +``` +Your job is to write a program named ```'sorted_data.py'``` reads the file, then spits out the ratings in alphabetical order by restaurant +Sample output: +``` +Meringue:Exercise07 chriszf$ python sorted_data.py +Restaurant 'Andalu' is rated at 3. +Restaurant "Arinell's" is rated at 4. +Restaurant 'Bay Blend Coffee and Tea' is rated at 3. +Restaurant 'Casa Thai' is rated at 2. +Restaurant 'Charanga' is rated at 3. +Restaurant 'El Toro' is rated at 5. +Restaurant 'Giordano Bros' is rated at 2. +Restaurant "Irma's Pampanga" is rated at 5. +Restaurant 'Little Baobab' is rated at 1. +Restaurant 'Pancho Villa' is rated at 3. +Restaurant 'Taqueria Cancun' is rated at 2. +Restaurant 'Urbun Burger' is rated at 1. +``` diff --git a/Exercise07/scores.txt b/Exercise06/scores.txt similarity index 100% rename from Exercise07/scores.txt rename to Exercise06/scores.txt diff --git a/Exercise07/README.md b/Exercise07/README.md index e990de0..786f80a 100644 --- a/Exercise07/README.md +++ b/Exercise07/README.md @@ -1,96 +1,107 @@ -Exercise 07: Files and dictionaries -======= +Exercise 7: Files and dicts +============================ Introduction --------- -Imagine a list as being a numbered sequence of data. -```python -fish = ["shark", "ray", "halibut", "tuna", "squid"] -``` -The first element is shark, and you access it by its index number: -``` -print fish[0] -=> shark -``` -To access the nth element, its index number is n-1. The fifth element is accessed thusly: -``` -print fish[4] -=> squid -``` -What if, instead of a numbered index, we could use a string as an index? -``` -print fish["deep ocean"] -=> anglerfish -print fish["shallow river"] -=> candiru -``` -We would then need another way of specifying a list where each element is named. +------------ +Files can also be iterated line-by-line, using a for loop on the file directly. + +For example: ```python -fish = {"deep ocean": "anglerfish", "amazon river": "candiru", "lake": "bass", "shallow river": "trout"} +twain = open('twain.txt') +for line in twain: + # Do something ``` +The loop variable ```line``` will store each line of the file in turn. -This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. A dictionary is a collection of 'key-value pairs'. The key 'deep ocean' _maps_ to the value 'anglerfish'. +Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. -Imagine you were writing a program to keep track of user scores in a game. If you only had arrays, you might do something like this: -``` -names = ["Bob", "Joe", "Jack", "Jane"] -scores = [ 10, 3, 6, 15] -``` -To find Joe's score, first you'd have to find which position "Joe" is in, then use that position to look up his score. -``` -index_joe = names.index("Joe") -print "Joe's score is %d" % (scores[index_joe]) -=> Joe's score is 3 -``` -This is unwieldy and complicated. With dictionaries, we could instead do the following: +For example: ```python -scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} -``` +my_dict = {'a': 1, 'b': 2, 'c': 3} +for key, value in my_dict.iteritems(): + print "Key == %r, value == %r" % (key, value) ``` -print "Joe's score is %d" % (scores['Joe']) -=> Joe's score is 3 +Prints: ``` -Dictionaries have a method called 'get' which allows you to have a default value in case a key does not exist beforehand. +Key == 'a', value == 1 +Key == 'b', value == 2 +Key == 'c', value == 3 ``` -scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} - -print scores.get("Bob", 0) # The second argument is the fallback number if the key doesn't exist -=> 10 +This introduces two loop variables, 'key' and 'value', that will store the key +and value elements of each dictionary entry in turn. -print scores.get("Billy", 0) # Billy doesn't exist in the dictionary, so return the fallback instead -=> 0 -``` Resources: -* http://learnpythonthehardway.org/book/ex15.html -* http://learnpythonthehardway.org/book/ex16.html -* http://learnpythonthehardway.org/book/ex17.html -* http://docs.python.org/tutorial/inputoutput.html#methods-of-file-objects * http://learnpythonthehardway.org/book/ex39.html -* http://docs.python.org/tutorial/datastructures.html#dictionaries -* http://stackoverflow.com/a/3437070 +* http://www.learnpython.org/en/Dictionaries +* http://docs.python.org/library/stdtypes.html#string-methods +* http://docs.python.org/library/stdtypes.html#mapping-types-dict +Problem Description +------------------- -Description -------- -In this directory, you will find a text file, ```scores.txt```, containing a series of local restaurant ratings. Each line looks like this: -``` -Restaurant Name:Rating -``` -Your job is to write a program named ```'sorted_data.py'``` reads the file, then spits out the ratings in alphabetical order by restaurant +Write a program, wordcount.py, that opens a file named on the command +line and counts how many times each space-separated word occurs in +that file. Your program should then print those counts to the +screen. For example: -Sample output: -``` -Meringue:Exercise07 chriszf$ python sorted_data.py -Restaurant 'Andalu' is rated at 3. -Restaurant "Arinell's" is rated at 4. -Restaurant 'Bay Blend Coffee and Tea' is rated at 3. -Restaurant 'Casa Thai' is rated at 2. -Restaurant 'Charanga' is rated at 3. -Restaurant 'El Toro' is rated at 5. -Restaurant 'Giordano Bros' is rated at 2. -Restaurant "Irma's Pampanga" is rated at 5. -Restaurant 'Little Baobab' is rated at 1. -Restaurant 'Pancho Villa' is rated at 3. -Restaurant 'Taqueria Cancun' is rated at 2. -Restaurant 'Urbun Burger' is rated at 1. +inputfile.txt: +``` +As I was going to St. Ives +I met a man with seven wives +Every wife had seven sacks +Every sack had seven cats +Every cat had seven kits +Kits, cats, sacks, wives. +How many were going to St. Ives? +``` +Example output: +``` +$ python wordcount.py inputfile.txt +seven 4 +Kits, 1 +sack 1 +As 1 +kits 1 +Ives? 1 +How 1 +St. 2 +had 3 +sacks, 1 +to 2 +going 2 +was 1 +cats, 1 +wives 1 +met 1 +Every 3 +with 1 +man 1 +a 1 +wife 1 +I 2 +many 1 +cat 1 +Ives 1 +sacks 1 +wives. 1 +were 1 +cats 1 +``` +You may find the following methods useful: +```python +string.split() +string.strip() +dict.get() +dict.iteritems() ``` +We have provided a file 'twain.txt' for you to test your code on. + +Extra Credit +----------- +The output of your program is not as nice as it could be. Try to improve it: + +* Some words are counted separately due to punctuation. Remove punctuation so that they appear as the same word in the output. +* In the example above, 'Kits' and 'kits' are treated separately because they have different capitalization. Make all words lowercase so that capitalization doesn't matter. +* Sort the output from the highest frequency words to the lowest frequency words. +* Sort words having the same frequency alphabetically. + diff --git a/Exercise06/twain.txt b/Exercise07/twain.txt similarity index 100% rename from Exercise06/twain.txt rename to Exercise07/twain.txt From 3462961db1ac81d0591ad282264e7537f17c37e3 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 15 May 2014 11:04:53 -0700 Subject: [PATCH 037/135] adding calculator stub --- Exercise03/calculator.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Exercise03/calculator.py diff --git a/Exercise03/calculator.py b/Exercise03/calculator.py new file mode 100644 index 0000000..d04982f --- /dev/null +++ b/Exercise03/calculator.py @@ -0,0 +1,15 @@ +""" +calculator.py + +Using our arithmetic.py file from Exercise02, create the +calculator program yourself in this file. +""" + + +def main(): + # Your code goes here + pass + + +if __name__ == '__main__': + main() From a20d6eda0c213651fa08114e9517bf24f1934934 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 15 May 2014 11:38:06 -0700 Subject: [PATCH 038/135] removing old stuff. adding whiteboarding --- Exercise12/README | 13 -- Exercise14/.README.swp | Bin 12288 -> 0 bytes Exercise14/.ex02.txt.swp | Bin 12288 -> 0 bytes Exercise14/Exercise10/README | 182 ------------------ Exercise14/Exercise10/exercise10.py | 39 ---- Exercise14/Exercise10/test_classes.py | 50 ----- Exercise14/README | 18 -- {Exercise10 => Whiteboarding/Puzzles}/README | 2 +- .../Puzzles}/task1.py | 0 .../Puzzles}/task10.py | 0 .../Puzzles}/task11.py | 0 .../Puzzles}/task12.py | 0 .../Puzzles}/task13.py | 0 .../Puzzles}/task2.py | 0 .../Puzzles}/task3.py | 0 .../Puzzles}/task4.py | 0 .../Puzzles}/task5.py | 0 .../Puzzles}/task6.py | 0 .../Puzzles}/task7.py | 0 .../Puzzles}/task8.py | 0 .../Puzzles}/task9.py | 0 .../Recursion}/README.md | 2 +- .../Recursion}/recursion.py | 2 +- .../Recursion}/test_recursion.py | 0 .../RegularExpressions}/README.md | 2 +- .../RegularExpressions}/words | 0 {Exercise15 => Whiteboarding/Trees01}/README | 0 Whiteboarding/Trees01/README.md | 103 ++++++++++ .../Trees01}/exercise11.py | 0 .../Trees01}/test_tree.py | 0 .../Trees01}/test_tree_fixed.py | 0 {Exercise13 => Whiteboarding/Trees02}/README | 0 Whiteboarding/Trees02/README.md | 132 +++++++++++++ .../Trees02/trees2.py | 0 Whiteboarding/Trees03/README | 74 +++++++ Whiteboarding/Trees03/trees3.py | 54 ++++++ 36 files changed, 367 insertions(+), 306 deletions(-) delete mode 100644 Exercise12/README delete mode 100644 Exercise14/.README.swp delete mode 100644 Exercise14/.ex02.txt.swp delete mode 100644 Exercise14/Exercise10/README delete mode 100644 Exercise14/Exercise10/exercise10.py delete mode 100644 Exercise14/Exercise10/test_classes.py delete mode 100644 Exercise14/README rename {Exercise10 => Whiteboarding/Puzzles}/README (90%) rename {Exercise10 => Whiteboarding/Puzzles}/task1.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task10.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task11.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task12.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task13.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task2.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task3.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task4.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task5.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task6.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task7.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task8.py (100%) rename {Exercise10 => Whiteboarding/Puzzles}/task9.py (100%) rename {Exercise09 => Whiteboarding/Recursion}/README.md (99%) rename {Exercise09 => Whiteboarding/Recursion}/recursion.py (99%) rename {Exercise09 => Whiteboarding/Recursion}/test_recursion.py (100%) rename {Exercise11 => Whiteboarding/RegularExpressions}/README.md (97%) rename {Exercise11 => Whiteboarding/RegularExpressions}/words (100%) rename {Exercise15 => Whiteboarding/Trees01}/README (100%) create mode 100644 Whiteboarding/Trees01/README.md rename {Exercise15 => Whiteboarding/Trees01}/exercise11.py (100%) rename {Exercise15 => Whiteboarding/Trees01}/test_tree.py (100%) rename {Exercise15 => Whiteboarding/Trees01}/test_tree_fixed.py (100%) rename {Exercise13 => Whiteboarding/Trees02}/README (100%) create mode 100644 Whiteboarding/Trees02/README.md rename Exercise13/exercise12.py => Whiteboarding/Trees02/trees2.py (100%) create mode 100644 Whiteboarding/Trees03/README create mode 100644 Whiteboarding/Trees03/trees3.py diff --git a/Exercise12/README b/Exercise12/README deleted file mode 100644 index f96b53d..0000000 --- a/Exercise12/README +++ /dev/null @@ -1,13 +0,0 @@ -Exercise 15: Reading practice -======= - -Introduction -------- -An essential but unpracticed skill is reading other people's code. Today, we'll -be doing a little bit of reading practice. - -Description -------- -In reading.py are a number of functions with mystery names. Your mission, -should you choose to accept it, is to, _without_ executing the code, rename and -document the functions according to what they do. diff --git a/Exercise14/.README.swp b/Exercise14/.README.swp deleted file mode 100644 index aff9211336f40df300e1bc48cc8ac1eef86facbb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12288 zcmeI2J#Q2-5QZHp3IZrlBZm|;-0ndnK2D0zp+riG69^F`I=s7cx8~Ms$DX~*QNRy? zf|8N~dj3R83Mdna2L1&Nw?BbA>P0F z{^0e`v*O^25CNM4YK%|*Il6_>wGQYNS|3_HmAB$T>sC_PTvf-pFXx8ornfG$`{}mI zhnd%d5@k161(->?wGTem0or%dM_b*^-qvw8-!K6taAE=t_FH$Bch_&;Xh)B=tE=+T z%I=BnIFSi30Vco%m;e)C0!)AjFoDxY0Ns*!MP;9vm%cKOOMk@qlmioB0!)AjFaajO z1egF5U;<2l2`~XBa0&^iLWpnYgt)&<#nb=)i{Jl0E(mc%IwXB29gsefK9Js#-jdp+ zujhsMLi$8{M!HNoBCkVI^z1}m9!!7_=|m_X5_ZjjlLu7T3Aq|JK`gji%! zqN(oT*tSAr){HG+0}74*;pM^D5wwcNg}?pGWcGd{_aY%?X+`JH6IVJRp4#Tx2&Ae! zsA3|=UL!&+u>?7wVnbv&Py}Dq#dH3vMwM##)*;hi+uwc138JjS3MYD&)!DQ{QS9>}+V2 z57e}CnTO+nmZR9x#gIoLEj!Ong$|_=-F`<*yZyjU?cNLe5wCz(;NBD{?C|XBvFpqI zUe^&$KCwh6j$gkwuAk)<@CtYZyaHYUuYgy;E8rFI3j8M&u=x@8HX^yNiDtcd9{J0& z>H3FPz$@St@CtYZyaHYUuYgy;E8rFI3U~#)0{=nBEfO0zLw!z;nQH;D?9c zJ8%Pd8n_?$2JyO>zi@H;<`wV?cm=!yUV;CC0)%#kVr%pDPA5{K3G&j$DhrezbrLzy zT$i0;k%d;O%mlGblan&D>@Hp+xXx;xjYZ6LG~s2n!a%7pF7GWbSImm#n9gML*lD?% zF!!qJ{SRIO-k3{E^$|6}E zDt6aN*pu*rQn_JQg;9kLg~6B8Yq6k=r-FDEQC6e_p$)}C3!1n;w#-FDGNVCBIF?ix zp#yqV6*Q4aLYcs*Ra9gVc-F1qW`!yXMQ%wAX%fpsP~z;i-TT^Ko}f1p*5aNkR?iDd zL#-a zh{K9hY$xbK2n>q5$P8(5qmWue?)&{K0#ZaO6K%TWuJ~HXv!zO;p@K4$mW{Gb$TdPR z!Yna}s0p`xjk!SQR~Nb@4K!60<05YxvrFP5F0)`^3K(k(-5DcMlf4Nm2PHgpP{Q&q zgnffp>F&bVH;CN``ptoFLy zfUaSukPFq8&i6cEr(6=btuNhWn)q>7`bKUz% zsy`+u=u|`av>_ZqEiJN`a;-+1r*{d53gLRLsm<2NYVxFHj$J@ zrI-YCkql3B)D7pED;{G*i5#OG#S%s9Y~9#~Frk*YD}ao>RL6|~QMOPpiqICwPjsss zMA#{ksH#LQ#x~?|D8nMLB_(1@B Professor Snugglesworth - -In their most basic usage, classes are an alternate mechanism for doing something very similar. Here is an analogous structure. - - class Pet(object): - def __init__(self, name, animal_type, age, owner, flea_list): - self.name = name - self.animal_type = animal_type - self.age = age - self.owner = owner - self.flea_list = flea_list - - def print_name(self): - print self.name - - my_hamsters = [ Pet("Prince", "Hamster", 1, "Christian", []), - Pet("Hamlet", "Hamster", 1, "Christian", []), - Pet("Professor Snugglesworth", "Hamster", 1, "Christian", []), - Pet("Doctor Fishopolis", "Hamster", 1, "Christian", []) ] - - print my_hamsters[2].name - => Professor Snugglesworth - - my_hamsters[2].print_name() - => Professor Snugglesworth - -A class is defined with the following syntax: - - class MyClass(object): - -The word 'class' is required in front, and the (object) is required after your class name. It looks very much like a function call, but it is not. You will have to remember this special case usage of parentheses and the word object. - -There is always a special method inside a class named __init__. It is analogous to our make_hamster() function above. If you think of the class as a template that represents all hamsters everywhere, the 'initializer', __init__, is a way to fill in that template. This creates an 'instance'. - -Notice that we can put functions inside classes. When we do so, they are called methods. To clarify, functions that live outside a class are just functions, but on a class, they are called methods. Methods have a special parameter on them, 'self', that behaves a little weirdly from other methods. Look at the signature: - - def print_name(self): - -It takes one parameter, apparently named 'self'. All methods on a class must start with the parameter 'self'. Now, look at the invocation of the method, - - my_hamsters[2].print_name() - -Even though it takes one parameter, it somehow doesn't seem to be used. To understand this, let's take a look at a simple example without methods. - - def print_hamster_name(hamster): - print hamster.name - - h = Pet("Hamlet", "Hamster", 1, "Christian", []) - - print_pet_name(h) - => Hamlet - -Now, let's take a simplified look under the hood at what happens in the class. - -When we have the following class definition: - - class Pet(object): - def print_name(self): - print self.name - - h = Pet(...) - h.print_name() - -Python looks at the class and the methods inside it, and secretly rewrites them to something roughly like so: - - class Pet(object): - def print_name(self): - - becomes - - def __Pet_print_name__(self): - print self.name - -So in the later line, python recognizes that print_name is a method on the Hamster class and replaces the line with the rewritten name. - - h.print_name() - - becomes - - __Pet_print_name__(h) - -In this way, the method becomes equivalent to our earlier example, but is much more convenient to use. - -For now, classes can largely be thought of as an organizational tool. - -Briefly, let's explore the concept of inheritance. We have a class, Pet, which is a generic pet type, but we seem to be making an awful lot of Hamsters. Inheritance lets us take a class and narrow down the specificity of that class. In this example, we can piggyback off all the work we did in the Pet class to make a Hamster class. - - class Hamster(Pet): # Notice instead of 'object', we're using 'Pet' in the parentheses. - def __init__(self, name, age, owner): - self.name = name - self.animal = "Hamster" # A 'Hamster' object will always have the animal property set to 'Hamster' - self.age = age - self.owner = owner - self.fleas = [] # Hamsters don't get fleas - - def chitter(self): - print "%s makes a chittering sound."%(self.name) - - h = Hamster("Professor Snugglesworth", 1, "Christian") - h.print_name() - => Professor Snugglesworth - h.chitter() - => Professor Snugglesworth makes a chittering sound. - -In this way, we can reuse functionality defined on 'Pet', namely, the print_name method, while narrowing down the behavior of the __init__ method to always fill in certain fields correctly. Finally, we can add additional behavior on Hamster (that is not available on Pet objects), the capability to chitter. When we do this, we say Hamster is a 'descendant' of pet. And in this case, Professor Snugglesworth is an 'instance' of Hamster. - -When we write code, we always have to think, what is the data type of my variable. Classes are a way for us to make a new datatype. Here, the variable 'h' is of type 'Hamster', in the same way a variable can be a 'list'. Oftentimes, we will write code that expects a specific class. As a rule, we cannot use ancestor classes where we expect a descendant: a 'Hamster' can be used any place where a 'Pet' is expected, but not the other way around. It is easy to see here why this is the case, if code expects to call the chitter() method, that method does not exist on a 'Pet', but it does on a 'Hamster'. - -It is sometimes hard to grasp the concepts of classes, objects, inheritance, and instances all at once. Try this analogy. A musical score is the blueprint for a song. Each performance of the song will use the musical score as a template, but will have things slightly different in each case: maybe the guitar used will be different, or you will be using a different drummer. - -Sometimes, someone will take your score and make a modified score as a cover band. They use this score as their template for their performances. When someone who who heard the original first finally listens to the cover band version, they think, "Sure, it's got extra stuff, but it's more or less the same song." However, when someone who only knows about the cover version encounters the original, they think, "It's missing important pieces, this is unacceptable." - -The score is our class. Each performance is an instance of that class. The cover band version is a descendant of our class, and it can have it's own instances. An instance of the descendant is usable wherever an instance of the original is expected, but not the other way around. - - -Description -------- -In exercise10.py, you will find some hashes and functions that can be converted to classes and methods. Do this with the assistance of the tests. In this folder, run the following command: - - py.test -x - -When all the tests pass, you will have finished the exercise. However, spend a little time trying to model real-life concepts as a class. For example how would you model a students in a classroom? How would you model furniture? - -Concepts required: - * dictionaries - * classes - -Resources: - * http://learnpythonthehardway.org/book/ex40.html - * http://learnpythonthehardway.org/book/ex41.html - * http://learnpythonthehardway.org/book/ex42.html diff --git a/Exercise14/Exercise10/exercise10.py b/Exercise14/Exercise10/exercise10.py deleted file mode 100644 index 63a68ac..0000000 --- a/Exercise14/Exercise10/exercise10.py +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env python - -def make_student(name, age, hometown): - return {"name": name, - "age": age, - "hometown": hometown, - "course_list": [] } - -def make_course(name, instructor): - return {"name": name, - "instructor": instructor} - -def print_student(student): - print "Student Details" - print "===============" - print "%s"%(student['name']) - print "Age: %d"%(student['age']) - print "Hometown: %s"%(student['hometown']) - print "Current semester course list" - for c in student['course_list']: - print "\t%s"%c['name'] - else: - print "\tNo courses" - print "" - -def take_course(student, course): - if course not in student['course_list']: - student['course_list'].append(course) - -def main(): - """Add additional code to test your classes in here""" - dave = make_student("David", 24, "Orinda, CA") - print_student(dave) - - anthro = make_course("Anthropology 101", "Professor Snugglesworth") - take_course(dave, anthro) - -if __name__ == "__main__": - main() diff --git a/Exercise14/Exercise10/test_classes.py b/Exercise14/Exercise10/test_classes.py deleted file mode 100644 index 206b7b2..0000000 --- a/Exercise14/Exercise10/test_classes.py +++ /dev/null @@ -1,50 +0,0 @@ -import exercise10 - -def exists(name): - try: - getattr(exercise10, name) - return True - except: - return False - -def test_for_existence(): - assert exists("Student"), """\ -Create a class named 'Student' using the syntax from the introduction. Refer to Zed Shaw for more examples.""" - assert exists("Course"), """\ -Create a class named 'Course' in the same way.""" - -def test_student_initializer(): - expected_s = exercise10.make_student("Fake Student", 25, "Faketown, USA") - new_s = exercise10.Student("Fake Student", 25, "Faketown, USA") - - assert new_s.name == expected_s['name'], "The student's name should be set in the initializer" - assert new_s.age == expected_s['age'], "The student's age should be set in the initializer" - assert new_s.hometown == expected_s['hometown'], "The student's hometown should be set in the initializer" - assert new_s.course_list == expected_s['course_list'], "The student's course list should be initialized to an empty list in the initializer" - -def test_course_initializer(): - expected_c = exercise10.make_course("Anthro 101", "Professor Snugglesworth") - new_c = exercise10.Course("Anthro 101", "Professor Snugglesworth") - assert new_c.name == expected_c['name'], "The course name should be set in the initializer" - assert new_c.instructor == expected_c['instructor'], "The course instructor should be set in the initializer" - -def test_take_course(): - student = exercise10.Student("Fake Student", 25, "Faketown, USA") - course = exercise10.Course("Anthro 101", "Professor Snugglesworth") - - has_method = True - try: - getattr(student, "take_course") - except: - has_method = False - - assert has_method, "The student class should have a method named 'take_course' that accepts a course, similar to the take_course function." - - assert student.course_list == [], "The student's course list should start empty." - - student.take_course(course) - - assert course in student.course_list, "The new course should be in the student's course list after calling student.take_course(course)" - - student.take_course(course) - assert student.course_list == [course], "Even if you add the course twice, the course list should only contain one copy of the course." diff --git a/Exercise14/README b/Exercise14/README deleted file mode 100644 index 92775df..0000000 --- a/Exercise14/README +++ /dev/null @@ -1,18 +0,0 @@ -Exercise 09: More practice! -======= - -Introduction -------- -Practice needs no introduction! - -Description -------- -Here are some fairly standard programs every programmer must write in the process of learning. -You've already written the guessing game and the temperature converter. Try to do the others: - -http://mypythonquiz.com/list.php -http://people.csail.mit.edu/pgbovine/python/question.html?remove-dups#mode=edit -http://people.csail.mit.edu/pgbovine/python/question.html?two-sum#mode=edit -http://www.openbookproject.net/pybiblio/practice/wilson/ - -All of them are doable with your current skillset, but some will require more complex composition of everything you know. Try to get as far as you can! diff --git a/Exercise10/README b/Whiteboarding/Puzzles/README similarity index 90% rename from Exercise10/README rename to Whiteboarding/Puzzles/README index 473c434..df636d5 100644 --- a/Exercise10/README +++ b/Whiteboarding/Puzzles/README @@ -1,4 +1,4 @@ -Exercise 10: Puzzle Time! +Whiteboarding Practice: Puzzle Time! ======= Description diff --git a/Exercise10/task1.py b/Whiteboarding/Puzzles/task1.py similarity index 100% rename from Exercise10/task1.py rename to Whiteboarding/Puzzles/task1.py diff --git a/Exercise10/task10.py b/Whiteboarding/Puzzles/task10.py similarity index 100% rename from Exercise10/task10.py rename to Whiteboarding/Puzzles/task10.py diff --git a/Exercise10/task11.py b/Whiteboarding/Puzzles/task11.py similarity index 100% rename from Exercise10/task11.py rename to Whiteboarding/Puzzles/task11.py diff --git a/Exercise10/task12.py b/Whiteboarding/Puzzles/task12.py similarity index 100% rename from Exercise10/task12.py rename to Whiteboarding/Puzzles/task12.py diff --git a/Exercise10/task13.py b/Whiteboarding/Puzzles/task13.py similarity index 100% rename from Exercise10/task13.py rename to Whiteboarding/Puzzles/task13.py diff --git a/Exercise10/task2.py b/Whiteboarding/Puzzles/task2.py similarity index 100% rename from Exercise10/task2.py rename to Whiteboarding/Puzzles/task2.py diff --git a/Exercise10/task3.py b/Whiteboarding/Puzzles/task3.py similarity index 100% rename from Exercise10/task3.py rename to Whiteboarding/Puzzles/task3.py diff --git a/Exercise10/task4.py b/Whiteboarding/Puzzles/task4.py similarity index 100% rename from Exercise10/task4.py rename to Whiteboarding/Puzzles/task4.py diff --git a/Exercise10/task5.py b/Whiteboarding/Puzzles/task5.py similarity index 100% rename from Exercise10/task5.py rename to Whiteboarding/Puzzles/task5.py diff --git a/Exercise10/task6.py b/Whiteboarding/Puzzles/task6.py similarity index 100% rename from Exercise10/task6.py rename to Whiteboarding/Puzzles/task6.py diff --git a/Exercise10/task7.py b/Whiteboarding/Puzzles/task7.py similarity index 100% rename from Exercise10/task7.py rename to Whiteboarding/Puzzles/task7.py diff --git a/Exercise10/task8.py b/Whiteboarding/Puzzles/task8.py similarity index 100% rename from Exercise10/task8.py rename to Whiteboarding/Puzzles/task8.py diff --git a/Exercise10/task9.py b/Whiteboarding/Puzzles/task9.py similarity index 100% rename from Exercise10/task9.py rename to Whiteboarding/Puzzles/task9.py diff --git a/Exercise09/README.md b/Whiteboarding/Recursion/README.md similarity index 99% rename from Exercise09/README.md rename to Whiteboarding/Recursion/README.md index c2880e0..0fcb622 100644 --- a/Exercise09/README.md +++ b/Whiteboarding/Recursion/README.md @@ -1,4 +1,4 @@ -Exercise 9: Recursion +Whiteboarding Practice: Recursion ======= Introduction diff --git a/Exercise09/recursion.py b/Whiteboarding/Recursion/recursion.py similarity index 99% rename from Exercise09/recursion.py rename to Whiteboarding/Recursion/recursion.py index 318af75..2771990 100644 --- a/Exercise09/recursion.py +++ b/Whiteboarding/Recursion/recursion.py @@ -1,5 +1,5 @@ """ -Exercise 9: Recursion +Recursion --------------------- The Evil Wizard Malloc has attacked you and taken away your ability diff --git a/Exercise09/test_recursion.py b/Whiteboarding/Recursion/test_recursion.py similarity index 100% rename from Exercise09/test_recursion.py rename to Whiteboarding/Recursion/test_recursion.py diff --git a/Exercise11/README.md b/Whiteboarding/RegularExpressions/README.md similarity index 97% rename from Exercise11/README.md rename to Whiteboarding/RegularExpressions/README.md index 7f6161b..a843767 100644 --- a/Exercise11/README.md +++ b/Whiteboarding/RegularExpressions/README.md @@ -1,4 +1,4 @@ -Exercise 11: Regular Expressions: ain't nothing regular about them +Regular Expressions: ain't nothing regular about them ======= Introduction diff --git a/Exercise11/words b/Whiteboarding/RegularExpressions/words similarity index 100% rename from Exercise11/words rename to Whiteboarding/RegularExpressions/words diff --git a/Exercise15/README b/Whiteboarding/Trees01/README similarity index 100% rename from Exercise15/README rename to Whiteboarding/Trees01/README diff --git a/Whiteboarding/Trees01/README.md b/Whiteboarding/Trees01/README.md new file mode 100644 index 0000000..3ff06ff --- /dev/null +++ b/Whiteboarding/Trees01/README.md @@ -0,0 +1,103 @@ +Trees #1 +======= + +Introduction +------- +Trees are a way of organizing things hierarchically. Many things can be +represented as a tree for visualization. Many things are _actually_ stored as +trees by their nature. On your system's hard drive, a directory structure is +stored as a tree. HTML and XML files are 'serialized' representations of trees +in a text file. We will be implementing the most basic form of tree (aside from +the degenerate form, the linked list), the binary tree. + +A binary tree has the following attributes: + +class BinaryTreeNode + get_left() => BinaryTreeNode + set_left(BinaryTreeNode) + get_right() => BinaryTreeNode + set_right(BinaryTreeNode) + get_value() => int + set_value(int) + +The value can be an arbitrary number, and the get_left and get_right methods +can return a None. + +Because a tree is a nested structure, it is difficult to visualize one in text +mode. However, we do have a few options. + +The first option that we will implement is also one of the simplest, a depth +first traversal. + +A depth-first traversal visits every node in your tree and prints out the value +of each node. It does this in a very specific order. First, it prints the value +of the current node. Then, if it has a left node, it prints the value there. If +that node also has a left child node, it prints that, too. When it finally +reaches the bottom, ie: there are no more left nodes, then it prints the right +node. Note, this is a variant of escaping the minotaur maze. In the minotaur +maze, we keep our hand on the right wall. If we imagine each junction in the +maze as a node, this is the equivalent of visiting the right-most node first. + +Here are some examples: + + 5 + / \ + 6 7 + + print depth_first_traversal(tree) + => 5 6 7 + + 2 + / \ + 9 1 + / + 8 + depth_first_traversal(tree) + => 2 9 8 1 + + 2 + / \ + 9 1 + / / \ + 8 3 6 + / \ \ + 4 0 5 + + depth_first_traversal(tree) + => 2 9 8 1 3 4 0 6 5 + +The easiest way to do a depth-first traversal is with a recursive function. It +should print the value of the current node, then call itself on the left, then +right node in order. + +It may help you to know that ending a print statement with a comma suppresses +the newline: + + eg: + print "foo", + print "bar", + print "baz" + => foo bar baz + +Description +------- +In exercise11.py, you will find an 'abstract class' named BinaryTreeNode. It is +up to you to fill it in. + +You will also need to fill in the depth_first_traversal method. To implement +the behavior described above. + +As you do, run the tests to validate whether or not your implementation works. + + py.test -x + +This time, the error messages will not guide your implementation. They are only +there to verify that you have done the exercise correctly. + +Concepts required: + * Binary trees + * Depth first search + +Resources: + * http://interactivepython.org/courselib/static/pythonds/Trees/trees.html + * http://interactivepython.org/courselib/static/pythonds/Recursion/recursionsimple.html diff --git a/Exercise15/exercise11.py b/Whiteboarding/Trees01/exercise11.py similarity index 100% rename from Exercise15/exercise11.py rename to Whiteboarding/Trees01/exercise11.py diff --git a/Exercise15/test_tree.py b/Whiteboarding/Trees01/test_tree.py similarity index 100% rename from Exercise15/test_tree.py rename to Whiteboarding/Trees01/test_tree.py diff --git a/Exercise15/test_tree_fixed.py b/Whiteboarding/Trees01/test_tree_fixed.py similarity index 100% rename from Exercise15/test_tree_fixed.py rename to Whiteboarding/Trees01/test_tree_fixed.py diff --git a/Exercise13/README b/Whiteboarding/Trees02/README similarity index 100% rename from Exercise13/README rename to Whiteboarding/Trees02/README diff --git a/Whiteboarding/Trees02/README.md b/Whiteboarding/Trees02/README.md new file mode 100644 index 0000000..2875937 --- /dev/null +++ b/Whiteboarding/Trees02/README.md @@ -0,0 +1,132 @@ +MOAR TREES +======= + +Introduction +------- +A very curious application of trees is the concept of a 'parse tree'. Imagine, +for example, trying to write a program to interpret and evaluate the following +string: + + (((3 + 2) * (4 - 1) / 3 + 7) * (1 + (-5 + 6))) + +You might start evaluating it from right to left, but the first problem arises +when you hit the first multiplication sign. You can't evaluate the +multiplication until after you've evaluated (4-1)/3 first, so there's a lot of +backtracking. + +It turns out that backtracking (using recursion) is something trees do well. +Remember a depth-first-traversal that goes down the left side of a tree: + + def dft(node): + print node.value + if node.left: + dft(node.left) + if node.right: + dft(node.right) + +When you illustrate how this traverses a tree, you'll notice that it exhibits +an interesting backtracking behavior, where it follows a tree as far as it can, +then starts climbing back up when it can't. + +In the same way, we can use that behavior to evaluate a mathematical expression +by first constructing a parse tree. + +Consider the following expression: (3 + 2). + +This mathematical statement is in 'infix' notation, that is, the operator goes +between the operands. More generally, the format is: + + num1 op num2 + where num1 and num2 are any real numbers, and op is one of + - / * + +You'll notice quickly that regardless of the complexity of the statement, an +operator can only have two operands. That is, one number goes on the left, and +one goes on the right. We can exploit this regularity with binary trees. + +In our previous example, each node of the binary tree contained a single +number. Now, we're going to modify the restrictions. Each node can now be a +either a number or an operator. If the node's value is an operator, we add the +additional constraint that it must have a left and right child. Each of these +children have the same constraints placed on them. + +In the simple case of the expression above, we can translate '(3 + 2)' into the +following tree: + + + + / \ + 3 2 + +In a slightly more complicated scenario, we have the expression '(4 * 5 + 2)' + + + + / \ + * 2 + / \ + 4 5 + +We can apply this technique to any arbitrarily large or complex mathematical +expression, and decompose them into a series of nested binary trees. + +Using this technique, we can now evaluate the entire tree recursively, which +gives us our backtracking behavior for free: + + def eval(node): + if is_num(node.value): + return node.value + elif node.value == "+": + return eval(node.left) + eval(node.right) + elif node.value == "*": + return eval(node.left) * eval(node.right) + elif node.value == "/": + return eval(node.left) / eval(node.right) + elif node.value == "-": + return eval(node.left) - eval(node.right) + +Description +------- +You will write a piece of code that constructs a parse tree from a string +containing a mathematical expression, correctly interpreting parentheses. You +will use recursion heavily in this project, so you may need to review the the +text on recursion. + +In exercise12.py, you will find an implementation of the above 'eval' method, +and a simple implementation of binary trees, as well as some utility functions +to assist you in constructing the binary tree. + +Your job is to implement a function, build_parse_tree, that takes in a list of +tokens and produces a parse tree according to the following rules: + + Create an empty node. + While there are tokens remaining, consume a token from the available input. + + 1. If that token is a '(', call build_parse_tree on the remaining input, + and assign the results of that to the left side of your current node. + + 2. If the token is an operator + - / *, set the current node's value to + that operator, then call build_parse_tree on the remaining input and assign + the result of that to the right side of your current node. + + 3. If the token is a number, set the value of the current node to the + number (converting it from a string) and return that node. + + 4. If the token is a ')', return the current node. + +Applying these rules should produce a valid parse tree that can then be fed +into the evaluate_expression() function. If you run exercise12.py, the main function +should output a '24' given the sample input. + +It has an example (which you should feel free to modify) of taking an input +string, tokenizing it, parsing the tokens, then evaluating the 'parse tree'. +All these steps are required for the program to run. With the current stub code +in place, the program will print a '5'. + +You do not need to modify anything except the build_parse_tree function, but +feel free to experiment with the other functions available. + +Concepts required: + * Binary trees + * Recursion + +Resources: + * http://interactivepython.org/courselib/static/pythonds/Trees/bintreeapps.html#parse-tree + * http://interactivepython.org/courselib/static/pythonds/Recursion/recursionsimple.html#what-is-recursion diff --git a/Exercise13/exercise12.py b/Whiteboarding/Trees02/trees2.py similarity index 100% rename from Exercise13/exercise12.py rename to Whiteboarding/Trees02/trees2.py diff --git a/Whiteboarding/Trees03/README b/Whiteboarding/Trees03/README new file mode 100644 index 0000000..79a3f79 --- /dev/null +++ b/Whiteboarding/Trees03/README @@ -0,0 +1,74 @@ +EVEN MORE TREES +======= + +Ugh, are we done with trees yet, also, stacks?! + +Introduction +------- +You may have noticed that the arithmetic expressions we evaluated were highly +dependent on the existence of parentheses to separate each individual statement +out. + + (((3 + 2) * ((4 - 1) / 3) + 7) * (1 + (-5 + 6))) +(3+2)*3 +3+2*3 +We need a way to evaluate expressions without the assistance of parentheses. +Fortunately, someone much smarter came up with an algorithm that does exactly +that: the shunting-yard algorithm. + +Description +------- +In exercise13.py, (identical to exercise12), you will implement Edsger +Djikstra's shunting yard algorithm, found here: + +http://en.wikipedia.org/wiki/Shunting-yard_algorithm + +However, instead of outputting the original expression in reverse polish +notation, you will emit a binary parse tree as before. To do that, we will have +to make some modifications to the algorithm as written. + +First, we will ignore all mention of function calls, as we will only work with +basic operators and integers. + +Second, instead simply putting operator tokens on the output queue, whenever an +operator is going to be moved to the output queue, instead it combines that +operator with the last two elements on the queueand turns it into a binary tree +node and puts the node on the queue. + +* While there are tokens to be read: + * Read a token. + * If the token is a number, then add it to the output queue. + * If the token is an operator, o1, then: + * while there is an operator token, o2, at the top of the stack, and + - either o1 is left-associative and its precedence is less than or equal to that of o2, + - or o1 has precedence less than that of o2, + * pop o2 off the stack, combine it with the last two elements on + the queue to produce a binary tree node, then push that node onto + the output queue. + * push o1 onto the stack. + * If the token is a left parenthesis, then push it onto the stack. + * If the token is a right parenthesis: + * Until the token at the top of the stack is a left parenthesis, + pop operators off the stack, combining them with the last + two elements on the queue to create a binary tree node and putting + that node on the stack. + * Pop the left parenthesis from the stack, but not onto the output queue. + * If the stack runs out without finding a left parenthesis, + then there are mismatched parentheses. + * When there are no more tokens to read: + * While there are still operator tokens in the stack: + * If the operator token on the top of the stack is a parenthesis, + then there are mismatched parentheses. + * Pop the operator off the stack and combine it with the last two + elements on the output queue to create a binary tree node, then + push that node onto the queue. +* Return the final node on the output queue. + +Concepts required: + * Binary trees + * Stacks + * Queues + +Resources: + * http://interactivepython.org/courselib/static/pythonds/Trees/bintreeapps.html#parse-tree + * http://en.wikipedia.org/wiki/Shunting-yard_algorithm diff --git a/Whiteboarding/Trees03/trees3.py b/Whiteboarding/Trees03/trees3.py new file mode 100644 index 0000000..6024f63 --- /dev/null +++ b/Whiteboarding/Trees03/trees3.py @@ -0,0 +1,54 @@ +#!/usr/bin/env python + +class BinaryTreeNode(object): + def __init__(self, value): + self.value = value + self.left = None + self.right = None + +def tokenize(string): + return string.replace("(", " ( ").replace(")", " ) ").split() + +def consume(token_list): + return token_list.pop(0) + +def build_parse_tree(token_list): + """Takes in a token list and produces a parse tree according to the rules in the README""" + # IMPLEMENT SHUNTING YARD ALGORITHM HERE + root = BinaryTreeNode("+") + left = BinaryTreeNode(3) + right = BinaryTreeNode(2) + root.left = left + root.right = right + return root + +def is_num(string): + try: + int(string) + return True + except: + return False + +def evaluate_tree(node): + if node is None: + return + if type(node.value) == int: + return node.value + elif node.value == "+": + return evaluate_tree(node.left) + evaluate_tree(node.right) + elif node.value == "*": + return evaluate_tree(node.left) * evaluate_tree(node.right) + elif node.value == "/": + return evaluate_tree(node.left) / evaluate_tree(node.right) + elif node.value == "-": + return evaluate_tree(node.left) - evaluate_tree(node.right) + +def main(): + sample_string = "(((3 + 2) * (4 - 1) / 3 + 7) * (1 + (-5 + 6)))" + sample_string = "(3 + (2 + 5))" + tokens = tokenize(sample_string) + tree = build_parse_tree(tokens) + print evaluate_tree(tree) + +if __name__ == "__main__": + main() From 46f0a9e1149fddb7ef2de016af374ce47e3435e3 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 15 May 2014 11:38:52 -0700 Subject: [PATCH 039/135] cleanup --- Exercise16/README | 72 ------------------- Exercise16/exercise13.py | 54 -------------- Whiteboarding/Trees01/README | 103 --------------------------- Whiteboarding/Trees02/README | 132 ----------------------------------- 4 files changed, 361 deletions(-) delete mode 100644 Exercise16/README delete mode 100644 Exercise16/exercise13.py delete mode 100644 Whiteboarding/Trees01/README delete mode 100644 Whiteboarding/Trees02/README diff --git a/Exercise16/README b/Exercise16/README deleted file mode 100644 index a596f1a..0000000 --- a/Exercise16/README +++ /dev/null @@ -1,72 +0,0 @@ -Exercise 13: Ugh, are we done with trees yet, also, stacks?! -======= - -Introduction -------- -You may have noticed that the arithmetic expressions we evaluated were highly -dependent on the existence of parentheses to separate each individual statement -out. - - (((3 + 2) * ((4 - 1) / 3) + 7) * (1 + (-5 + 6))) -(3+2)*3 -3+2*3 -We need a way to evaluate expressions without the assistance of parentheses. -Fortunately, someone much smarter came up with an algorithm that does exactly -that: the shunting-yard algorithm. - -Description -------- -In exercise13.py, (identical to exercise12), you will implement Edsger -Djikstra's shunting yard algorithm, found here: - -http://en.wikipedia.org/wiki/Shunting-yard_algorithm - -However, instead of outputting the original expression in reverse polish -notation, you will emit a binary parse tree as before. To do that, we will have -to make some modifications to the algorithm as written. - -First, we will ignore all mention of function calls, as we will only work with -basic operators and integers. - -Second, instead simply putting operator tokens on the output queue, whenever an -operator is going to be moved to the output queue, instead it combines that -operator with the last two elements on the queueand turns it into a binary tree -node and puts the node on the queue. - -* While there are tokens to be read: - * Read a token. - * If the token is a number, then add it to the output queue. - * If the token is an operator, o1, then: - * while there is an operator token, o2, at the top of the stack, and - - either o1 is left-associative and its precedence is less than or equal to that of o2, - - or o1 has precedence less than that of o2, - * pop o2 off the stack, combine it with the last two elements on - the queue to produce a binary tree node, then push that node onto - the output queue. - * push o1 onto the stack. - * If the token is a left parenthesis, then push it onto the stack. - * If the token is a right parenthesis: - * Until the token at the top of the stack is a left parenthesis, - pop operators off the stack, combining them with the last - two elements on the queue to create a binary tree node and putting - that node on the stack. - * Pop the left parenthesis from the stack, but not onto the output queue. - * If the stack runs out without finding a left parenthesis, - then there are mismatched parentheses. - * When there are no more tokens to read: - * While there are still operator tokens in the stack: - * If the operator token on the top of the stack is a parenthesis, - then there are mismatched parentheses. - * Pop the operator off the stack and combine it with the last two - elements on the output queue to create a binary tree node, then - push that node onto the queue. -* Return the final node on the output queue. - -Concepts required: - * Binary trees - * Stacks - * Queues - -Resources: - * http://interactivepython.org/courselib/static/pythonds/Trees/bintreeapps.html#parse-tree - * http://en.wikipedia.org/wiki/Shunting-yard_algorithm diff --git a/Exercise16/exercise13.py b/Exercise16/exercise13.py deleted file mode 100644 index 6024f63..0000000 --- a/Exercise16/exercise13.py +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env python - -class BinaryTreeNode(object): - def __init__(self, value): - self.value = value - self.left = None - self.right = None - -def tokenize(string): - return string.replace("(", " ( ").replace(")", " ) ").split() - -def consume(token_list): - return token_list.pop(0) - -def build_parse_tree(token_list): - """Takes in a token list and produces a parse tree according to the rules in the README""" - # IMPLEMENT SHUNTING YARD ALGORITHM HERE - root = BinaryTreeNode("+") - left = BinaryTreeNode(3) - right = BinaryTreeNode(2) - root.left = left - root.right = right - return root - -def is_num(string): - try: - int(string) - return True - except: - return False - -def evaluate_tree(node): - if node is None: - return - if type(node.value) == int: - return node.value - elif node.value == "+": - return evaluate_tree(node.left) + evaluate_tree(node.right) - elif node.value == "*": - return evaluate_tree(node.left) * evaluate_tree(node.right) - elif node.value == "/": - return evaluate_tree(node.left) / evaluate_tree(node.right) - elif node.value == "-": - return evaluate_tree(node.left) - evaluate_tree(node.right) - -def main(): - sample_string = "(((3 + 2) * (4 - 1) / 3 + 7) * (1 + (-5 + 6)))" - sample_string = "(3 + (2 + 5))" - tokens = tokenize(sample_string) - tree = build_parse_tree(tokens) - print evaluate_tree(tree) - -if __name__ == "__main__": - main() diff --git a/Whiteboarding/Trees01/README b/Whiteboarding/Trees01/README deleted file mode 100644 index 21c8a76..0000000 --- a/Whiteboarding/Trees01/README +++ /dev/null @@ -1,103 +0,0 @@ -Exercise 11: Trees -======= - -Introduction -------- -Trees are a way of organizing things hierarchically. Many things can be -represented as a tree for visualization. Many things are _actually_ stored as -trees by their nature. On your system's hard drive, a directory structure is -stored as a tree. HTML and XML files are 'serialized' representations of trees -in a text file. We will be implementing the most basic form of tree (aside from -the degenerate form, the linked list), the binary tree. - -A binary tree has the following attributes: - -class BinaryTreeNode - get_left() => BinaryTreeNode - set_left(BinaryTreeNode) - get_right() => BinaryTreeNode - set_right(BinaryTreeNode) - get_value() => int - set_value(int) - -The value can be an arbitrary number, and the get_left and get_right methods -can return a None. - -Because a tree is a nested structure, it is difficult to visualize one in text -mode. However, we do have a few options. - -The first option that we will implement is also one of the simplest, a depth -first traversal. - -A depth-first traversal visits every node in your tree and prints out the value -of each node. It does this in a very specific order. First, it prints the value -of the current node. Then, if it has a left node, it prints the value there. If -that node also has a left child node, it prints that, too. When it finally -reaches the bottom, ie: there are no more left nodes, then it prints the right -node. Note, this is a variant of escaping the minotaur maze. In the minotaur -maze, we keep our hand on the right wall. If we imagine each junction in the -maze as a node, this is the equivalent of visiting the right-most node first. - -Here are some examples: - - 5 - / \ - 6 7 - - print depth_first_traversal(tree) - => 5 6 7 - - 2 - / \ - 9 1 - / - 8 - depth_first_traversal(tree) - => 2 9 8 1 - - 2 - / \ - 9 1 - / / \ - 8 3 6 - / \ \ - 4 0 5 - - depth_first_traversal(tree) - => 2 9 8 1 3 4 0 6 5 - -The easiest way to do a depth-first traversal is with a recursive function. It -should print the value of the current node, then call itself on the left, then -right node in order. - -It may help you to know that ending a print statement with a comma suppresses -the newline: - - eg: - print "foo", - print "bar", - print "baz" - => foo bar baz - -Description -------- -In exercise11.py, you will find an 'abstract class' named BinaryTreeNode. It is -up to you to fill it in. - -You will also need to fill in the depth_first_traversal method. To implement -the behavior described above. - -As you do, run the tests to validate whether or not your implementation works. - - py.test -x - -This time, the error messages will not guide your implementation. They are only -there to verify that you have done the exercise correctly. - -Concepts required: - * Binary trees - * Depth first search - -Resources: - * http://interactivepython.org/courselib/static/pythonds/Trees/trees.html - * http://interactivepython.org/courselib/static/pythonds/Recursion/recursionsimple.html diff --git a/Whiteboarding/Trees02/README b/Whiteboarding/Trees02/README deleted file mode 100644 index 8aec118..0000000 --- a/Whiteboarding/Trees02/README +++ /dev/null @@ -1,132 +0,0 @@ -Exercise 12: MOAR TREES -======= - -Introduction -------- -A very curious application of trees is the concept of a 'parse tree'. Imagine, -for example, trying to write a program to interpret and evaluate the following -string: - - (((3 + 2) * (4 - 1) / 3 + 7) * (1 + (-5 + 6))) - -You might start evaluating it from right to left, but the first problem arises -when you hit the first multiplication sign. You can't evaluate the -multiplication until after you've evaluated (4-1)/3 first, so there's a lot of -backtracking. - -It turns out that backtracking (using recursion) is something trees do well. -Remember a depth-first-traversal that goes down the left side of a tree: - - def dft(node): - print node.value - if node.left: - dft(node.left) - if node.right: - dft(node.right) - -When you illustrate how this traverses a tree, you'll notice that it exhibits -an interesting backtracking behavior, where it follows a tree as far as it can, -then starts climbing back up when it can't. - -In the same way, we can use that behavior to evaluate a mathematical expression -by first constructing a parse tree. - -Consider the following expression: (3 + 2). - -This mathematical statement is in 'infix' notation, that is, the operator goes -between the operands. More generally, the format is: - - num1 op num2 - where num1 and num2 are any real numbers, and op is one of + - / * - -You'll notice quickly that regardless of the complexity of the statement, an -operator can only have two operands. That is, one number goes on the left, and -one goes on the right. We can exploit this regularity with binary trees. - -In our previous example, each node of the binary tree contained a single -number. Now, we're going to modify the restrictions. Each node can now be a -either a number or an operator. If the node's value is an operator, we add the -additional constraint that it must have a left and right child. Each of these -children have the same constraints placed on them. - -In the simple case of the expression above, we can translate '(3 + 2)' into the -following tree: - - + - / \ - 3 2 - -In a slightly more complicated scenario, we have the expression '(4 * 5 + 2)' - - + - / \ - * 2 - / \ - 4 5 - -We can apply this technique to any arbitrarily large or complex mathematical -expression, and decompose them into a series of nested binary trees. - -Using this technique, we can now evaluate the entire tree recursively, which -gives us our backtracking behavior for free: - - def eval(node): - if is_num(node.value): - return node.value - elif node.value == "+": - return eval(node.left) + eval(node.right) - elif node.value == "*": - return eval(node.left) * eval(node.right) - elif node.value == "/": - return eval(node.left) / eval(node.right) - elif node.value == "-": - return eval(node.left) - eval(node.right) - -Description -------- -You will write a piece of code that constructs a parse tree from a string -containing a mathematical expression, correctly interpreting parentheses. You -will use recursion heavily in this project, so you may need to review the the -text on recursion. - -In exercise12.py, you will find an implementation of the above 'eval' method, -and a simple implementation of binary trees, as well as some utility functions -to assist you in constructing the binary tree. - -Your job is to implement a function, build_parse_tree, that takes in a list of -tokens and produces a parse tree according to the following rules: - - Create an empty node. - While there are tokens remaining, consume a token from the available input. - - 1. If that token is a '(', call build_parse_tree on the remaining input, - and assign the results of that to the left side of your current node. - - 2. If the token is an operator + - / *, set the current node's value to - that operator, then call build_parse_tree on the remaining input and assign - the result of that to the right side of your current node. - - 3. If the token is a number, set the value of the current node to the - number (converting it from a string) and return that node. - - 4. If the token is a ')', return the current node. - -Applying these rules should produce a valid parse tree that can then be fed -into the evaluate_expression() function. If you run exercise12.py, the main function -should output a '24' given the sample input. - -It has an example (which you should feel free to modify) of taking an input -string, tokenizing it, parsing the tokens, then evaluating the 'parse tree'. -All these steps are required for the program to run. With the current stub code -in place, the program will print a '5'. - -You do not need to modify anything except the build_parse_tree function, but -feel free to experiment with the other functions available. - -Concepts required: - * Binary trees - * Recursion - -Resources: - * http://interactivepython.org/courselib/static/pythonds/Trees/bintreeapps.html#parse-tree - * http://interactivepython.org/courselib/static/pythonds/Recursion/recursionsimple.html#what-is-recursion From fad66f04bed00d459fbadd693ac5b6f7c8f8447f Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 15 May 2014 11:39:09 -0700 Subject: [PATCH 040/135] readme --- Whiteboarding/README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Whiteboarding/README.md diff --git a/Whiteboarding/README.md b/Whiteboarding/README.md new file mode 100644 index 0000000..93ab89e --- /dev/null +++ b/Whiteboarding/README.md @@ -0,0 +1,4 @@ +Whiteboarding +======= + +Here there be puppies. From c0323e9d9617a3cbe8978e969511c4c8a7a210cf Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 15 May 2014 11:40:09 -0700 Subject: [PATCH 041/135] readme --- Whiteboarding/Trees03/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Whiteboarding/Trees03/{README => README.md} (100%) diff --git a/Whiteboarding/Trees03/README b/Whiteboarding/Trees03/README.md similarity index 100% rename from Whiteboarding/Trees03/README rename to Whiteboarding/Trees03/README.md From adcf176a02c541d8c3380fc1926fa4d07a1f26a4 Mon Sep 17 00:00:00 2001 From: LC Date: Tue, 27 May 2014 16:23:38 -0700 Subject: [PATCH 042/135] 'removed broken link' --- Exercise04/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Exercise04/README.md b/Exercise04/README.md index 18cec73..a16d840 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -7,7 +7,6 @@ First, work through the following resources on lists: * http://learnpythonthehardway.org/book/ex33.html * http://learnpythonthehardway.org/book/ex34.html * http://learnpythonthehardway.org/book/ex38.html -* http://www.learnpython.org/Lists * http://docs.python.org/tutorial/introduction.html#lists * http://docs.python.org/tutorial/datastructures.html#more-on-lists --> stop reading before section 5.1.1 From 5edd80d5f0fb4c31f924d8c15c765f7035b08e57 Mon Sep 17 00:00:00 2001 From: LC Date: Tue, 27 May 2014 16:26:57 -0700 Subject: [PATCH 043/135] correcting tiny typo -- moto -> motto --- Exercise01/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 4d7dc3d..7a2f3f1 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -93,7 +93,7 @@ Version Control (git) ------- While you're writing your code, try and remember to use 'git' at various points to save your progress. If you've never used version control before, it's a lot like enabling "Track Changes" in a Microsoft Word document. Every time you "commit" your code, you're saving a snapshot in time. If you make a change you don't like or mess something up, you can rollback to a previous commit. -For those of you who play adventure games, the moto "Save Early, Save Often" should come to mind. +For those of you who play adventure games, the motto "Save Early, Save Often" should come to mind. So if you take the rough pseudocode outline from above, you'll probably want to go about creating your program in the following order: From 1aa5b8076f0e226883212265bc43815990fe781e Mon Sep 17 00:00:00 2001 From: LC Date: Tue, 27 May 2014 16:33:32 -0700 Subject: [PATCH 044/135] changed link so it works --- Exercise04/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Exercise04/README.md b/Exercise04/README.md index a16d840..d6259f3 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -7,6 +7,7 @@ First, work through the following resources on lists: * http://learnpythonthehardway.org/book/ex33.html * http://learnpythonthehardway.org/book/ex34.html * http://learnpythonthehardway.org/book/ex38.html +* http://learnpython.org/en/Lists * http://docs.python.org/tutorial/introduction.html#lists * http://docs.python.org/tutorial/datastructures.html#more-on-lists --> stop reading before section 5.1.1 From fe7c4b8b2f37cb1a76b8d231f63a5c861cd3dfec Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Wed, 28 May 2014 13:04:57 -0700 Subject: [PATCH 045/135] adding FixErrors --- FixErrors/guess.py | 28 + FixErrors/markov.py | 52 + FixErrors/pg2591.txt | 9496 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 9576 insertions(+) create mode 100644 FixErrors/guess.py create mode 100644 FixErrors/markov.py create mode 100644 FixErrors/pg2591.txt diff --git a/FixErrors/guess.py b/FixErrors/guess.py new file mode 100644 index 0000000..957bd1a --- /dev/null +++ b/FixErrors/guess.py @@ -0,0 +1,28 @@ +""" +greet player + get player name + choose random number between 1 and 100 + while True: + get guess + if guess is incorrect: + give hint + else: + congratulate player +""" + +print "Howdy, what's your name?'' +player = raw_input("(type in your name) ") +print "%s, I'm thinking of a number between 1 and 100. Try to guess my number." % player +num_guesses = 0 +mystery_number = randint(1,100) + +while True: + num_gueses += 1 + guess = raw_input("Your guess? ") + if guess > mystery_number: + print "Your guess is too high, try again." + elif guess < mystery_number: + print "Your guess is too low, try again." + else: + print "Well done, %s! You found my nuber in %d tries." % (player, num_guesses) + diff --git a/FixErrors/markov.py b/FixErrors/markov.py new file mode 100644 index 0000000..fe74cb8 --- /dev/null +++ b/FixErrors/markov.py @@ -0,0 +1,52 @@ +#!/usr/bin/env python + +import sys +import random + +def make_chains(corpus): + """Takes an input text as a string and returns a dictionary of + markov chains.""" + chain = {} + words = corpus.split() + + for i in range(len(words)-2): + pair = (words[i], words[i+1]) + chain[pair] += [ words[i+2] ] + + return chain + +def make_text(chains): + """Takes a dictionary of markov chains and returns random text + based off an original text.""" + # To start, we want a word that starts with a capital letter + start = random.choice(chains.keys + while (start[0][0] != start[0][0].upper()): + start = random.choice(chains.keys()) + + line = list(start) + + last = line[-1][-1] + + while (not line[-1][-1] in ['.','?']): + next = chains[tuple(line[-2:])] + line += [ random.choice(next) ] + + return " ".join(line) + + +def main(): + + filename = '/pg2591.txt' + + # Change this to read input_text from a file + f = open(filename, "r") + chain_dict = make_chains(f.read) + + for i in range(4): + for i in range(4): + print make_text(chain_dict) + print "" + + +if __name__ == "__main__": + main() diff --git a/FixErrors/pg2591.txt b/FixErrors/pg2591.txt new file mode 100644 index 0000000..bdc0f16 --- /dev/null +++ b/FixErrors/pg2591.txt @@ -0,0 +1,9496 @@ +The Project Gutenberg EBook of Grimms' Fairy Tales, by The Brothers Grimm + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org + + +Title: Grimms' Fairy Tales + +Author: The Brothers Grimm + +Translator: Edgar Taylor and Marian Edwardes + +Posting Date: December 14, 2008 [EBook #2591] +Release Date: April, 2001 + +Language: English + + +*** START OF THIS PROJECT GUTENBERG EBOOK GRIMMS' FAIRY TALES *** + + + + +Produced by Emma Dudding, John Bickers, and Dagny + + + + + +FAIRY TALES + +By The Brothers Grimm + + + +PREPARER'S NOTE + + The text is based on translations from + the Grimms' Kinder und Hausmarchen by + Edgar Taylor and Marian Edwardes. + + + + +THE BROTHERS GRIMM FAIRY TALES + + + + +THE GOLDEN BIRD + +A certain king had a beautiful garden, and in the garden stood a tree +which bore golden apples. These apples were always counted, and about +the time when they began to grow ripe it was found that every night one +of them was gone. The king became very angry at this, and ordered the +gardener to keep watch all night under the tree. The gardener set his +eldest son to watch; but about twelve o'clock he fell asleep, and in +the morning another of the apples was missing. Then the second son was +ordered to watch; and at midnight he too fell asleep, and in the morning +another apple was gone. Then the third son offered to keep watch; but +the gardener at first would not let him, for fear some harm should come +to him: however, at last he consented, and the young man laid himself +under the tree to watch. As the clock struck twelve he heard a rustling +noise in the air, and a bird came flying that was of pure gold; and as +it was snapping at one of the apples with its beak, the gardener's son +jumped up and shot an arrow at it. But the arrow did the bird no harm; +only it dropped a golden feather from its tail, and then flew away. +The golden feather was brought to the king in the morning, and all the +council was called together. Everyone agreed that it was worth more than +all the wealth of the kingdom: but the king said, 'One feather is of no +use to me, I must have the whole bird.' + +Then the gardener's eldest son set out and thought to find the golden +bird very easily; and when he had gone but a little way, he came to a +wood, and by the side of the wood he saw a fox sitting; so he took his +bow and made ready to shoot at it. Then the fox said, 'Do not shoot me, +for I will give you good counsel; I know what your business is, and +that you want to find the golden bird. You will reach a village in the +evening; and when you get there, you will see two inns opposite to each +other, one of which is very pleasant and beautiful to look at: go not in +there, but rest for the night in the other, though it may appear to you +to be very poor and mean.' But the son thought to himself, 'What can +such a beast as this know about the matter?' So he shot his arrow at +the fox; but he missed it, and it set up its tail above its back and +ran into the wood. Then he went his way, and in the evening came to +the village where the two inns were; and in one of these were people +singing, and dancing, and feasting; but the other looked very dirty, +and poor. 'I should be very silly,' said he, 'if I went to that shabby +house, and left this charming place'; so he went into the smart house, +and ate and drank at his ease, and forgot the bird, and his country too. + +Time passed on; and as the eldest son did not come back, and no tidings +were heard of him, the second son set out, and the same thing happened +to him. He met the fox, who gave him the good advice: but when he came +to the two inns, his eldest brother was standing at the window where +the merrymaking was, and called to him to come in; and he could not +withstand the temptation, but went in, and forgot the golden bird and +his country in the same manner. + +Time passed on again, and the youngest son too wished to set out into +the wide world to seek for the golden bird; but his father would not +listen to it for a long while, for he was very fond of his son, and +was afraid that some ill luck might happen to him also, and prevent his +coming back. However, at last it was agreed he should go, for he would +not rest at home; and as he came to the wood, he met the fox, and heard +the same good counsel. But he was thankful to the fox, and did not +attempt his life as his brothers had done; so the fox said, 'Sit upon my +tail, and you will travel faster.' So he sat down, and the fox began to +run, and away they went over stock and stone so quick that their hair +whistled in the wind. + +When they came to the village, the son followed the fox's counsel, and +without looking about him went to the shabby inn and rested there all +night at his ease. In the morning came the fox again and met him as he +was beginning his journey, and said, 'Go straight forward, till you come +to a castle, before which lie a whole troop of soldiers fast asleep and +snoring: take no notice of them, but go into the castle and pass on and +on till you come to a room, where the golden bird sits in a wooden cage; +close by it stands a beautiful golden cage; but do not try to take the +bird out of the shabby cage and put it into the handsome one, otherwise +you will repent it.' Then the fox stretched out his tail again, and the +young man sat himself down, and away they went over stock and stone till +their hair whistled in the wind. + +Before the castle gate all was as the fox had said: so the son went in +and found the chamber where the golden bird hung in a wooden cage, and +below stood the golden cage, and the three golden apples that had been +lost were lying close by it. Then thought he to himself, 'It will be a +very droll thing to bring away such a fine bird in this shabby cage'; so +he opened the door and took hold of it and put it into the golden cage. +But the bird set up such a loud scream that all the soldiers awoke, and +they took him prisoner and carried him before the king. The next morning +the court sat to judge him; and when all was heard, it sentenced him to +die, unless he should bring the king the golden horse which could run as +swiftly as the wind; and if he did this, he was to have the golden bird +given him for his own. + +So he set out once more on his journey, sighing, and in great despair, +when on a sudden his friend the fox met him, and said, 'You see now +what has happened on account of your not listening to my counsel. I will +still, however, tell you how to find the golden horse, if you will do as +I bid you. You must go straight on till you come to the castle where the +horse stands in his stall: by his side will lie the groom fast asleep +and snoring: take away the horse quietly, but be sure to put the old +leathern saddle upon him, and not the golden one that is close by it.' +Then the son sat down on the fox's tail, and away they went over stock +and stone till their hair whistled in the wind. + +All went right, and the groom lay snoring with his hand upon the golden +saddle. But when the son looked at the horse, he thought it a great pity +to put the leathern saddle upon it. 'I will give him the good one,' +said he; 'I am sure he deserves it.' As he took up the golden saddle the +groom awoke and cried out so loud, that all the guards ran in and took +him prisoner, and in the morning he was again brought before the court +to be judged, and was sentenced to die. But it was agreed, that, if he +could bring thither the beautiful princess, he should live, and have the +bird and the horse given him for his own. + +Then he went his way very sorrowful; but the old fox came and said, 'Why +did not you listen to me? If you had, you would have carried away +both the bird and the horse; yet will I once more give you counsel. Go +straight on, and in the evening you will arrive at a castle. At twelve +o'clock at night the princess goes to the bathing-house: go up to her +and give her a kiss, and she will let you lead her away; but take care +you do not suffer her to go and take leave of her father and mother.' +Then the fox stretched out his tail, and so away they went over stock +and stone till their hair whistled again. + +As they came to the castle, all was as the fox had said, and at twelve +o'clock the young man met the princess going to the bath and gave her the +kiss, and she agreed to run away with him, but begged with many tears +that he would let her take leave of her father. At first he refused, +but she wept still more and more, and fell at his feet, till at last +he consented; but the moment she came to her father's house the guards +awoke and he was taken prisoner again. + +Then he was brought before the king, and the king said, 'You shall never +have my daughter unless in eight days you dig away the hill that stops +the view from my window.' Now this hill was so big that the whole world +could not take it away: and when he had worked for seven days, and had +done very little, the fox came and said. 'Lie down and go to sleep; I +will work for you.' And in the morning he awoke and the hill was gone; +so he went merrily to the king, and told him that now that it was +removed he must give him the princess. + +Then the king was obliged to keep his word, and away went the young man +and the princess; and the fox came and said to him, 'We will have all +three, the princess, the horse, and the bird.' 'Ah!' said the young man, +'that would be a great thing, but how can you contrive it?' + +'If you will only listen,' said the fox, 'it can be done. When you come +to the king, and he asks for the beautiful princess, you must say, "Here +she is!" Then he will be very joyful; and you will mount the golden +horse that they are to give you, and put out your hand to take leave of +them; but shake hands with the princess last. Then lift her quickly on +to the horse behind you; clap your spurs to his side, and gallop away as +fast as you can.' + +All went right: then the fox said, 'When you come to the castle where +the bird is, I will stay with the princess at the door, and you will +ride in and speak to the king; and when he sees that it is the right +horse, he will bring out the bird; but you must sit still, and say that +you want to look at it, to see whether it is the true golden bird; and +when you get it into your hand, ride away.' + +This, too, happened as the fox said; they carried off the bird, the +princess mounted again, and they rode on to a great wood. Then the fox +came, and said, 'Pray kill me, and cut off my head and my feet.' But the +young man refused to do it: so the fox said, 'I will at any rate give +you good counsel: beware of two things; ransom no one from the gallows, +and sit down by the side of no river.' Then away he went. 'Well,' +thought the young man, 'it is no hard matter to keep that advice.' + +He rode on with the princess, till at last he came to the village where +he had left his two brothers. And there he heard a great noise and +uproar; and when he asked what was the matter, the people said, 'Two men +are going to be hanged.' As he came nearer, he saw that the two men were +his brothers, who had turned robbers; so he said, 'Cannot they in any +way be saved?' But the people said 'No,' unless he would bestow all his +money upon the rascals and buy their liberty. Then he did not stay to +think about the matter, but paid what was asked, and his brothers were +given up, and went on with him towards their home. + +And as they came to the wood where the fox first met them, it was so +cool and pleasant that the two brothers said, 'Let us sit down by the +side of the river, and rest a while, to eat and drink.' So he said, +'Yes,' and forgot the fox's counsel, and sat down on the side of the +river; and while he suspected nothing, they came behind, and threw him +down the bank, and took the princess, the horse, and the bird, and went +home to the king their master, and said. 'All this have we won by our +labour.' Then there was great rejoicing made; but the horse would not +eat, the bird would not sing, and the princess wept. + +The youngest son fell to the bottom of the river's bed: luckily it was +nearly dry, but his bones were almost broken, and the bank was so steep +that he could find no way to get out. Then the old fox came once more, +and scolded him for not following his advice; otherwise no evil would +have befallen him: 'Yet,' said he, 'I cannot leave you here, so lay hold +of my tail and hold fast.' Then he pulled him out of the river, and said +to him, as he got upon the bank, 'Your brothers have set watch to kill +you, if they find you in the kingdom.' So he dressed himself as a poor +man, and came secretly to the king's court, and was scarcely within the +doors when the horse began to eat, and the bird to sing, and the princess +left off weeping. Then he went to the king, and told him all his +brothers' roguery; and they were seized and punished, and he had the +princess given to him again; and after the king's death he was heir to +his kingdom. + +A long while after, he went to walk one day in the wood, and the old fox +met him, and besought him with tears in his eyes to kill him, and cut +off his head and feet. And at last he did so, and in a moment the +fox was changed into a man, and turned out to be the brother of the +princess, who had been lost a great many many years. + + + + +HANS IN LUCK + +Some men are born to good luck: all they do or try to do comes +right--all that falls to them is so much gain--all their geese are +swans--all their cards are trumps--toss them which way you will, they +will always, like poor puss, alight upon their legs, and only move on so +much the faster. The world may very likely not always think of them as +they think of themselves, but what care they for the world? what can it +know about the matter? + +One of these lucky beings was neighbour Hans. Seven long years he had +worked hard for his master. At last he said, 'Master, my time is up; I +must go home and see my poor mother once more: so pray pay me my wages +and let me go.' And the master said, 'You have been a faithful and good +servant, Hans, so your pay shall be handsome.' Then he gave him a lump +of silver as big as his head. + +Hans took out his pocket-handkerchief, put the piece of silver into it, +threw it over his shoulder, and jogged off on his road homewards. As he +went lazily on, dragging one foot after another, a man came in sight, +trotting gaily along on a capital horse. 'Ah!' said Hans aloud, 'what a +fine thing it is to ride on horseback! There he sits as easy and happy +as if he was at home, in the chair by his fireside; he trips against no +stones, saves shoe-leather, and gets on he hardly knows how.' Hans did +not speak so softly but the horseman heard it all, and said, 'Well, +friend, why do you go on foot then?' 'Ah!' said he, 'I have this load to +carry: to be sure it is silver, but it is so heavy that I can't hold up +my head, and you must know it hurts my shoulder sadly.' 'What do you say +of making an exchange?' said the horseman. 'I will give you my horse, +and you shall give me the silver; which will save you a great deal of +trouble in carrying such a heavy load about with you.' 'With all my +heart,' said Hans: 'but as you are so kind to me, I must tell you one +thing--you will have a weary task to draw that silver about with you.' +However, the horseman got off, took the silver, helped Hans up, gave him +the bridle into one hand and the whip into the other, and said, 'When +you want to go very fast, smack your lips loudly together, and cry +"Jip!"' + +Hans was delighted as he sat on the horse, drew himself up, squared his +elbows, turned out his toes, cracked his whip, and rode merrily off, one +minute whistling a merry tune, and another singing, + + 'No care and no sorrow, + A fig for the morrow! + We'll laugh and be merry, + Sing neigh down derry!' + +After a time he thought he should like to go a little faster, so he +smacked his lips and cried 'Jip!' Away went the horse full gallop; and +before Hans knew what he was about, he was thrown off, and lay on his +back by the road-side. His horse would have ran off, if a shepherd who +was coming by, driving a cow, had not stopped it. Hans soon came to +himself, and got upon his legs again, sadly vexed, and said to the +shepherd, 'This riding is no joke, when a man has the luck to get upon +a beast like this that stumbles and flings him off as if it would break +his neck. However, I'm off now once for all: I like your cow now a great +deal better than this smart beast that played me this trick, and has +spoiled my best coat, you see, in this puddle; which, by the by, smells +not very like a nosegay. One can walk along at one's leisure behind that +cow--keep good company, and have milk, butter, and cheese, every day, +into the bargain. What would I give to have such a prize!' 'Well,' said +the shepherd, 'if you are so fond of her, I will change my cow for your +horse; I like to do good to my neighbours, even though I lose by it +myself.' 'Done!' said Hans, merrily. 'What a noble heart that good man +has!' thought he. Then the shepherd jumped upon the horse, wished Hans +and the cow good morning, and away he rode. + +Hans brushed his coat, wiped his face and hands, rested a while, and +then drove off his cow quietly, and thought his bargain a very lucky +one. 'If I have only a piece of bread (and I certainly shall always be +able to get that), I can, whenever I like, eat my butter and cheese with +it; and when I am thirsty I can milk my cow and drink the milk: and what +can I wish for more?' When he came to an inn, he halted, ate up all his +bread, and gave away his last penny for a glass of beer. When he had +rested himself he set off again, driving his cow towards his mother's +village. But the heat grew greater as soon as noon came on, till at +last, as he found himself on a wide heath that would take him more than +an hour to cross, he began to be so hot and parched that his tongue +clave to the roof of his mouth. 'I can find a cure for this,' thought +he; 'now I will milk my cow and quench my thirst': so he tied her to the +stump of a tree, and held his leathern cap to milk into; but not a drop +was to be had. Who would have thought that this cow, which was to bring +him milk and butter and cheese, was all that time utterly dry? Hans had +not thought of looking to that. + +While he was trying his luck in milking, and managing the matter very +clumsily, the uneasy beast began to think him very troublesome; and at +last gave him such a kick on the head as knocked him down; and there he +lay a long while senseless. Luckily a butcher soon came by, driving a +pig in a wheelbarrow. 'What is the matter with you, my man?' said the +butcher, as he helped him up. Hans told him what had happened, how he +was dry, and wanted to milk his cow, but found the cow was dry too. Then +the butcher gave him a flask of ale, saying, 'There, drink and refresh +yourself; your cow will give you no milk: don't you see she is an old +beast, good for nothing but the slaughter-house?' 'Alas, alas!' said +Hans, 'who would have thought it? What a shame to take my horse, and +give me only a dry cow! If I kill her, what will she be good for? I hate +cow-beef; it is not tender enough for me. If it were a pig now--like +that fat gentleman you are driving along at his ease--one could do +something with it; it would at any rate make sausages.' 'Well,' said +the butcher, 'I don't like to say no, when one is asked to do a kind, +neighbourly thing. To please you I will change, and give you my fine fat +pig for the cow.' 'Heaven reward you for your kindness and self-denial!' +said Hans, as he gave the butcher the cow; and taking the pig off the +wheel-barrow, drove it away, holding it by the string that was tied to +its leg. + +So on he jogged, and all seemed now to go right with him: he had met +with some misfortunes, to be sure; but he was now well repaid for all. +How could it be otherwise with such a travelling companion as he had at +last got? + +The next man he met was a countryman carrying a fine white goose. The +countryman stopped to ask what was o'clock; this led to further chat; +and Hans told him all his luck, how he had so many good bargains, and +how all the world went gay and smiling with him. The countryman then +began to tell his tale, and said he was going to take the goose to a +christening. 'Feel,' said he, 'how heavy it is, and yet it is only eight +weeks old. Whoever roasts and eats it will find plenty of fat upon it, +it has lived so well!' 'You're right,' said Hans, as he weighed it in +his hand; 'but if you talk of fat, my pig is no trifle.' Meantime the +countryman began to look grave, and shook his head. 'Hark ye!' said he, +'my worthy friend, you seem a good sort of fellow, so I can't help doing +you a kind turn. Your pig may get you into a scrape. In the village I +just came from, the squire has had a pig stolen out of his sty. I was +dreadfully afraid when I saw you that you had got the squire's pig. If +you have, and they catch you, it will be a bad job for you. The least +they will do will be to throw you into the horse-pond. Can you swim?' + +Poor Hans was sadly frightened. 'Good man,' cried he, 'pray get me out +of this scrape. I know nothing of where the pig was either bred or born; +but he may have been the squire's for aught I can tell: you know this +country better than I do, take my pig and give me the goose.' 'I ought +to have something into the bargain,' said the countryman; 'give a fat +goose for a pig, indeed! 'Tis not everyone would do so much for you as +that. However, I will not be hard upon you, as you are in trouble.' Then +he took the string in his hand, and drove off the pig by a side path; +while Hans went on the way homewards free from care. 'After all,' +thought he, 'that chap is pretty well taken in. I don't care whose pig +it is, but wherever it came from it has been a very good friend to me. I +have much the best of the bargain. First there will be a capital roast; +then the fat will find me in goose-grease for six months; and then there +are all the beautiful white feathers. I will put them into my pillow, +and then I am sure I shall sleep soundly without rocking. How happy my +mother will be! Talk of a pig, indeed! Give me a fine fat goose.' + +As he came to the next village, he saw a scissor-grinder with his wheel, +working and singing, + + 'O'er hill and o'er dale + So happy I roam, + Work light and live well, + All the world is my home; + Then who so blythe, so merry as I?' + +Hans stood looking on for a while, and at last said, 'You must be well +off, master grinder! you seem so happy at your work.' 'Yes,' said the +other, 'mine is a golden trade; a good grinder never puts his hand +into his pocket without finding money in it--but where did you get that +beautiful goose?' 'I did not buy it, I gave a pig for it.' 'And where +did you get the pig?' 'I gave a cow for it.' 'And the cow?' 'I gave a +horse for it.' 'And the horse?' 'I gave a lump of silver as big as my +head for it.' 'And the silver?' 'Oh! I worked hard for that seven long +years.' 'You have thriven well in the world hitherto,' said the grinder, +'now if you could find money in your pocket whenever you put your hand +in it, your fortune would be made.' 'Very true: but how is that to be +managed?' 'How? Why, you must turn grinder like myself,' said the other; +'you only want a grindstone; the rest will come of itself. Here is one +that is but little the worse for wear: I would not ask more than the +value of your goose for it--will you buy?' 'How can you ask?' said +Hans; 'I should be the happiest man in the world, if I could have money +whenever I put my hand in my pocket: what could I want more? there's +the goose.' 'Now,' said the grinder, as he gave him a common rough stone +that lay by his side, 'this is a most capital stone; do but work it well +enough, and you can make an old nail cut with it.' + +Hans took the stone, and went his way with a light heart: his eyes +sparkled for joy, and he said to himself, 'Surely I must have been born +in a lucky hour; everything I could want or wish for comes of itself. +People are so kind; they seem really to think I do them a favour in +letting them make me rich, and giving me good bargains.' + +Meantime he began to be tired, and hungry too, for he had given away his +last penny in his joy at getting the cow. + +At last he could go no farther, for the stone tired him sadly: and he +dragged himself to the side of a river, that he might take a drink of +water, and rest a while. So he laid the stone carefully by his side on +the bank: but, as he stooped down to drink, he forgot it, pushed it a +little, and down it rolled, plump into the stream. + +For a while he watched it sinking in the deep clear water; then sprang +up and danced for joy, and again fell upon his knees and thanked Heaven, +with tears in his eyes, for its kindness in taking away his only plague, +the ugly heavy stone. + +'How happy am I!' cried he; 'nobody was ever so lucky as I.' Then up he +got with a light heart, free from all his troubles, and walked on till +he reached his mother's house, and told her how very easy the road to +good luck was. + + + + +JORINDA AND JORINDEL + +There was once an old castle, that stood in the middle of a deep gloomy +wood, and in the castle lived an old fairy. Now this fairy could take +any shape she pleased. All the day long she flew about in the form of +an owl, or crept about the country like a cat; but at night she always +became an old woman again. When any young man came within a hundred +paces of her castle, he became quite fixed, and could not move a step +till she came and set him free; which she would not do till he had given +her his word never to come there again: but when any pretty maiden came +within that space she was changed into a bird, and the fairy put her +into a cage, and hung her up in a chamber in the castle. There were +seven hundred of these cages hanging in the castle, and all with +beautiful birds in them. + +Now there was once a maiden whose name was Jorinda. She was prettier +than all the pretty girls that ever were seen before, and a shepherd +lad, whose name was Jorindel, was very fond of her, and they were soon +to be married. One day they went to walk in the wood, that they might be +alone; and Jorindel said, 'We must take care that we don't go too near +to the fairy's castle.' It was a beautiful evening; the last rays of the +setting sun shone bright through the long stems of the trees upon +the green underwood beneath, and the turtle-doves sang from the tall +birches. + +Jorinda sat down to gaze upon the sun; Jorindel sat by her side; and +both felt sad, they knew not why; but it seemed as if they were to be +parted from one another for ever. They had wandered a long way; and when +they looked to see which way they should go home, they found themselves +at a loss to know what path to take. + +The sun was setting fast, and already half of its circle had sunk behind +the hill: Jorindel on a sudden looked behind him, and saw through the +bushes that they had, without knowing it, sat down close under the old +walls of the castle. Then he shrank for fear, turned pale, and trembled. +Jorinda was just singing, + + 'The ring-dove sang from the willow spray, + Well-a-day! Well-a-day! + He mourn'd for the fate of his darling mate, + Well-a-day!' + +when her song stopped suddenly. Jorindel turned to see the reason, and +beheld his Jorinda changed into a nightingale, so that her song ended +with a mournful _jug, jug_. An owl with fiery eyes flew three times +round them, and three times screamed: + + 'Tu whu! Tu whu! Tu whu!' + +Jorindel could not move; he stood fixed as a stone, and could neither +weep, nor speak, nor stir hand or foot. And now the sun went quite down; +the gloomy night came; the owl flew into a bush; and a moment after the +old fairy came forth pale and meagre, with staring eyes, and a nose and +chin that almost met one another. + +She mumbled something to herself, seized the nightingale, and went away +with it in her hand. Poor Jorindel saw the nightingale was gone--but +what could he do? He could not speak, he could not move from the spot +where he stood. At last the fairy came back and sang with a hoarse +voice: + + 'Till the prisoner is fast, + And her doom is cast, + There stay! Oh, stay! + When the charm is around her, + And the spell has bound her, + Hie away! away!' + +On a sudden Jorindel found himself free. Then he fell on his knees +before the fairy, and prayed her to give him back his dear Jorinda: but +she laughed at him, and said he should never see her again; then she +went her way. + +He prayed, he wept, he sorrowed, but all in vain. 'Alas!' he said, 'what +will become of me?' He could not go back to his own home, so he went to +a strange village, and employed himself in keeping sheep. Many a time +did he walk round and round as near to the hated castle as he dared go, +but all in vain; he heard or saw nothing of Jorinda. + +At last he dreamt one night that he found a beautiful purple flower, +and that in the middle of it lay a costly pearl; and he dreamt that he +plucked the flower, and went with it in his hand into the castle, and +that everything he touched with it was disenchanted, and that there he +found his Jorinda again. + +In the morning when he awoke, he began to search over hill and dale for +this pretty flower; and eight long days he sought for it in vain: but +on the ninth day, early in the morning, he found the beautiful purple +flower; and in the middle of it was a large dewdrop, as big as a costly +pearl. Then he plucked the flower, and set out and travelled day and +night, till he came again to the castle. + +He walked nearer than a hundred paces to it, and yet he did not become +fixed as before, but found that he could go quite close up to the door. +Jorindel was very glad indeed to see this. Then he touched the door with +the flower, and it sprang open; so that he went in through the court, +and listened when he heard so many birds singing. At last he came to the +chamber where the fairy sat, with the seven hundred birds singing in +the seven hundred cages. When she saw Jorindel she was very angry, and +screamed with rage; but she could not come within two yards of him, for +the flower he held in his hand was his safeguard. He looked around at +the birds, but alas! there were many, many nightingales, and how then +should he find out which was his Jorinda? While he was thinking what to +do, he saw the fairy had taken down one of the cages, and was making the +best of her way off through the door. He ran or flew after her, touched +the cage with the flower, and Jorinda stood before him, and threw her +arms round his neck looking as beautiful as ever, as beautiful as when +they walked together in the wood. + +Then he touched all the other birds with the flower, so that they all +took their old forms again; and he took Jorinda home, where they were +married, and lived happily together many years: and so did a good many +other lads, whose maidens had been forced to sing in the old fairy's +cages by themselves, much longer than they liked. + + + + +THE TRAVELLING MUSICIANS + +An honest farmer had once an ass that had been a faithful servant to him +a great many years, but was now growing old and every day more and more +unfit for work. His master therefore was tired of keeping him and +began to think of putting an end to him; but the ass, who saw that some +mischief was in the wind, took himself slyly off, and began his journey +towards the great city, 'For there,' thought he, 'I may turn musician.' + +After he had travelled a little way, he spied a dog lying by the +roadside and panting as if he were tired. 'What makes you pant so, my +friend?' said the ass. 'Alas!' said the dog, 'my master was going to +knock me on the head, because I am old and weak, and can no longer make +myself useful to him in hunting; so I ran away; but what can I do to +earn my livelihood?' 'Hark ye!' said the ass, 'I am going to the great +city to turn musician: suppose you go with me, and try what you can +do in the same way?' The dog said he was willing, and they jogged on +together. + +They had not gone far before they saw a cat sitting in the middle of the +road and making a most rueful face. 'Pray, my good lady,' said the ass, +'what's the matter with you? You look quite out of spirits!' 'Ah, me!' +said the cat, 'how can one be in good spirits when one's life is in +danger? Because I am beginning to grow old, and had rather lie at my +ease by the fire than run about the house after the mice, my mistress +laid hold of me, and was going to drown me; and though I have been lucky +enough to get away from her, I do not know what I am to live upon.' +'Oh,' said the ass, 'by all means go with us to the great city; you are +a good night singer, and may make your fortune as a musician.' The cat +was pleased with the thought, and joined the party. + +Soon afterwards, as they were passing by a farmyard, they saw a cock +perched upon a gate, and screaming out with all his might and main. +'Bravo!' said the ass; 'upon my word, you make a famous noise; pray what +is all this about?' 'Why,' said the cock, 'I was just now saying that +we should have fine weather for our washing-day, and yet my mistress and +the cook don't thank me for my pains, but threaten to cut off my +head tomorrow, and make broth of me for the guests that are coming +on Sunday!' 'Heaven forbid!' said the ass, 'come with us Master +Chanticleer; it will be better, at any rate, than staying here to have +your head cut off! Besides, who knows? If we care to sing in tune, we +may get up some kind of a concert; so come along with us.' 'With all my +heart,' said the cock: so they all four went on jollily together. + +They could not, however, reach the great city the first day; so when +night came on, they went into a wood to sleep. The ass and the dog laid +themselves down under a great tree, and the cat climbed up into the +branches; while the cock, thinking that the higher he sat the safer he +should be, flew up to the very top of the tree, and then, according to +his custom, before he went to sleep, looked out on all sides of him to +see that everything was well. In doing this, he saw afar off something +bright and shining and calling to his companions said, 'There must be a +house no great way off, for I see a light.' 'If that be the case,' said +the ass, 'we had better change our quarters, for our lodging is not the +best in the world!' 'Besides,' added the dog, 'I should not be the +worse for a bone or two, or a bit of meat.' So they walked off together +towards the spot where Chanticleer had seen the light, and as they drew +near it became larger and brighter, till they at last came close to a +house in which a gang of robbers lived. + +The ass, being the tallest of the company, marched up to the window and +peeped in. 'Well, Donkey,' said Chanticleer, 'what do you see?' 'What +do I see?' replied the ass. 'Why, I see a table spread with all kinds of +good things, and robbers sitting round it making merry.' 'That would +be a noble lodging for us,' said the cock. 'Yes,' said the ass, 'if we +could only get in'; so they consulted together how they should contrive +to get the robbers out; and at last they hit upon a plan. The ass placed +himself upright on his hind legs, with his forefeet resting against the +window; the dog got upon his back; the cat scrambled up to the dog's +shoulders, and the cock flew up and sat upon the cat's head. When +all was ready a signal was given, and they began their music. The ass +brayed, the dog barked, the cat mewed, and the cock screamed; and then +they all broke through the window at once, and came tumbling into +the room, amongst the broken glass, with a most hideous clatter! The +robbers, who had been not a little frightened by the opening concert, +had now no doubt that some frightful hobgoblin had broken in upon them, +and scampered away as fast as they could. + +The coast once clear, our travellers soon sat down and dispatched what +the robbers had left, with as much eagerness as if they had not expected +to eat again for a month. As soon as they had satisfied themselves, they +put out the lights, and each once more sought out a resting-place to +his own liking. The donkey laid himself down upon a heap of straw in +the yard, the dog stretched himself upon a mat behind the door, the +cat rolled herself up on the hearth before the warm ashes, and the +cock perched upon a beam on the top of the house; and, as they were all +rather tired with their journey, they soon fell asleep. + +But about midnight, when the robbers saw from afar that the lights were +out and that all seemed quiet, they began to think that they had been in +too great a hurry to run away; and one of them, who was bolder than +the rest, went to see what was going on. Finding everything still, he +marched into the kitchen, and groped about till he found a match in +order to light a candle; and then, espying the glittering fiery eyes of +the cat, he mistook them for live coals, and held the match to them to +light it. But the cat, not understanding this joke, sprang at his face, +and spat, and scratched at him. This frightened him dreadfully, and away +he ran to the back door; but there the dog jumped up and bit him in the +leg; and as he was crossing over the yard the ass kicked him; and the +cock, who had been awakened by the noise, crowed with all his might. At +this the robber ran back as fast as he could to his comrades, and told +the captain how a horrid witch had got into the house, and had spat at +him and scratched his face with her long bony fingers; how a man with a +knife in his hand had hidden himself behind the door, and stabbed him +in the leg; how a black monster stood in the yard and struck him with a +club, and how the devil had sat upon the top of the house and cried out, +'Throw the rascal up here!' After this the robbers never dared to go +back to the house; but the musicians were so pleased with their quarters +that they took up their abode there; and there they are, I dare say, at +this very day. + + + + +OLD SULTAN + +A shepherd had a faithful dog, called Sultan, who was grown very old, +and had lost all his teeth. And one day when the shepherd and his wife +were standing together before the house the shepherd said, 'I will shoot +old Sultan tomorrow morning, for he is of no use now.' But his wife +said, 'Pray let the poor faithful creature live; he has served us well a +great many years, and we ought to give him a livelihood for the rest of +his days.' 'But what can we do with him?' said the shepherd, 'he has not +a tooth in his head, and the thieves don't care for him at all; to +be sure he has served us, but then he did it to earn his livelihood; +tomorrow shall be his last day, depend upon it.' + +Poor Sultan, who was lying close by them, heard all that the shepherd +and his wife said to one another, and was very much frightened to think +tomorrow would be his last day; so in the evening he went to his good +friend the wolf, who lived in the wood, and told him all his sorrows, +and how his master meant to kill him in the morning. 'Make yourself +easy,' said the wolf, 'I will give you some good advice. Your master, +you know, goes out every morning very early with his wife into the +field; and they take their little child with them, and lay it down +behind the hedge in the shade while they are at work. Now do you lie +down close by the child, and pretend to be watching it, and I will come +out of the wood and run away with it; you must run after me as fast as +you can, and I will let it drop; then you may carry it back, and they +will think you have saved their child, and will be so thankful to you +that they will take care of you as long as you live.' The dog liked this +plan very well; and accordingly so it was managed. The wolf ran with the +child a little way; the shepherd and his wife screamed out; but Sultan +soon overtook him, and carried the poor little thing back to his master +and mistress. Then the shepherd patted him on the head, and said, 'Old +Sultan has saved our child from the wolf, and therefore he shall live +and be well taken care of, and have plenty to eat. Wife, go home, and +give him a good dinner, and let him have my old cushion to sleep on +as long as he lives.' So from this time forward Sultan had all that he +could wish for. + +Soon afterwards the wolf came and wished him joy, and said, 'Now, my +good fellow, you must tell no tales, but turn your head the other way +when I want to taste one of the old shepherd's fine fat sheep.' 'No,' +said the Sultan; 'I will be true to my master.' However, the wolf +thought he was in joke, and came one night to get a dainty morsel. But +Sultan had told his master what the wolf meant to do; so he laid wait +for him behind the barn door, and when the wolf was busy looking out for +a good fat sheep, he had a stout cudgel laid about his back, that combed +his locks for him finely. + +Then the wolf was very angry, and called Sultan 'an old rogue,' and +swore he would have his revenge. So the next morning the wolf sent the +boar to challenge Sultan to come into the wood to fight the matter. Now +Sultan had nobody he could ask to be his second but the shepherd's old +three-legged cat; so he took her with him, and as the poor thing limped +along with some trouble, she stuck up her tail straight in the air. + +The wolf and the wild boar were first on the ground; and when they +espied their enemies coming, and saw the cat's long tail standing +straight in the air, they thought she was carrying a sword for Sultan to +fight with; and every time she limped, they thought she was picking up +a stone to throw at them; so they said they should not like this way of +fighting, and the boar lay down behind a bush, and the wolf jumped +up into a tree. Sultan and the cat soon came up, and looked about and +wondered that no one was there. The boar, however, had not quite hidden +himself, for his ears stuck out of the bush; and when he shook one of +them a little, the cat, seeing something move, and thinking it was a +mouse, sprang upon it, and bit and scratched it, so that the boar jumped +up and grunted, and ran away, roaring out, 'Look up in the tree, there +sits the one who is to blame.' So they looked up, and espied the wolf +sitting amongst the branches; and they called him a cowardly rascal, +and would not suffer him to come down till he was heartily ashamed of +himself, and had promised to be good friends again with old Sultan. + + + + +THE STRAW, THE COAL, AND THE BEAN + +In a village dwelt a poor old woman, who had gathered together a dish +of beans and wanted to cook them. So she made a fire on her hearth, and +that it might burn the quicker, she lighted it with a handful of straw. +When she was emptying the beans into the pan, one dropped without her +observing it, and lay on the ground beside a straw, and soon afterwards +a burning coal from the fire leapt down to the two. Then the straw +began and said: 'Dear friends, from whence do you come here?' The coal +replied: 'I fortunately sprang out of the fire, and if I had not escaped +by sheer force, my death would have been certain,--I should have been +burnt to ashes.' The bean said: 'I too have escaped with a whole skin, +but if the old woman had got me into the pan, I should have been made +into broth without any mercy, like my comrades.' 'And would a better +fate have fallen to my lot?' said the straw. 'The old woman has +destroyed all my brethren in fire and smoke; she seized sixty of them at +once, and took their lives. I luckily slipped through her fingers.' + +'But what are we to do now?' said the coal. + +'I think,' answered the bean, 'that as we have so fortunately escaped +death, we should keep together like good companions, and lest a new +mischance should overtake us here, we should go away together, and +repair to a foreign country.' + +The proposition pleased the two others, and they set out on their way +together. Soon, however, they came to a little brook, and as there was +no bridge or foot-plank, they did not know how they were to get over +it. The straw hit on a good idea, and said: 'I will lay myself straight +across, and then you can walk over on me as on a bridge.' The straw +therefore stretched itself from one bank to the other, and the coal, +who was of an impetuous disposition, tripped quite boldly on to the +newly-built bridge. But when she had reached the middle, and heard the +water rushing beneath her, she was after all, afraid, and stood still, +and ventured no farther. The straw, however, began to burn, broke in +two pieces, and fell into the stream. The coal slipped after her, hissed +when she got into the water, and breathed her last. The bean, who had +prudently stayed behind on the shore, could not but laugh at the event, +was unable to stop, and laughed so heartily that she burst. It would +have been all over with her, likewise, if, by good fortune, a tailor who +was travelling in search of work, had not sat down to rest by the brook. +As he had a compassionate heart he pulled out his needle and thread, +and sewed her together. The bean thanked him most prettily, but as the +tailor used black thread, all beans since then have a black seam. + + + + +BRIAR ROSE + +A king and queen once upon a time reigned in a country a great way off, +where there were in those days fairies. Now this king and queen had +plenty of money, and plenty of fine clothes to wear, and plenty of +good things to eat and drink, and a coach to ride out in every day: but +though they had been married many years they had no children, and this +grieved them very much indeed. But one day as the queen was walking +by the side of the river, at the bottom of the garden, she saw a poor +little fish, that had thrown itself out of the water, and lay gasping +and nearly dead on the bank. Then the queen took pity on the little +fish, and threw it back again into the river; and before it swam away +it lifted its head out of the water and said, 'I know what your wish is, +and it shall be fulfilled, in return for your kindness to me--you will +soon have a daughter.' What the little fish had foretold soon came to +pass; and the queen had a little girl, so very beautiful that the king +could not cease looking on it for joy, and said he would hold a great +feast and make merry, and show the child to all the land. So he asked +his kinsmen, and nobles, and friends, and neighbours. But the queen +said, 'I will have the fairies also, that they might be kind and good +to our little daughter.' Now there were thirteen fairies in the kingdom; +but as the king and queen had only twelve golden dishes for them to eat +out of, they were forced to leave one of the fairies without asking her. +So twelve fairies came, each with a high red cap on her head, and red +shoes with high heels on her feet, and a long white wand in her hand: +and after the feast was over they gathered round in a ring and gave all +their best gifts to the little princess. One gave her goodness, another +beauty, another riches, and so on till she had all that was good in the +world. + +Just as eleven of them had done blessing her, a great noise was heard in +the courtyard, and word was brought that the thirteenth fairy was +come, with a black cap on her head, and black shoes on her feet, and a +broomstick in her hand: and presently up she came into the dining-hall. +Now, as she had not been asked to the feast she was very angry, and +scolded the king and queen very much, and set to work to take her +revenge. So she cried out, 'The king's daughter shall, in her fifteenth +year, be wounded by a spindle, and fall down dead.' Then the twelfth of +the friendly fairies, who had not yet given her gift, came forward, and +said that the evil wish must be fulfilled, but that she could soften its +mischief; so her gift was, that the king's daughter, when the spindle +wounded her, should not really die, but should only fall asleep for a +hundred years. + +However, the king hoped still to save his dear child altogether from +the threatened evil; so he ordered that all the spindles in the kingdom +should be bought up and burnt. But all the gifts of the first eleven +fairies were in the meantime fulfilled; for the princess was so +beautiful, and well behaved, and good, and wise, that everyone who knew +her loved her. + +It happened that, on the very day she was fifteen years old, the king +and queen were not at home, and she was left alone in the palace. So she +roved about by herself, and looked at all the rooms and chambers, till +at last she came to an old tower, to which there was a narrow staircase +ending with a little door. In the door there was a golden key, and when +she turned it the door sprang open, and there sat an old lady spinning +away very busily. 'Why, how now, good mother,' said the princess; 'what +are you doing there?' 'Spinning,' said the old lady, and nodded her +head, humming a tune, while buzz! went the wheel. 'How prettily that +little thing turns round!' said the princess, and took the spindle +and began to try and spin. But scarcely had she touched it, before the +fairy's prophecy was fulfilled; the spindle wounded her, and she fell +down lifeless on the ground. + +However, she was not dead, but had only fallen into a deep sleep; and +the king and the queen, who had just come home, and all their court, +fell asleep too; and the horses slept in the stables, and the dogs in +the court, the pigeons on the house-top, and the very flies slept upon +the walls. Even the fire on the hearth left off blazing, and went to +sleep; the jack stopped, and the spit that was turning about with a +goose upon it for the king's dinner stood still; and the cook, who was +at that moment pulling the kitchen-boy by the hair to give him a box +on the ear for something he had done amiss, let him go, and both fell +asleep; the butler, who was slyly tasting the ale, fell asleep with the +jug at his lips: and thus everything stood still, and slept soundly. + +A large hedge of thorns soon grew round the palace, and every year it +became higher and thicker; till at last the old palace was surrounded +and hidden, so that not even the roof or the chimneys could be seen. But +there went a report through all the land of the beautiful sleeping Briar +Rose (for so the king's daughter was called): so that, from time to +time, several kings' sons came, and tried to break through the thicket +into the palace. This, however, none of them could ever do; for the +thorns and bushes laid hold of them, as it were with hands; and there +they stuck fast, and died wretchedly. + +After many, many years there came a king's son into that land: and an +old man told him the story of the thicket of thorns; and how a beautiful +palace stood behind it, and how a wonderful princess, called Briar Rose, +lay in it asleep, with all her court. He told, too, how he had heard +from his grandfather that many, many princes had come, and had tried to +break through the thicket, but that they had all stuck fast in it, and +died. Then the young prince said, 'All this shall not frighten me; I +will go and see this Briar Rose.' The old man tried to hinder him, but +he was bent upon going. + +Now that very day the hundred years were ended; and as the prince came +to the thicket he saw nothing but beautiful flowering shrubs, through +which he went with ease, and they shut in after him as thick as ever. +Then he came at last to the palace, and there in the court lay the dogs +asleep; and the horses were standing in the stables; and on the roof sat +the pigeons fast asleep, with their heads under their wings. And when he +came into the palace, the flies were sleeping on the walls; the spit +was standing still; the butler had the jug of ale at his lips, going +to drink a draught; the maid sat with a fowl in her lap ready to be +plucked; and the cook in the kitchen was still holding up her hand, as +if she was going to beat the boy. + +Then he went on still farther, and all was so still that he could hear +every breath he drew; till at last he came to the old tower, and opened +the door of the little room in which Briar Rose was; and there she lay, +fast asleep on a couch by the window. She looked so beautiful that he +could not take his eyes off her, so he stooped down and gave her a kiss. +But the moment he kissed her she opened her eyes and awoke, and smiled +upon him; and they went out together; and soon the king and queen also +awoke, and all the court, and gazed on each other with great wonder. +And the horses shook themselves, and the dogs jumped up and barked; the +pigeons took their heads from under their wings, and looked about and +flew into the fields; the flies on the walls buzzed again; the fire in +the kitchen blazed up; round went the jack, and round went the spit, +with the goose for the king's dinner upon it; the butler finished his +draught of ale; the maid went on plucking the fowl; and the cook gave +the boy the box on his ear. + +And then the prince and Briar Rose were married, and the wedding feast +was given; and they lived happily together all their lives long. + + + + +THE DOG AND THE SPARROW + +A shepherd's dog had a master who took no care of him, but often let him +suffer the greatest hunger. At last he could bear it no longer; so he +took to his heels, and off he ran in a very sad and sorrowful mood. +On the road he met a sparrow that said to him, 'Why are you so sad, +my friend?' 'Because,' said the dog, 'I am very very hungry, and have +nothing to eat.' 'If that be all,' answered the sparrow, 'come with me +into the next town, and I will soon find you plenty of food.' So on they +went together into the town: and as they passed by a butcher's shop, +the sparrow said to the dog, 'Stand there a little while till I peck you +down a piece of meat.' So the sparrow perched upon the shelf: and having +first looked carefully about her to see if anyone was watching her, she +pecked and scratched at a steak that lay upon the edge of the shelf, +till at last down it fell. Then the dog snapped it up, and scrambled +away with it into a corner, where he soon ate it all up. 'Well,' said +the sparrow, 'you shall have some more if you will; so come with me to +the next shop, and I will peck you down another steak.' When the dog had +eaten this too, the sparrow said to him, 'Well, my good friend, have you +had enough now?' 'I have had plenty of meat,' answered he, 'but I should +like to have a piece of bread to eat after it.' 'Come with me then,' +said the sparrow, 'and you shall soon have that too.' So she took him +to a baker's shop, and pecked at two rolls that lay in the window, till +they fell down: and as the dog still wished for more, she took him to +another shop and pecked down some more for him. When that was eaten, the +sparrow asked him whether he had had enough now. 'Yes,' said he; 'and +now let us take a walk a little way out of the town.' So they both went +out upon the high road; but as the weather was warm, they had not gone +far before the dog said, 'I am very much tired--I should like to take a +nap.' 'Very well,' answered the sparrow, 'do so, and in the meantime +I will perch upon that bush.' So the dog stretched himself out on the +road, and fell fast asleep. Whilst he slept, there came by a carter with +a cart drawn by three horses, and loaded with two casks of wine. The +sparrow, seeing that the carter did not turn out of the way, but would +go on in the track in which the dog lay, so as to drive over him, called +out, 'Stop! stop! Mr Carter, or it shall be the worse for you.' But the +carter, grumbling to himself, 'You make it the worse for me, indeed! +what can you do?' cracked his whip, and drove his cart over the poor +dog, so that the wheels crushed him to death. 'There,' cried the +sparrow, 'thou cruel villain, thou hast killed my friend the dog. Now +mind what I say. This deed of thine shall cost thee all thou art worth.' +'Do your worst, and welcome,' said the brute, 'what harm can you do me?' +and passed on. But the sparrow crept under the tilt of the cart, and +pecked at the bung of one of the casks till she loosened it; and then +all the wine ran out, without the carter seeing it. At last he looked +round, and saw that the cart was dripping, and the cask quite empty. +'What an unlucky wretch I am!' cried he. 'Not wretch enough yet!' said +the sparrow, as she alighted upon the head of one of the horses, and +pecked at him till he reared up and kicked. When the carter saw this, +he drew out his hatchet and aimed a blow at the sparrow, meaning to kill +her; but she flew away, and the blow fell upon the poor horse's head +with such force, that he fell down dead. 'Unlucky wretch that I am!' +cried he. 'Not wretch enough yet!' said the sparrow. And as the carter +went on with the other two horses, she again crept under the tilt of the +cart, and pecked out the bung of the second cask, so that all the wine +ran out. When the carter saw this, he again cried out, 'Miserable wretch +that I am!' But the sparrow answered, 'Not wretch enough yet!' and +perched on the head of the second horse, and pecked at him too. The +carter ran up and struck at her again with his hatchet; but away she +flew, and the blow fell upon the second horse and killed him on the +spot. 'Unlucky wretch that I am!' said he. 'Not wretch enough yet!' said +the sparrow; and perching upon the third horse, she began to peck him +too. The carter was mad with fury; and without looking about him, or +caring what he was about, struck again at the sparrow; but killed his +third horse as he done the other two. 'Alas! miserable wretch that I +am!' cried he. 'Not wretch enough yet!' answered the sparrow as she flew +away; 'now will I plague and punish thee at thy own house.' The +carter was forced at last to leave his cart behind him, and to go home +overflowing with rage and vexation. 'Alas!' said he to his wife, 'what +ill luck has befallen me!--my wine is all spilt, and my horses all three +dead.' 'Alas! husband,' replied she, 'and a wicked bird has come into +the house, and has brought with her all the birds in the world, I am +sure, and they have fallen upon our corn in the loft, and are eating it +up at such a rate!' Away ran the husband upstairs, and saw thousands of +birds sitting upon the floor eating up his corn, with the sparrow in the +midst of them. 'Unlucky wretch that I am!' cried the carter; for he saw +that the corn was almost all gone. 'Not wretch enough yet!' said the +sparrow; 'thy cruelty shall cost thee thy life yet!' and away she flew. + +The carter seeing that he had thus lost all that he had, went down +into his kitchen; and was still not sorry for what he had done, but sat +himself angrily and sulkily in the chimney corner. But the sparrow sat +on the outside of the window, and cried 'Carter! thy cruelty shall cost +thee thy life!' With that he jumped up in a rage, seized his hatchet, +and threw it at the sparrow; but it missed her, and only broke the +window. The sparrow now hopped in, perched upon the window-seat, and +cried, 'Carter! it shall cost thee thy life!' Then he became mad and +blind with rage, and struck the window-seat with such force that he +cleft it in two: and as the sparrow flew from place to place, the carter +and his wife were so furious, that they broke all their furniture, +glasses, chairs, benches, the table, and at last the walls, without +touching the bird at all. In the end, however, they caught her: and the +wife said, 'Shall I kill her at once?' 'No,' cried he, 'that is letting +her off too easily: she shall die a much more cruel death; I will eat +her.' But the sparrow began to flutter about, and stretch out her neck +and cried, 'Carter! it shall cost thee thy life yet!' With that he +could wait no longer: so he gave his wife the hatchet, and cried, 'Wife, +strike at the bird and kill her in my hand.' And the wife struck; but +she missed her aim, and hit her husband on the head so that he fell down +dead, and the sparrow flew quietly home to her nest. + + + + +THE TWELVE DANCING PRINCESSES + +There was a king who had twelve beautiful daughters. They slept in +twelve beds all in one room; and when they went to bed, the doors were +shut and locked up; but every morning their shoes were found to be quite +worn through as if they had been danced in all night; and yet nobody +could find out how it happened, or where they had been. + +Then the king made it known to all the land, that if any person could +discover the secret, and find out where it was that the princesses +danced in the night, he should have the one he liked best for his +wife, and should be king after his death; but whoever tried and did not +succeed, after three days and nights, should be put to death. + +A king's son soon came. He was well entertained, and in the evening was +taken to the chamber next to the one where the princesses lay in their +twelve beds. There he was to sit and watch where they went to dance; +and, in order that nothing might pass without his hearing it, the door +of his chamber was left open. But the king's son soon fell asleep; and +when he awoke in the morning he found that the princesses had all been +dancing, for the soles of their shoes were full of holes. The same thing +happened the second and third night: so the king ordered his head to be +cut off. After him came several others; but they had all the same luck, +and all lost their lives in the same manner. + +Now it chanced that an old soldier, who had been wounded in battle +and could fight no longer, passed through the country where this king +reigned: and as he was travelling through a wood, he met an old woman, +who asked him where he was going. 'I hardly know where I am going, or +what I had better do,' said the soldier; 'but I think I should like very +well to find out where it is that the princesses dance, and then in time +I might be a king.' 'Well,' said the old dame, 'that is no very hard +task: only take care not to drink any of the wine which one of the +princesses will bring to you in the evening; and as soon as she leaves +you pretend to be fast asleep.' + +Then she gave him a cloak, and said, 'As soon as you put that on +you will become invisible, and you will then be able to follow the +princesses wherever they go.' When the soldier heard all this good +counsel, he determined to try his luck: so he went to the king, and said +he was willing to undertake the task. + +He was as well received as the others had been, and the king ordered +fine royal robes to be given him; and when the evening came he was led +to the outer chamber. Just as he was going to lie down, the eldest of +the princesses brought him a cup of wine; but the soldier threw it all +away secretly, taking care not to drink a drop. Then he laid himself +down on his bed, and in a little while began to snore very loud as if +he was fast asleep. When the twelve princesses heard this they laughed +heartily; and the eldest said, 'This fellow too might have done a wiser +thing than lose his life in this way!' Then they rose up and opened +their drawers and boxes, and took out all their fine clothes, and +dressed themselves at the glass, and skipped about as if they were eager +to begin dancing. But the youngest said, 'I don't know how it is, while +you are so happy I feel very uneasy; I am sure some mischance will +befall us.' 'You simpleton,' said the eldest, 'you are always afraid; +have you forgotten how many kings' sons have already watched in vain? +And as for this soldier, even if I had not given him his sleeping +draught, he would have slept soundly enough.' + +When they were all ready, they went and looked at the soldier; but he +snored on, and did not stir hand or foot: so they thought they were +quite safe; and the eldest went up to her own bed and clapped her hands, +and the bed sank into the floor and a trap-door flew open. The soldier +saw them going down through the trap-door one after another, the eldest +leading the way; and thinking he had no time to lose, he jumped up, put +on the cloak which the old woman had given him, and followed them; +but in the middle of the stairs he trod on the gown of the youngest +princess, and she cried out to her sisters, 'All is not right; someone +took hold of my gown.' 'You silly creature!' said the eldest, 'it is +nothing but a nail in the wall.' Then down they all went, and at the +bottom they found themselves in a most delightful grove of trees; and +the leaves were all of silver, and glittered and sparkled beautifully. +The soldier wished to take away some token of the place; so he broke +off a little branch, and there came a loud noise from the tree. Then the +youngest daughter said again, 'I am sure all is not right--did not you +hear that noise? That never happened before.' But the eldest said, 'It +is only our princes, who are shouting for joy at our approach.' + +Then they came to another grove of trees, where all the leaves were of +gold; and afterwards to a third, where the leaves were all glittering +diamonds. And the soldier broke a branch from each; and every time there +was a loud noise, which made the youngest sister tremble with fear; but +the eldest still said, it was only the princes, who were crying for joy. +So they went on till they came to a great lake; and at the side of the +lake there lay twelve little boats with twelve handsome princes in them, +who seemed to be waiting there for the princesses. + +One of the princesses went into each boat, and the soldier stepped into +the same boat with the youngest. As they were rowing over the lake, the +prince who was in the boat with the youngest princess and the soldier +said, 'I do not know why it is, but though I am rowing with all my might +we do not get on so fast as usual, and I am quite tired: the boat +seems very heavy today.' 'It is only the heat of the weather,' said the +princess: 'I feel it very warm too.' + +On the other side of the lake stood a fine illuminated castle, from +which came the merry music of horns and trumpets. There they all landed, +and went into the castle, and each prince danced with his princess; and +the soldier, who was all the time invisible, danced with them too; and +when any of the princesses had a cup of wine set by her, he drank it +all up, so that when she put the cup to her mouth it was empty. At this, +too, the youngest sister was terribly frightened, but the eldest always +silenced her. They danced on till three o'clock in the morning, and then +all their shoes were worn out, so that they were obliged to leave off. +The princes rowed them back again over the lake (but this time the +soldier placed himself in the boat with the eldest princess); and on the +opposite shore they took leave of each other, the princesses promising +to come again the next night. + +When they came to the stairs, the soldier ran on before the princesses, +and laid himself down; and as the twelve sisters slowly came up very +much tired, they heard him snoring in his bed; so they said, 'Now all +is quite safe'; then they undressed themselves, put away their fine +clothes, pulled off their shoes, and went to bed. In the morning the +soldier said nothing about what had happened, but determined to see more +of this strange adventure, and went again the second and third night; +and every thing happened just as before; the princesses danced each time +till their shoes were worn to pieces, and then returned home. However, +on the third night the soldier carried away one of the golden cups as a +token of where he had been. + +As soon as the time came when he was to declare the secret, he was taken +before the king with the three branches and the golden cup; and the +twelve princesses stood listening behind the door to hear what he would +say. And when the king asked him. 'Where do my twelve daughters dance at +night?' he answered, 'With twelve princes in a castle under ground.' And +then he told the king all that had happened, and showed him the three +branches and the golden cup which he had brought with him. Then the king +called for the princesses, and asked them whether what the soldier said +was true: and when they saw that they were discovered, and that it was +of no use to deny what had happened, they confessed it all. And the king +asked the soldier which of them he would choose for his wife; and he +answered, 'I am not very young, so I will have the eldest.'--And they +were married that very day, and the soldier was chosen to be the king's +heir. + + + + +THE FISHERMAN AND HIS WIFE + +There was once a fisherman who lived with his wife in a pigsty, close +by the seaside. The fisherman used to go out all day long a-fishing; and +one day, as he sat on the shore with his rod, looking at the sparkling +waves and watching his line, all on a sudden his float was dragged away +deep into the water: and in drawing it up he pulled out a great fish. +But the fish said, 'Pray let me live! I am not a real fish; I am an +enchanted prince: put me in the water again, and let me go!' 'Oh, ho!' +said the man, 'you need not make so many words about the matter; I will +have nothing to do with a fish that can talk: so swim away, sir, as soon +as you please!' Then he put him back into the water, and the fish darted +straight down to the bottom, and left a long streak of blood behind him +on the wave. + +When the fisherman went home to his wife in the pigsty, he told her how +he had caught a great fish, and how it had told him it was an enchanted +prince, and how, on hearing it speak, he had let it go again. 'Did not +you ask it for anything?' said the wife, 'we live very wretchedly here, +in this nasty dirty pigsty; do go back and tell the fish we want a snug +little cottage.' + +The fisherman did not much like the business: however, he went to the +seashore; and when he came back there the water looked all yellow and +green. And he stood at the water's edge, and said: + + 'O man of the sea! + Hearken to me! + My wife Ilsabill + Will have her own will, + And hath sent me to beg a boon of thee!' + +Then the fish came swimming to him, and said, 'Well, what is her will? +What does your wife want?' 'Ah!' said the fisherman, 'she says that when +I had caught you, I ought to have asked you for something before I let +you go; she does not like living any longer in the pigsty, and wants +a snug little cottage.' 'Go home, then,' said the fish; 'she is in the +cottage already!' So the man went home, and saw his wife standing at the +door of a nice trim little cottage. 'Come in, come in!' said she; 'is +not this much better than the filthy pigsty we had?' And there was a +parlour, and a bedchamber, and a kitchen; and behind the cottage there +was a little garden, planted with all sorts of flowers and fruits; and +there was a courtyard behind, full of ducks and chickens. 'Ah!' said the +fisherman, 'how happily we shall live now!' 'We will try to do so, at +least,' said his wife. + +Everything went right for a week or two, and then Dame Ilsabill said, +'Husband, there is not near room enough for us in this cottage; the +courtyard and the garden are a great deal too small; I should like to +have a large stone castle to live in: go to the fish again and tell him +to give us a castle.' 'Wife,' said the fisherman, 'I don't like to go to +him again, for perhaps he will be angry; we ought to be easy with this +pretty cottage to live in.' 'Nonsense!' said the wife; 'he will do it +very willingly, I know; go along and try!' + +The fisherman went, but his heart was very heavy: and when he came to +the sea, it looked blue and gloomy, though it was very calm; and he went +close to the edge of the waves, and said: + + 'O man of the sea! + Hearken to me! + My wife Ilsabill + Will have her own will, + And hath sent me to beg a boon of thee!' + +'Well, what does she want now?' said the fish. 'Ah!' said the man, +dolefully, 'my wife wants to live in a stone castle.' 'Go home, then,' +said the fish; 'she is standing at the gate of it already.' So away went +the fisherman, and found his wife standing before the gate of a great +castle. 'See,' said she, 'is not this grand?' With that they went into +the castle together, and found a great many servants there, and the +rooms all richly furnished, and full of golden chairs and tables; and +behind the castle was a garden, and around it was a park half a +mile long, full of sheep, and goats, and hares, and deer; and in the +courtyard were stables and cow-houses. 'Well,' said the man, 'now we +will live cheerful and happy in this beautiful castle for the rest of +our lives.' 'Perhaps we may,' said the wife; 'but let us sleep upon it, +before we make up our minds to that.' So they went to bed. + +The next morning when Dame Ilsabill awoke it was broad daylight, and +she jogged the fisherman with her elbow, and said, 'Get up, husband, +and bestir yourself, for we must be king of all the land.' 'Wife, wife,' +said the man, 'why should we wish to be the king? I will not be king.' +'Then I will,' said she. 'But, wife,' said the fisherman, 'how can you +be king--the fish cannot make you a king?' 'Husband,' said she, 'say +no more about it, but go and try! I will be king.' So the man went away +quite sorrowful to think that his wife should want to be king. This time +the sea looked a dark grey colour, and was overspread with curling waves +and the ridges of foam as he cried out: + + 'O man of the sea! + Hearken to me! + My wife Ilsabill + Will have her own will, + And hath sent me to beg a boon of thee!' + +'Well, what would she have now?' said the fish. 'Alas!' said the poor +man, 'my wife wants to be king.' 'Go home,' said the fish; 'she is king +already.' + +Then the fisherman went home; and as he came close to the palace he saw +a troop of soldiers, and heard the sound of drums and trumpets. And when +he went in he saw his wife sitting on a throne of gold and diamonds, +with a golden crown upon her head; and on each side of her stood six +fair maidens, each a head taller than the other. 'Well, wife,' said the +fisherman, 'are you king?' 'Yes,' said she, 'I am king.' And when he had +looked at her for a long time, he said, 'Ah, wife! what a fine thing it +is to be king! Now we shall never have anything more to wish for as long +as we live.' 'I don't know how that may be,' said she; 'never is a long +time. I am king, it is true; but I begin to be tired of that, and I +think I should like to be emperor.' 'Alas, wife! why should you wish to +be emperor?' said the fisherman. 'Husband,' said she, 'go to the fish! +I say I will be emperor.' 'Ah, wife!' replied the fisherman, 'the fish +cannot make an emperor, I am sure, and I should not like to ask him for +such a thing.' 'I am king,' said Ilsabill, 'and you are my slave; so go +at once!' + +So the fisherman was forced to go; and he muttered as he went along, +'This will come to no good, it is too much to ask; the fish will be +tired at last, and then we shall be sorry for what we have done.' He +soon came to the seashore; and the water was quite black and muddy, and +a mighty whirlwind blew over the waves and rolled them about, but he +went as near as he could to the water's brink, and said: + + 'O man of the sea! + Hearken to me! + My wife Ilsabill + Will have her own will, + And hath sent me to beg a boon of thee!' + +'What would she have now?' said the fish. 'Ah!' said the fisherman, +'she wants to be emperor.' 'Go home,' said the fish; 'she is emperor +already.' + +So he went home again; and as he came near he saw his wife Ilsabill +sitting on a very lofty throne made of solid gold, with a great crown on +her head full two yards high; and on each side of her stood her guards +and attendants in a row, each one smaller than the other, from the +tallest giant down to a little dwarf no bigger than my finger. And +before her stood princes, and dukes, and earls: and the fisherman went +up to her and said, 'Wife, are you emperor?' 'Yes,' said she, 'I am +emperor.' 'Ah!' said the man, as he gazed upon her, 'what a fine thing +it is to be emperor!' 'Husband,' said she, 'why should we stop at being +emperor? I will be pope next.' 'O wife, wife!' said he, 'how can you be +pope? there is but one pope at a time in Christendom.' 'Husband,' said +she, 'I will be pope this very day.' 'But,' replied the husband, 'the +fish cannot make you pope.' 'What nonsense!' said she; 'if he can make +an emperor, he can make a pope: go and try him.' + +So the fisherman went. But when he came to the shore the wind was raging +and the sea was tossed up and down in boiling waves, and the ships were +in trouble, and rolled fearfully upon the tops of the billows. In the +middle of the heavens there was a little piece of blue sky, but towards +the south all was red, as if a dreadful storm was rising. At this sight +the fisherman was dreadfully frightened, and he trembled so that his +knees knocked together: but still he went down near to the shore, and +said: + + 'O man of the sea! + Hearken to me! + My wife Ilsabill + Will have her own will, + And hath sent me to beg a boon of thee!' + +'What does she want now?' said the fish. 'Ah!' said the fisherman, 'my +wife wants to be pope.' 'Go home,' said the fish; 'she is pope already.' + +Then the fisherman went home, and found Ilsabill sitting on a throne +that was two miles high. And she had three great crowns on her head, and +around her stood all the pomp and power of the Church. And on each side +of her were two rows of burning lights, of all sizes, the greatest as +large as the highest and biggest tower in the world, and the least no +larger than a small rushlight. 'Wife,' said the fisherman, as he looked +at all this greatness, 'are you pope?' 'Yes,' said she, 'I am pope.' +'Well, wife,' replied he, 'it is a grand thing to be pope; and now +you must be easy, for you can be nothing greater.' 'I will think about +that,' said the wife. Then they went to bed: but Dame Ilsabill could not +sleep all night for thinking what she should be next. At last, as she +was dropping asleep, morning broke, and the sun rose. 'Ha!' thought she, +as she woke up and looked at it through the window, 'after all I cannot +prevent the sun rising.' At this thought she was very angry, and wakened +her husband, and said, 'Husband, go to the fish and tell him I must +be lord of the sun and moon.' The fisherman was half asleep, but the +thought frightened him so much that he started and fell out of bed. +'Alas, wife!' said he, 'cannot you be easy with being pope?' 'No,' +said she, 'I am very uneasy as long as the sun and moon rise without my +leave. Go to the fish at once!' + +Then the man went shivering with fear; and as he was going down to +the shore a dreadful storm arose, so that the trees and the very rocks +shook. And all the heavens became black with stormy clouds, and the +lightnings played, and the thunders rolled; and you might have seen in +the sea great black waves, swelling up like mountains with crowns of +white foam upon their heads. And the fisherman crept towards the sea, +and cried out, as well as he could: + + 'O man of the sea! + Hearken to me! + My wife Ilsabill + Will have her own will, + And hath sent me to beg a boon of thee!' + +'What does she want now?' said the fish. 'Ah!' said he, 'she wants to +be lord of the sun and moon.' 'Go home,' said the fish, 'to your pigsty +again.' + +And there they live to this very day. + + + + +THE WILLOW-WREN AND THE BEAR + +Once in summer-time the bear and the wolf were walking in the forest, +and the bear heard a bird singing so beautifully that he said: 'Brother +wolf, what bird is it that sings so well?' 'That is the King of birds,' +said the wolf, 'before whom we must bow down.' In reality the bird was +the willow-wren. 'IF that's the case,' said the bear, 'I should very +much like to see his royal palace; come, take me thither.' 'That is not +done quite as you seem to think,' said the wolf; 'you must wait until +the Queen comes,' Soon afterwards, the Queen arrived with some food in +her beak, and the lord King came too, and they began to feed their young +ones. The bear would have liked to go at once, but the wolf held him +back by the sleeve, and said: 'No, you must wait until the lord and lady +Queen have gone away again.' So they took stock of the hole where the +nest lay, and trotted away. The bear, however, could not rest until he +had seen the royal palace, and when a short time had passed, went to it +again. The King and Queen had just flown out, so he peeped in and saw +five or six young ones lying there. 'Is that the royal palace?' cried +the bear; 'it is a wretched palace, and you are not King's children, you +are disreputable children!' When the young wrens heard that, they were +frightfully angry, and screamed: 'No, that we are not! Our parents are +honest people! Bear, you will have to pay for that!' + +The bear and the wolf grew uneasy, and turned back and went into their +holes. The young willow-wrens, however, continued to cry and scream, and +when their parents again brought food they said: 'We will not so much as +touch one fly's leg, no, not if we were dying of hunger, until you have +settled whether we are respectable children or not; the bear has been +here and has insulted us!' Then the old King said: 'Be easy, he shall +be punished,' and he at once flew with the Queen to the bear's cave, and +called in: 'Old Growler, why have you insulted my children? You shall +suffer for it--we will punish you by a bloody war.' Thus war was +announced to the Bear, and all four-footed animals were summoned to take +part in it, oxen, asses, cows, deer, and every other animal the earth +contained. And the willow-wren summoned everything which flew in the +air, not only birds, large and small, but midges, and hornets, bees and +flies had to come. + +When the time came for the war to begin, the willow-wren sent out spies +to discover who was the enemy's commander-in-chief. The gnat, who was +the most crafty, flew into the forest where the enemy was assembled, +and hid herself beneath a leaf of the tree where the password was to be +announced. There stood the bear, and he called the fox before him +and said: 'Fox, you are the most cunning of all animals, you shall be +general and lead us.' 'Good,' said the fox, 'but what signal shall we +agree upon?' No one knew that, so the fox said: 'I have a fine long +bushy tail, which almost looks like a plume of red feathers. When I lift +my tail up quite high, all is going well, and you must charge; but if I +let it hang down, run away as fast as you can.' When the gnat had heard +that, she flew away again, and revealed everything, down to the minutest +detail, to the willow-wren. When day broke, and the battle was to begin, +all the four-footed animals came running up with such a noise that the +earth trembled. The willow-wren with his army also came flying through +the air with such a humming, and whirring, and swarming that every one +was uneasy and afraid, and on both sides they advanced against each +other. But the willow-wren sent down the hornet, with orders to settle +beneath the fox's tail, and sting with all his might. When the fox felt +the first string, he started so that he lifted one leg, from pain, but +he bore it, and still kept his tail high in the air; at the second +sting, he was forced to put it down for a moment; at the third, he could +hold out no longer, screamed, and put his tail between his legs. When +the animals saw that, they thought all was lost, and began to flee, each +into his hole, and the birds had won the battle. + +Then the King and Queen flew home to their children and cried: +'Children, rejoice, eat and drink to your heart's content, we have won +the battle!' But the young wrens said: 'We will not eat yet, the bear +must come to the nest, and beg for pardon and say that we are honourable +children, before we will do that.' Then the willow-wren flew to the +bear's hole and cried: 'Growler, you are to come to the nest to my +children, and beg their pardon, or else every rib of your body shall +be broken.' So the bear crept thither in the greatest fear, and begged +their pardon. And now at last the young wrens were satisfied, and sat +down together and ate and drank, and made merry till quite late into the +night. + + + + +THE FROG-PRINCE + +One fine evening a young princess put on her bonnet and clogs, and went +out to take a walk by herself in a wood; and when she came to a cool +spring of water, that rose in the midst of it, she sat herself down +to rest a while. Now she had a golden ball in her hand, which was her +favourite plaything; and she was always tossing it up into the air, and +catching it again as it fell. After a time she threw it up so high that +she missed catching it as it fell; and the ball bounded away, and rolled +along upon the ground, till at last it fell down into the spring. The +princess looked into the spring after her ball, but it was very deep, so +deep that she could not see the bottom of it. Then she began to bewail +her loss, and said, 'Alas! if I could only get my ball again, I would +give all my fine clothes and jewels, and everything that I have in the +world.' + +Whilst she was speaking, a frog put its head out of the water, and said, +'Princess, why do you weep so bitterly?' 'Alas!' said she, 'what can you +do for me, you nasty frog? My golden ball has fallen into the spring.' +The frog said, 'I want not your pearls, and jewels, and fine clothes; +but if you will love me, and let me live with you and eat from off +your golden plate, and sleep upon your bed, I will bring you your ball +again.' 'What nonsense,' thought the princess, 'this silly frog is +talking! He can never even get out of the spring to visit me, though +he may be able to get my ball for me, and therefore I will tell him he +shall have what he asks.' So she said to the frog, 'Well, if you will +bring me my ball, I will do all you ask.' Then the frog put his head +down, and dived deep under the water; and after a little while he came +up again, with the ball in his mouth, and threw it on the edge of the +spring. As soon as the young princess saw her ball, she ran to pick +it up; and she was so overjoyed to have it in her hand again, that she +never thought of the frog, but ran home with it as fast as she could. +The frog called after her, 'Stay, princess, and take me with you as you +said,' But she did not stop to hear a word. + +The next day, just as the princess had sat down to dinner, she heard a +strange noise--tap, tap--plash, plash--as if something was coming up the +marble staircase: and soon afterwards there was a gentle knock at the +door, and a little voice cried out and said: + + 'Open the door, my princess dear, + Open the door to thy true love here! + And mind the words that thou and I said + By the fountain cool, in the greenwood shade.' + +Then the princess ran to the door and opened it, and there she saw +the frog, whom she had quite forgotten. At this sight she was sadly +frightened, and shutting the door as fast as she could came back to her +seat. The king, her father, seeing that something had frightened her, +asked her what was the matter. 'There is a nasty frog,' said she, 'at +the door, that lifted my ball for me out of the spring this morning: I +told him that he should live with me here, thinking that he could never +get out of the spring; but there he is at the door, and he wants to come +in.' + +While she was speaking the frog knocked again at the door, and said: + + 'Open the door, my princess dear, + Open the door to thy true love here! + And mind the words that thou and I said + By the fountain cool, in the greenwood shade.' + +Then the king said to the young princess, 'As you have given your word +you must keep it; so go and let him in.' She did so, and the frog hopped +into the room, and then straight on--tap, tap--plash, plash--from the +bottom of the room to the top, till he came up close to the table where +the princess sat. 'Pray lift me upon chair,' said he to the princess, +'and let me sit next to you.' As soon as she had done this, the frog +said, 'Put your plate nearer to me, that I may eat out of it.' This +she did, and when he had eaten as much as he could, he said, 'Now I am +tired; carry me upstairs, and put me into your bed.' And the princess, +though very unwilling, took him up in her hand, and put him upon the +pillow of her own bed, where he slept all night long. As soon as it was +light he jumped up, hopped downstairs, and went out of the house. +'Now, then,' thought the princess, 'at last he is gone, and I shall be +troubled with him no more.' + +But she was mistaken; for when night came again she heard the same +tapping at the door; and the frog came once more, and said: + + 'Open the door, my princess dear, + Open the door to thy true love here! + And mind the words that thou and I said + By the fountain cool, in the greenwood shade.' + +And when the princess opened the door the frog came in, and slept upon +her pillow as before, till the morning broke. And the third night he did +the same. But when the princess awoke on the following morning she was +astonished to see, instead of the frog, a handsome prince, gazing on her +with the most beautiful eyes she had ever seen, and standing at the head +of her bed. + +He told her that he had been enchanted by a spiteful fairy, who had +changed him into a frog; and that he had been fated so to abide till +some princess should take him out of the spring, and let him eat from +her plate, and sleep upon her bed for three nights. 'You,' said the +prince, 'have broken his cruel charm, and now I have nothing to wish for +but that you should go with me into my father's kingdom, where I will +marry you, and love you as long as you live.' + +The young princess, you may be sure, was not long in saying 'Yes' to +all this; and as they spoke a gay coach drove up, with eight beautiful +horses, decked with plumes of feathers and a golden harness; and behind +the coach rode the prince's servant, faithful Heinrich, who had bewailed +the misfortunes of his dear master during his enchantment so long and so +bitterly, that his heart had well-nigh burst. + +They then took leave of the king, and got into the coach with eight +horses, and all set out, full of joy and merriment, for the prince's +kingdom, which they reached safely; and there they lived happily a great +many years. + + + + +CAT AND MOUSE IN PARTNERSHIP + +A certain cat had made the acquaintance of a mouse, and had said so much +to her about the great love and friendship she felt for her, that at +length the mouse agreed that they should live and keep house together. +'But we must make a provision for winter, or else we shall suffer +from hunger,' said the cat; 'and you, little mouse, cannot venture +everywhere, or you will be caught in a trap some day.' The good advice +was followed, and a pot of fat was bought, but they did not know where +to put it. At length, after much consideration, the cat said: 'I know no +place where it will be better stored up than in the church, for no one +dares take anything away from there. We will set it beneath the altar, +and not touch it until we are really in need of it.' So the pot was +placed in safety, but it was not long before the cat had a great +yearning for it, and said to the mouse: 'I want to tell you something, +little mouse; my cousin has brought a little son into the world, and has +asked me to be godmother; he is white with brown spots, and I am to hold +him over the font at the christening. Let me go out today, and you look +after the house by yourself.' 'Yes, yes,' answered the mouse, 'by all +means go, and if you get anything very good to eat, think of me. I +should like a drop of sweet red christening wine myself.' All this, +however, was untrue; the cat had no cousin, and had not been asked to +be godmother. She went straight to the church, stole to the pot of fat, +began to lick at it, and licked the top of the fat off. Then she took a +walk upon the roofs of the town, looked out for opportunities, and then +stretched herself in the sun, and licked her lips whenever she thought +of the pot of fat, and not until it was evening did she return home. +'Well, here you are again,' said the mouse, 'no doubt you have had a +merry day.' 'All went off well,' answered the cat. 'What name did they +give the child?' 'Top off!' said the cat quite coolly. 'Top off!' cried +the mouse, 'that is a very odd and uncommon name, is it a usual one in +your family?' 'What does that matter,' said the cat, 'it is no worse +than Crumb-stealer, as your godchildren are called.' + +Before long the cat was seized by another fit of yearning. She said to +the mouse: 'You must do me a favour, and once more manage the house for +a day alone. I am again asked to be godmother, and, as the child has a +white ring round its neck, I cannot refuse.' The good mouse consented, +but the cat crept behind the town walls to the church, and devoured +half the pot of fat. 'Nothing ever seems so good as what one keeps to +oneself,' said she, and was quite satisfied with her day's work. When +she went home the mouse inquired: 'And what was the child christened?' +'Half-done,' answered the cat. 'Half-done! What are you saying? I +never heard the name in my life, I'll wager anything it is not in the +calendar!' + +The cat's mouth soon began to water for some more licking. 'All good +things go in threes,' said she, 'I am asked to stand godmother again. +The child is quite black, only it has white paws, but with that +exception, it has not a single white hair on its whole body; this only +happens once every few years, you will let me go, won't you?' 'Top-off! +Half-done!' answered the mouse, 'they are such odd names, they make me +very thoughtful.' 'You sit at home,' said the cat, 'in your dark-grey +fur coat and long tail, and are filled with fancies, that's because +you do not go out in the daytime.' During the cat's absence the mouse +cleaned the house, and put it in order, but the greedy cat entirely +emptied the pot of fat. 'When everything is eaten up one has some +peace,' said she to herself, and well filled and fat she did not return +home till night. The mouse at once asked what name had been given to +the third child. 'It will not please you more than the others,' said the +cat. 'He is called All-gone.' 'All-gone,' cried the mouse 'that is the +most suspicious name of all! I have never seen it in print. All-gone; +what can that mean?' and she shook her head, curled herself up, and lay +down to sleep. + +From this time forth no one invited the cat to be godmother, but +when the winter had come and there was no longer anything to be found +outside, the mouse thought of their provision, and said: 'Come, cat, +we will go to our pot of fat which we have stored up for ourselves--we +shall enjoy that.' 'Yes,' answered the cat, 'you will enjoy it as much +as you would enjoy sticking that dainty tongue of yours out of the +window.' They set out on their way, but when they arrived, the pot of +fat certainly was still in its place, but it was empty. 'Alas!' said the +mouse, 'now I see what has happened, now it comes to light! You are a true +friend! You have devoured all when you were standing godmother. First +top off, then half-done, then--' 'Will you hold your tongue,' cried the +cat, 'one word more, and I will eat you too.' 'All-gone' was already on +the poor mouse's lips; scarcely had she spoken it before the cat sprang +on her, seized her, and swallowed her down. Verily, that is the way of +the world. + + + + +THE GOOSE-GIRL + +The king of a great land died, and left his queen to take care of their +only child. This child was a daughter, who was very beautiful; and her +mother loved her dearly, and was very kind to her. And there was a good +fairy too, who was fond of the princess, and helped her mother to watch +over her. When she grew up, she was betrothed to a prince who lived a +great way off; and as the time drew near for her to be married, she +got ready to set off on her journey to his country. Then the queen her +mother, packed up a great many costly things; jewels, and gold, and +silver; trinkets, fine dresses, and in short everything that became a +royal bride. And she gave her a waiting-maid to ride with her, and give +her into the bridegroom's hands; and each had a horse for the journey. +Now the princess's horse was the fairy's gift, and it was called Falada, +and could speak. + +When the time came for them to set out, the fairy went into her +bed-chamber, and took a little knife, and cut off a lock of her hair, +and gave it to the princess, and said, 'Take care of it, dear child; for +it is a charm that may be of use to you on the road.' Then they all took +a sorrowful leave of the princess; and she put the lock of hair into +her bosom, got upon her horse, and set off on her journey to her +bridegroom's kingdom. + +One day, as they were riding along by a brook, the princess began to +feel very thirsty: and she said to her maid, 'Pray get down, and fetch +me some water in my golden cup out of yonder brook, for I want to +drink.' 'Nay,' said the maid, 'if you are thirsty, get off yourself, and +stoop down by the water and drink; I shall not be your waiting-maid any +longer.' Then she was so thirsty that she got down, and knelt over the +little brook, and drank; for she was frightened, and dared not bring out +her golden cup; and she wept and said, 'Alas! what will become of me?' +And the lock answered her, and said: + + 'Alas! alas! if thy mother knew it, + Sadly, sadly, would she rue it.' + +But the princess was very gentle and meek, so she said nothing to her +maid's ill behaviour, but got upon her horse again. + +Then all rode farther on their journey, till the day grew so warm, and +the sun so scorching, that the bride began to feel very thirsty again; +and at last, when they came to a river, she forgot her maid's rude +speech, and said, 'Pray get down, and fetch me some water to drink in +my golden cup.' But the maid answered her, and even spoke more haughtily +than before: 'Drink if you will, but I shall not be your waiting-maid.' +Then the princess was so thirsty that she got off her horse, and lay +down, and held her head over the running stream, and cried and said, +'What will become of me?' And the lock of hair answered her again: + + 'Alas! alas! if thy mother knew it, + Sadly, sadly, would she rue it.' + +And as she leaned down to drink, the lock of hair fell from her bosom, +and floated away with the water. Now she was so frightened that she did +not see it; but her maid saw it, and was very glad, for she knew the +charm; and she saw that the poor bride would be in her power, now that +she had lost the hair. So when the bride had done drinking, and would +have got upon Falada again, the maid said, 'I shall ride upon Falada, +and you may have my horse instead'; so she was forced to give up her +horse, and soon afterwards to take off her royal clothes and put on her +maid's shabby ones. + +At last, as they drew near the end of their journey, this treacherous +servant threatened to kill her mistress if she ever told anyone what had +happened. But Falada saw it all, and marked it well. + +Then the waiting-maid got upon Falada, and the real bride rode upon the +other horse, and they went on in this way till at last they came to the +royal court. There was great joy at their coming, and the prince flew to +meet them, and lifted the maid from her horse, thinking she was the one +who was to be his wife; and she was led upstairs to the royal chamber; +but the true princess was told to stay in the court below. + +Now the old king happened just then to have nothing else to do; so he +amused himself by sitting at his kitchen window, looking at what was +going on; and he saw her in the courtyard. As she looked very pretty, +and too delicate for a waiting-maid, he went up into the royal chamber +to ask the bride who it was she had brought with her, that was thus left +standing in the court below. 'I brought her with me for the sake of her +company on the road,' said she; 'pray give the girl some work to do, +that she may not be idle.' The old king could not for some time think +of any work for her to do; but at last he said, 'I have a lad who takes +care of my geese; she may go and help him.' Now the name of this lad, +that the real bride was to help in watching the king's geese, was +Curdken. + +But the false bride said to the prince, 'Dear husband, pray do me one +piece of kindness.' 'That I will,' said the prince. 'Then tell one of +your slaughterers to cut off the head of the horse I rode upon, for it +was very unruly, and plagued me sadly on the road'; but the truth was, +she was very much afraid lest Falada should some day or other speak, and +tell all she had done to the princess. She carried her point, and the +faithful Falada was killed; but when the true princess heard of it, she +wept, and begged the man to nail up Falada's head against a large +dark gate of the city, through which she had to pass every morning +and evening, that there she might still see him sometimes. Then the +slaughterer said he would do as she wished; and cut off the head, and +nailed it up under the dark gate. + +Early the next morning, as she and Curdken went out through the gate, +she said sorrowfully: + + 'Falada, Falada, there thou hangest!' + +and the head answered: + + 'Bride, bride, there thou gangest! + Alas! alas! if thy mother knew it, + Sadly, sadly, would she rue it.' + +Then they went out of the city, and drove the geese on. And when she +came to the meadow, she sat down upon a bank there, and let down her +waving locks of hair, which were all of pure silver; and when Curdken +saw it glitter in the sun, he ran up, and would have pulled some of the +locks out, but she cried: + + 'Blow, breezes, blow! + Let Curdken's hat go! + Blow, breezes, blow! + Let him after it go! + O'er hills, dales, and rocks, + Away be it whirl'd + Till the silvery locks + Are all comb'd and curl'd! + +Then there came a wind, so strong that it blew off Curdken's hat; and +away it flew over the hills: and he was forced to turn and run after +it; till, by the time he came back, she had done combing and curling her +hair, and had put it up again safe. Then he was very angry and sulky, +and would not speak to her at all; but they watched the geese until it +grew dark in the evening, and then drove them homewards. + +The next morning, as they were going through the dark gate, the poor +girl looked up at Falada's head, and cried: + + 'Falada, Falada, there thou hangest!' + +and the head answered: + + 'Bride, bride, there thou gangest! + Alas! alas! if thy mother knew it, + Sadly, sadly, would she rue it.' + +Then she drove on the geese, and sat down again in the meadow, and began +to comb out her hair as before; and Curdken ran up to her, and wanted to +take hold of it; but she cried out quickly: + + 'Blow, breezes, blow! + Let Curdken's hat go! + Blow, breezes, blow! + Let him after it go! + O'er hills, dales, and rocks, + Away be it whirl'd + Till the silvery locks + Are all comb'd and curl'd! + +Then the wind came and blew away his hat; and off it flew a great way, +over the hills and far away, so that he had to run after it; and when +he came back she had bound up her hair again, and all was safe. So they +watched the geese till it grew dark. + +In the evening, after they came home, Curdken went to the old king, and +said, 'I cannot have that strange girl to help me to keep the geese any +longer.' 'Why?' said the king. 'Because, instead of doing any good, she +does nothing but tease me all day long.' Then the king made him tell him +what had happened. And Curdken said, 'When we go in the morning through +the dark gate with our flock of geese, she cries and talks with the head +of a horse that hangs upon the wall, and says: + + 'Falada, Falada, there thou hangest!' + +and the head answers: + + 'Bride, bride, there thou gangest! + Alas! alas! if thy mother knew it, + Sadly, sadly, would she rue it.' + +And Curdken went on telling the king what had happened upon the meadow +where the geese fed; how his hat was blown away; and how he was forced +to run after it, and to leave his flock of geese to themselves. But the +old king told the boy to go out again the next day: and when morning +came, he placed himself behind the dark gate, and heard how she spoke +to Falada, and how Falada answered. Then he went into the field, and +hid himself in a bush by the meadow's side; and he soon saw with his own +eyes how they drove the flock of geese; and how, after a little time, +she let down her hair that glittered in the sun. And then he heard her +say: + + 'Blow, breezes, blow! + Let Curdken's hat go! + Blow, breezes, blow! + Let him after it go! + O'er hills, dales, and rocks, + Away be it whirl'd + Till the silvery locks + Are all comb'd and curl'd! + +And soon came a gale of wind, and carried away Curdken's hat, and away +went Curdken after it, while the girl went on combing and curling her +hair. All this the old king saw: so he went home without being seen; and +when the little goose-girl came back in the evening he called her aside, +and asked her why she did so: but she burst into tears, and said, 'That +I must not tell you or any man, or I shall lose my life.' + +But the old king begged so hard, that she had no peace till she had told +him all the tale, from beginning to end, word for word. And it was very +lucky for her that she did so, for when she had done the king ordered +royal clothes to be put upon her, and gazed on her with wonder, she was +so beautiful. Then he called his son and told him that he had only a +false bride; for that she was merely a waiting-maid, while the true +bride stood by. And the young king rejoiced when he saw her beauty, and +heard how meek and patient she had been; and without saying anything to +the false bride, the king ordered a great feast to be got ready for all +his court. The bridegroom sat at the top, with the false princess on one +side, and the true one on the other; but nobody knew her again, for her +beauty was quite dazzling to their eyes; and she did not seem at all +like the little goose-girl, now that she had her brilliant dress on. + +When they had eaten and drank, and were very merry, the old king said +he would tell them a tale. So he began, and told all the story of the +princess, as if it was one that he had once heard; and he asked the +true waiting-maid what she thought ought to be done to anyone who would +behave thus. 'Nothing better,' said this false bride, 'than that she +should be thrown into a cask stuck round with sharp nails, and that +two white horses should be put to it, and should drag it from street to +street till she was dead.' 'Thou art she!' said the old king; 'and as +thou has judged thyself, so shall it be done to thee.' And the young +king was then married to his true wife, and they reigned over the +kingdom in peace and happiness all their lives; and the good fairy came +to see them, and restored the faithful Falada to life again. + + + + +THE ADVENTURES OF CHANTICLEER AND PARTLET + + +1. HOW THEY WENT TO THE MOUNTAINS TO EAT NUTS + +'The nuts are quite ripe now,' said Chanticleer to his wife Partlet, +'suppose we go together to the mountains, and eat as many as we can, +before the squirrel takes them all away.' 'With all my heart,' said +Partlet, 'let us go and make a holiday of it together.' + +So they went to the mountains; and as it was a lovely day, they stayed +there till the evening. Now, whether it was that they had eaten so many +nuts that they could not walk, or whether they were lazy and would not, +I do not know: however, they took it into their heads that it did not +become them to go home on foot. So Chanticleer began to build a little +carriage of nutshells: and when it was finished, Partlet jumped into +it and sat down, and bid Chanticleer harness himself to it and draw her +home. 'That's a good joke!' said Chanticleer; 'no, that will never do; +I had rather by half walk home; I'll sit on the box and be coachman, +if you like, but I'll not draw.' While this was passing, a duck came +quacking up and cried out, 'You thieving vagabonds, what business have +you in my grounds? I'll give it you well for your insolence!' and upon +that she fell upon Chanticleer most lustily. But Chanticleer was no +coward, and returned the duck's blows with his sharp spurs so fiercely +that she soon began to cry out for mercy; which was only granted her +upon condition that she would draw the carriage home for them. This she +agreed to do; and Chanticleer got upon the box, and drove, crying, 'Now, +duck, get on as fast as you can.' And away they went at a pretty good +pace. + +After they had travelled along a little way, they met a needle and a pin +walking together along the road: and the needle cried out, 'Stop, stop!' +and said it was so dark that they could hardly find their way, and such +dirty walking they could not get on at all: he told them that he and his +friend, the pin, had been at a public-house a few miles off, and had sat +drinking till they had forgotten how late it was; he begged therefore +that the travellers would be so kind as to give them a lift in their +carriage. Chanticleer observing that they were but thin fellows, and not +likely to take up much room, told them they might ride, but made them +promise not to dirty the wheels of the carriage in getting in, nor to +tread on Partlet's toes. + +Late at night they arrived at an inn; and as it was bad travelling in +the dark, and the duck seemed much tired, and waddled about a good +deal from one side to the other, they made up their minds to fix their +quarters there: but the landlord at first was unwilling, and said his +house was full, thinking they might not be very respectable company: +however, they spoke civilly to him, and gave him the egg which Partlet +had laid by the way, and said they would give him the duck, who was in +the habit of laying one every day: so at last he let them come in, and +they bespoke a handsome supper, and spent the evening very jollily. + +Early in the morning, before it was quite light, and when nobody was +stirring in the inn, Chanticleer awakened his wife, and, fetching the +egg, they pecked a hole in it, ate it up, and threw the shells into the +fireplace: they then went to the pin and needle, who were fast asleep, +and seizing them by the heads, stuck one into the landlord's easy chair +and the other into his handkerchief; and, having done this, they crept +away as softly as possible. However, the duck, who slept in the open +air in the yard, heard them coming, and jumping into the brook which ran +close by the inn, soon swam out of their reach. + +An hour or two afterwards the landlord got up, and took his handkerchief +to wipe his face, but the pin ran into him and pricked him: then he +walked into the kitchen to light his pipe at the fire, but when he +stirred it up the eggshells flew into his eyes, and almost blinded him. +'Bless me!' said he, 'all the world seems to have a design against my +head this morning': and so saying, he threw himself sulkily into his +easy chair; but, oh dear! the needle ran into him; and this time the +pain was not in his head. He now flew into a very great passion, and, +suspecting the company who had come in the night before, he went to look +after them, but they were all off; so he swore that he never again +would take in such a troop of vagabonds, who ate a great deal, paid no +reckoning, and gave him nothing for his trouble but their apish tricks. + + +2. HOW CHANTICLEER AND PARTLET WENT TO VISIT MR KORBES + +Another day, Chanticleer and Partlet wished to ride out together; +so Chanticleer built a handsome carriage with four red wheels, and +harnessed six mice to it; and then he and Partlet got into the carriage, +and away they drove. Soon afterwards a cat met them, and said, 'Where +are you going?' And Chanticleer replied, + + 'All on our way + A visit to pay + To Mr Korbes, the fox, today.' + +Then the cat said, 'Take me with you,' Chanticleer said, 'With all my +heart: get up behind, and be sure you do not fall off.' + + 'Take care of this handsome coach of mine, + Nor dirty my pretty red wheels so fine! + Now, mice, be ready, + And, wheels, run steady! + For we are going a visit to pay + To Mr Korbes, the fox, today.' + +Soon after came up a millstone, an egg, a duck, and a pin; and +Chanticleer gave them all leave to get into the carriage and go with +them. + +When they arrived at Mr Korbes's house, he was not at home; so the mice +drew the carriage into the coach-house, Chanticleer and Partlet flew +upon a beam, the cat sat down in the fireplace, the duck got into +the washing cistern, the pin stuck himself into the bed pillow, the +millstone laid himself over the house door, and the egg rolled himself +up in the towel. + +When Mr Korbes came home, he went to the fireplace to make a fire; but +the cat threw all the ashes in his eyes: so he ran to the kitchen to +wash himself; but there the duck splashed all the water in his face; and +when he tried to wipe himself, the egg broke to pieces in the towel all +over his face and eyes. Then he was very angry, and went without his +supper to bed; but when he laid his head on the pillow, the pin ran into +his cheek: at this he became quite furious, and, jumping up, would have +run out of the house; but when he came to the door, the millstone fell +down on his head, and killed him on the spot. + + +3. HOW PARTLET DIED AND WAS BURIED, AND HOW CHANTICLEER DIED OF GRIEF + +Another day Chanticleer and Partlet agreed to go again to the mountains +to eat nuts; and it was settled that all the nuts which they found +should be shared equally between them. Now Partlet found a very large +nut; but she said nothing about it to Chanticleer, and kept it all to +herself: however, it was so big that she could not swallow it, and it +stuck in her throat. Then she was in a great fright, and cried out to +Chanticleer, 'Pray run as fast as you can, and fetch me some water, or I +shall be choked.' Chanticleer ran as fast as he could to the river, and +said, 'River, give me some water, for Partlet lies in the mountain, and +will be choked by a great nut.' The river said, 'Run first to the bride, +and ask her for a silken cord to draw up the water.' Chanticleer ran to +the bride, and said, 'Bride, you must give me a silken cord, for then +the river will give me water, and the water I will carry to Partlet, who +lies on the mountain, and will be choked by a great nut.' But the bride +said, 'Run first, and bring me my garland that is hanging on a willow +in the garden.' Then Chanticleer ran to the garden, and took the garland +from the bough where it hung, and brought it to the bride; and then +the bride gave him the silken cord, and he took the silken cord to +the river, and the river gave him water, and he carried the water to +Partlet; but in the meantime she was choked by the great nut, and lay +quite dead, and never moved any more. + +Then Chanticleer was very sorry, and cried bitterly; and all the beasts +came and wept with him over poor Partlet. And six mice built a little +hearse to carry her to her grave; and when it was ready they harnessed +themselves before it, and Chanticleer drove them. On the way they +met the fox. 'Where are you going, Chanticleer?' said he. 'To bury my +Partlet,' said the other. 'May I go with you?' said the fox. 'Yes; but +you must get up behind, or my horses will not be able to draw you.' Then +the fox got up behind; and presently the wolf, the bear, the goat, and +all the beasts of the wood, came and climbed upon the hearse. + +So on they went till they came to a rapid stream. 'How shall we get +over?' said Chanticleer. Then said a straw, 'I will lay myself across, +and you may pass over upon me.' But as the mice were going over, the +straw slipped away and fell into the water, and the six mice all fell in +and were drowned. What was to be done? Then a large log of wood came +and said, 'I am big enough; I will lay myself across the stream, and you +shall pass over upon me.' So he laid himself down; but they managed +so clumsily, that the log of wood fell in and was carried away by the +stream. Then a stone, who saw what had happened, came up and kindly +offered to help poor Chanticleer by laying himself across the stream; +and this time he got safely to the other side with the hearse, and +managed to get Partlet out of it; but the fox and the other mourners, +who were sitting behind, were too heavy, and fell back into the water +and were all carried away by the stream and drowned. + +Thus Chanticleer was left alone with his dead Partlet; and having dug +a grave for her, he laid her in it, and made a little hillock over her. +Then he sat down by the grave, and wept and mourned, till at last he +died too; and so all were dead. + + + + +RAPUNZEL + +There were once a man and a woman who had long in vain wished for a +child. At length the woman hoped that God was about to grant her desire. +These people had a little window at the back of their house from which +a splendid garden could be seen, which was full of the most beautiful +flowers and herbs. It was, however, surrounded by a high wall, and no +one dared to go into it because it belonged to an enchantress, who had +great power and was dreaded by all the world. One day the woman was +standing by this window and looking down into the garden, when she saw a +bed which was planted with the most beautiful rampion (rapunzel), and it +looked so fresh and green that she longed for it, she quite pined away, +and began to look pale and miserable. Then her husband was alarmed, and +asked: 'What ails you, dear wife?' 'Ah,' she replied, 'if I can't eat +some of the rampion, which is in the garden behind our house, I shall +die.' The man, who loved her, thought: 'Sooner than let your wife die, +bring her some of the rampion yourself, let it cost what it will.' +At twilight, he clambered down over the wall into the garden of the +enchantress, hastily clutched a handful of rampion, and took it to his +wife. She at once made herself a salad of it, and ate it greedily. It +tasted so good to her--so very good, that the next day she longed for it +three times as much as before. If he was to have any rest, her husband +must once more descend into the garden. In the gloom of evening +therefore, he let himself down again; but when he had clambered down the +wall he was terribly afraid, for he saw the enchantress standing before +him. 'How can you dare,' said she with angry look, 'descend into my +garden and steal my rampion like a thief? You shall suffer for it!' +'Ah,' answered he, 'let mercy take the place of justice, I only made +up my mind to do it out of necessity. My wife saw your rampion from the +window, and felt such a longing for it that she would have died if she +had not got some to eat.' Then the enchantress allowed her anger to be +softened, and said to him: 'If the case be as you say, I will allow +you to take away with you as much rampion as you will, only I make one +condition, you must give me the child which your wife will bring into +the world; it shall be well treated, and I will care for it like a +mother.' The man in his terror consented to everything, and when the +woman was brought to bed, the enchantress appeared at once, gave the +child the name of Rapunzel, and took it away with her. + +Rapunzel grew into the most beautiful child under the sun. When she was +twelve years old, the enchantress shut her into a tower, which lay in +a forest, and had neither stairs nor door, but quite at the top was a +little window. When the enchantress wanted to go in, she placed herself +beneath it and cried: + + 'Rapunzel, Rapunzel, + Let down your hair to me.' + +Rapunzel had magnificent long hair, fine as spun gold, and when she +heard the voice of the enchantress she unfastened her braided tresses, +wound them round one of the hooks of the window above, and then the hair +fell twenty ells down, and the enchantress climbed up by it. + +After a year or two, it came to pass that the king's son rode through +the forest and passed by the tower. Then he heard a song, which was so +charming that he stood still and listened. This was Rapunzel, who in her +solitude passed her time in letting her sweet voice resound. The king's +son wanted to climb up to her, and looked for the door of the tower, +but none was to be found. He rode home, but the singing had so deeply +touched his heart, that every day he went out into the forest and +listened to it. Once when he was thus standing behind a tree, he saw +that an enchantress came there, and he heard how she cried: + + 'Rapunzel, Rapunzel, + Let down your hair to me.' + +Then Rapunzel let down the braids of her hair, and the enchantress +climbed up to her. 'If that is the ladder by which one mounts, I too +will try my fortune,' said he, and the next day when it began to grow +dark, he went to the tower and cried: + + 'Rapunzel, Rapunzel, + Let down your hair to me.' + +Immediately the hair fell down and the king's son climbed up. + +At first Rapunzel was terribly frightened when a man, such as her eyes +had never yet beheld, came to her; but the king's son began to talk to +her quite like a friend, and told her that his heart had been so stirred +that it had let him have no rest, and he had been forced to see her. +Then Rapunzel lost her fear, and when he asked her if she would take +him for her husband, and she saw that he was young and handsome, she +thought: 'He will love me more than old Dame Gothel does'; and she said +yes, and laid her hand in his. She said: 'I will willingly go away with +you, but I do not know how to get down. Bring with you a skein of silk +every time that you come, and I will weave a ladder with it, and when +that is ready I will descend, and you will take me on your horse.' They +agreed that until that time he should come to her every evening, for the +old woman came by day. The enchantress remarked nothing of this, until +once Rapunzel said to her: 'Tell me, Dame Gothel, how it happens that +you are so much heavier for me to draw up than the young king's son--he +is with me in a moment.' 'Ah! you wicked child,' cried the enchantress. +'What do I hear you say! I thought I had separated you from all +the world, and yet you have deceived me!' In her anger she clutched +Rapunzel's beautiful tresses, wrapped them twice round her left hand, +seized a pair of scissors with the right, and snip, snap, they were cut +off, and the lovely braids lay on the ground. And she was so pitiless +that she took poor Rapunzel into a desert where she had to live in great +grief and misery. + +On the same day that she cast out Rapunzel, however, the enchantress +fastened the braids of hair, which she had cut off, to the hook of the +window, and when the king's son came and cried: + + 'Rapunzel, Rapunzel, + Let down your hair to me.' + +she let the hair down. The king's son ascended, but instead of finding +his dearest Rapunzel, he found the enchantress, who gazed at him with +wicked and venomous looks. 'Aha!' she cried mockingly, 'you would fetch +your dearest, but the beautiful bird sits no longer singing in the nest; +the cat has got it, and will scratch out your eyes as well. Rapunzel is +lost to you; you will never see her again.' The king's son was beside +himself with pain, and in his despair he leapt down from the tower. He +escaped with his life, but the thorns into which he fell pierced his +eyes. Then he wandered quite blind about the forest, ate nothing but +roots and berries, and did naught but lament and weep over the loss of +his dearest wife. Thus he roamed about in misery for some years, and at +length came to the desert where Rapunzel, with the twins to which she +had given birth, a boy and a girl, lived in wretchedness. He heard a +voice, and it seemed so familiar to him that he went towards it, and +when he approached, Rapunzel knew him and fell on his neck and wept. Two +of her tears wetted his eyes and they grew clear again, and he could +see with them as before. He led her to his kingdom where he was +joyfully received, and they lived for a long time afterwards, happy and +contented. + + + + +FUNDEVOGEL + +There was once a forester who went into the forest to hunt, and as +he entered it he heard a sound of screaming as if a little child were +there. He followed the sound, and at last came to a high tree, and at +the top of this a little child was sitting, for the mother had fallen +asleep under the tree with the child, and a bird of prey had seen it in +her arms, had flown down, snatched it away, and set it on the high tree. + +The forester climbed up, brought the child down, and thought to himself: +'You will take him home with you, and bring him up with your Lina.' He +took it home, therefore, and the two children grew up together. And the +one, which he had found on a tree was called Fundevogel, because a bird +had carried it away. Fundevogel and Lina loved each other so dearly that +when they did not see each other they were sad. + +Now the forester had an old cook, who one evening took two pails and +began to fetch water, and did not go once only, but many times, out +to the spring. Lina saw this and said, 'Listen, old Sanna, why are you +fetching so much water?' 'If you will never repeat it to anyone, I will +tell you why.' So Lina said, no, she would never repeat it to anyone, +and then the cook said: 'Early tomorrow morning, when the forester +is out hunting, I will heat the water, and when it is boiling in the +kettle, I will throw in Fundevogel, and will boil him in it.' + +Early next morning the forester got up and went out hunting, and when he +was gone the children were still in bed. Then Lina said to Fundevogel: +'If you will never leave me, I too will never leave you.' Fundevogel +said: 'Neither now, nor ever will I leave you.' Then said Lina: 'Then +will I tell you. Last night, old Sanna carried so many buckets of water +into the house that I asked her why she was doing that, and she said +that if I would promise not to tell anyone, and she said that early +tomorrow morning when father was out hunting, she would set the kettle +full of water, throw you into it and boil you; but we will get up +quickly, dress ourselves, and go away together.' + +The two children therefore got up, dressed themselves quickly, and went +away. When the water in the kettle was boiling, the cook went into the +bedroom to fetch Fundevogel and throw him into it. But when she came in, +and went to the beds, both the children were gone. Then she was terribly +alarmed, and she said to herself: 'What shall I say now when the +forester comes home and sees that the children are gone? They must be +followed instantly to get them back again.' + +Then the cook sent three servants after them, who were to run and +overtake the children. The children, however, were sitting outside the +forest, and when they saw from afar the three servants running, Lina +said to Fundevogel: 'Never leave me, and I will never leave you.' +Fundevogel said: 'Neither now, nor ever.' Then said Lina: 'Do you become +a rose-tree, and I the rose upon it.' When the three servants came to +the forest, nothing was there but a rose-tree and one rose on it, but +the children were nowhere. Then said they: 'There is nothing to be done +here,' and they went home and told the cook that they had seen nothing +in the forest but a little rose-bush with one rose on it. Then the +old cook scolded and said: 'You simpletons, you should have cut the +rose-bush in two, and have broken off the rose and brought it home with +you; go, and do it at once.' They had therefore to go out and look for +the second time. The children, however, saw them coming from a distance. +Then Lina said: 'Fundevogel, never leave me, and I will never leave +you.' Fundevogel said: 'Neither now; nor ever.' Said Lina: 'Then do you +become a church, and I'll be the chandelier in it.' So when the three +servants came, nothing was there but a church, with a chandelier in +it. They said therefore to each other: 'What can we do here, let us go +home.' When they got home, the cook asked if they had not found them; +so they said no, they had found nothing but a church, and there was a +chandelier in it. And the cook scolded them and said: 'You fools! why +did you not pull the church to pieces, and bring the chandelier home +with you?' And now the old cook herself got on her legs, and went with +the three servants in pursuit of the children. The children, however, +saw from afar that the three servants were coming, and the cook waddling +after them. Then said Lina: 'Fundevogel, never leave me, and I will +never leave you.' Then said Fundevogel: 'Neither now, nor ever.' +Said Lina: 'Be a fishpond, and I will be the duck upon it.' The cook, +however, came up to them, and when she saw the pond she lay down by it, +and was about to drink it up. But the duck swam quickly to her, seized +her head in its beak and drew her into the water, and there the old +witch had to drown. Then the children went home together, and were +heartily delighted, and if they have not died, they are living still. + + + + +THE VALIANT LITTLE TAILOR + +One summer's morning a little tailor was sitting on his table by the +window; he was in good spirits, and sewed with all his might. Then came +a peasant woman down the street crying: 'Good jams, cheap! Good jams, +cheap!' This rang pleasantly in the tailor's ears; he stretched his +delicate head out of the window, and called: 'Come up here, dear woman; +here you will get rid of your goods.' The woman came up the three steps +to the tailor with her heavy basket, and he made her unpack all the pots +for him. He inspected each one, lifted it up, put his nose to it, and +at length said: 'The jam seems to me to be good, so weigh me out four +ounces, dear woman, and if it is a quarter of a pound that is of no +consequence.' The woman who had hoped to find a good sale, gave him +what he desired, but went away quite angry and grumbling. 'Now, this jam +shall be blessed by God,' cried the little tailor, 'and give me health +and strength'; so he brought the bread out of the cupboard, cut himself +a piece right across the loaf and spread the jam over it. 'This won't +taste bitter,' said he, 'but I will just finish the jacket before I +take a bite.' He laid the bread near him, sewed on, and in his joy, made +bigger and bigger stitches. In the meantime the smell of the sweet jam +rose to where the flies were sitting in great numbers, and they were +attracted and descended on it in hosts. 'Hi! who invited you?' said the +little tailor, and drove the unbidden guests away. The flies, however, +who understood no German, would not be turned away, but came back +again in ever-increasing companies. The little tailor at last lost all +patience, and drew a piece of cloth from the hole under his work-table, +and saying: 'Wait, and I will give it to you,' struck it mercilessly on +them. When he drew it away and counted, there lay before him no fewer +than seven, dead and with legs stretched out. 'Are you a fellow of that +sort?' said he, and could not help admiring his own bravery. 'The whole +town shall know of this!' And the little tailor hastened to cut himself +a girdle, stitched it, and embroidered on it in large letters: 'Seven at +one stroke!' 'What, the town!' he continued, 'the whole world shall hear +of it!' and his heart wagged with joy like a lamb's tail. The tailor +put on the girdle, and resolved to go forth into the world, because he +thought his workshop was too small for his valour. Before he went away, +he sought about in the house to see if there was anything which he could +take with him; however, he found nothing but an old cheese, and that +he put in his pocket. In front of the door he observed a bird which +had caught itself in the thicket. It had to go into his pocket with the +cheese. Now he took to the road boldly, and as he was light and nimble, +he felt no fatigue. The road led him up a mountain, and when he had +reached the highest point of it, there sat a powerful giant looking +peacefully about him. The little tailor went bravely up, spoke to him, +and said: 'Good day, comrade, so you are sitting there overlooking the +wide-spread world! I am just on my way thither, and want to try my luck. +Have you any inclination to go with me?' The giant looked contemptuously +at the tailor, and said: 'You ragamuffin! You miserable creature!' + +'Oh, indeed?' answered the little tailor, and unbuttoned his coat, and +showed the giant the girdle, 'there may you read what kind of a man I +am!' The giant read: 'Seven at one stroke,' and thought that they had +been men whom the tailor had killed, and began to feel a little respect +for the tiny fellow. Nevertheless, he wished to try him first, and took +a stone in his hand and squeezed it together so that water dropped out +of it. 'Do that likewise,' said the giant, 'if you have strength.' 'Is +that all?' said the tailor, 'that is child's play with us!' and put his +hand into his pocket, brought out the soft cheese, and pressed it until +the liquid ran out of it. 'Faith,' said he, 'that was a little better, +wasn't it?' The giant did not know what to say, and could not believe it +of the little man. Then the giant picked up a stone and threw it so high +that the eye could scarcely follow it. 'Now, little mite of a man, do +that likewise,' 'Well thrown,' said the tailor, 'but after all the stone +came down to earth again; I will throw you one which shall never come +back at all,' and he put his hand into his pocket, took out the bird, +and threw it into the air. The bird, delighted with its liberty, +rose, flew away and did not come back. 'How does that shot please you, +comrade?' asked the tailor. 'You can certainly throw,' said the giant, +'but now we will see if you are able to carry anything properly.' He +took the little tailor to a mighty oak tree which lay there felled on +the ground, and said: 'If you are strong enough, help me to carry the +tree out of the forest.' 'Readily,' answered the little man; 'take you +the trunk on your shoulders, and I will raise up the branches and twigs; +after all, they are the heaviest.' The giant took the trunk on his +shoulder, but the tailor seated himself on a branch, and the giant, who +could not look round, had to carry away the whole tree, and the little +tailor into the bargain: he behind, was quite merry and happy, and +whistled the song: 'Three tailors rode forth from the gate,' as if +carrying the tree were child's play. The giant, after he had dragged the +heavy burden part of the way, could go no further, and cried: 'Hark +you, I shall have to let the tree fall!' The tailor sprang nimbly down, +seized the tree with both arms as if he had been carrying it, and said +to the giant: 'You are such a great fellow, and yet cannot even carry +the tree!' + +They went on together, and as they passed a cherry-tree, the giant laid +hold of the top of the tree where the ripest fruit was hanging, bent it +down, gave it into the tailor's hand, and bade him eat. But the little +tailor was much too weak to hold the tree, and when the giant let it go, +it sprang back again, and the tailor was tossed into the air with it. +When he had fallen down again without injury, the giant said: 'What is +this? Have you not strength enough to hold the weak twig?' 'There is no +lack of strength,' answered the little tailor. 'Do you think that could +be anything to a man who has struck down seven at one blow? I leapt over +the tree because the huntsmen are shooting down there in the thicket. +Jump as I did, if you can do it.' The giant made the attempt but he +could not get over the tree, and remained hanging in the branches, so +that in this also the tailor kept the upper hand. + +The giant said: 'If you are such a valiant fellow, come with me into our +cavern and spend the night with us.' The little tailor was willing, and +followed him. When they went into the cave, other giants were sitting +there by the fire, and each of them had a roasted sheep in his hand and +was eating it. The little tailor looked round and thought: 'It is much +more spacious here than in my workshop.' The giant showed him a bed, and +said he was to lie down in it and sleep. The bed, however, was too +big for the little tailor; he did not lie down in it, but crept into +a corner. When it was midnight, and the giant thought that the little +tailor was lying in a sound sleep, he got up, took a great iron bar, +cut through the bed with one blow, and thought he had finished off the +grasshopper for good. With the earliest dawn the giants went into the +forest, and had quite forgotten the little tailor, when all at once he +walked up to them quite merrily and boldly. The giants were terrified, +they were afraid that he would strike them all dead, and ran away in a +great hurry. + +The little tailor went onwards, always following his own pointed nose. +After he had walked for a long time, he came to the courtyard of a royal +palace, and as he felt weary, he lay down on the grass and fell asleep. +Whilst he lay there, the people came and inspected him on all sides, and +read on his girdle: 'Seven at one stroke.' 'Ah!' said they, 'what does +the great warrior want here in the midst of peace? He must be a mighty +lord.' They went and announced him to the king, and gave it as their +opinion that if war should break out, this would be a weighty and useful +man who ought on no account to be allowed to depart. The counsel pleased +the king, and he sent one of his courtiers to the little tailor to offer +him military service when he awoke. The ambassador remained standing by +the sleeper, waited until he stretched his limbs and opened his eyes, +and then conveyed to him this proposal. 'For this very reason have +I come here,' the tailor replied, 'I am ready to enter the king's +service.' He was therefore honourably received, and a special dwelling +was assigned him. + +The soldiers, however, were set against the little tailor, and wished +him a thousand miles away. 'What is to be the end of this?' they said +among themselves. 'If we quarrel with him, and he strikes about him, +seven of us will fall at every blow; not one of us can stand against +him.' They came therefore to a decision, betook themselves in a body to +the king, and begged for their dismissal. 'We are not prepared,' said +they, 'to stay with a man who kills seven at one stroke.' The king was +sorry that for the sake of one he should lose all his faithful servants, +wished that he had never set eyes on the tailor, and would willingly +have been rid of him again. But he did not venture to give him his +dismissal, for he dreaded lest he should strike him and all his people +dead, and place himself on the royal throne. He thought about it for a +long time, and at last found good counsel. He sent to the little tailor +and caused him to be informed that as he was a great warrior, he had one +request to make to him. In a forest of his country lived two giants, +who caused great mischief with their robbing, murdering, ravaging, +and burning, and no one could approach them without putting himself in +danger of death. If the tailor conquered and killed these two giants, he +would give him his only daughter to wife, and half of his kingdom as a +dowry, likewise one hundred horsemen should go with him to assist him. +'That would indeed be a fine thing for a man like me!' thought the +little tailor. 'One is not offered a beautiful princess and half a +kingdom every day of one's life!' 'Oh, yes,' he replied, 'I will soon +subdue the giants, and do not require the help of the hundred horsemen +to do it; he who can hit seven with one blow has no need to be afraid of +two.' + +The little tailor went forth, and the hundred horsemen followed him. +When he came to the outskirts of the forest, he said to his followers: +'Just stay waiting here, I alone will soon finish off the giants.' Then +he bounded into the forest and looked about right and left. After a +while he perceived both giants. They lay sleeping under a tree, and +snored so that the branches waved up and down. The little tailor, not +idle, gathered two pocketsful of stones, and with these climbed up the +tree. When he was halfway up, he slipped down by a branch, until he sat +just above the sleepers, and then let one stone after another fall on +the breast of one of the giants. For a long time the giant felt nothing, +but at last he awoke, pushed his comrade, and said: 'Why are you +knocking me?' 'You must be dreaming,' said the other, 'I am not knocking +you.' They laid themselves down to sleep again, and then the tailor +threw a stone down on the second. 'What is the meaning of this?' cried +the other 'Why are you pelting me?' 'I am not pelting you,' answered +the first, growling. They disputed about it for a time, but as they were +weary they let the matter rest, and their eyes closed once more. The +little tailor began his game again, picked out the biggest stone, and +threw it with all his might on the breast of the first giant. 'That +is too bad!' cried he, and sprang up like a madman, and pushed his +companion against the tree until it shook. The other paid him back in +the same coin, and they got into such a rage that they tore up trees and +belaboured each other so long, that at last they both fell down dead on +the ground at the same time. Then the little tailor leapt down. 'It is +a lucky thing,' said he, 'that they did not tear up the tree on which +I was sitting, or I should have had to sprint on to another like a +squirrel; but we tailors are nimble.' He drew out his sword and gave +each of them a couple of thrusts in the breast, and then went out to the +horsemen and said: 'The work is done; I have finished both of them +off, but it was hard work! They tore up trees in their sore need, and +defended themselves with them, but all that is to no purpose when a man +like myself comes, who can kill seven at one blow.' 'But are you not +wounded?' asked the horsemen. 'You need not concern yourself about +that,' answered the tailor, 'they have not bent one hair of mine.' The +horsemen would not believe him, and rode into the forest; there they +found the giants swimming in their blood, and all round about lay the +torn-up trees. + +The little tailor demanded of the king the promised reward; he, however, +repented of his promise, and again bethought himself how he could get +rid of the hero. 'Before you receive my daughter, and the half of my +kingdom,' said he to him, 'you must perform one more heroic deed. In +the forest roams a unicorn which does great harm, and you must catch +it first.' 'I fear one unicorn still less than two giants. Seven at one +blow, is my kind of affair.' He took a rope and an axe with him, went +forth into the forest, and again bade those who were sent with him to +wait outside. He had not long to seek. The unicorn soon came towards +him, and rushed directly on the tailor, as if it would gore him with its +horn without more ado. 'Softly, softly; it can't be done as quickly as +that,' said he, and stood still and waited until the animal was quite +close, and then sprang nimbly behind the tree. The unicorn ran against +the tree with all its strength, and stuck its horn so fast in the trunk +that it had not the strength enough to draw it out again, and thus it +was caught. 'Now, I have got the bird,' said the tailor, and came out +from behind the tree and put the rope round its neck, and then with his +axe he hewed the horn out of the tree, and when all was ready he led the +beast away and took it to the king. + +The king still would not give him the promised reward, and made a third +demand. Before the wedding the tailor was to catch him a wild boar that +made great havoc in the forest, and the huntsmen should give him their +help. 'Willingly,' said the tailor, 'that is child's play!' He did not +take the huntsmen with him into the forest, and they were well pleased +that he did not, for the wild boar had several times received them in +such a manner that they had no inclination to lie in wait for him. When +the boar perceived the tailor, it ran on him with foaming mouth and +whetted tusks, and was about to throw him to the ground, but the hero +fled and sprang into a chapel which was near and up to the window at +once, and in one bound out again. The boar ran after him, but the tailor +ran round outside and shut the door behind it, and then the raging +beast, which was much too heavy and awkward to leap out of the window, +was caught. The little tailor called the huntsmen thither that they +might see the prisoner with their own eyes. The hero, however, went to +the king, who was now, whether he liked it or not, obliged to keep his +promise, and gave his daughter and the half of his kingdom. Had he known +that it was no warlike hero, but a little tailor who was standing before +him, it would have gone to his heart still more than it did. The wedding +was held with great magnificence and small joy, and out of a tailor a +king was made. + +After some time the young queen heard her husband say in his dreams at +night: 'Boy, make me the doublet, and patch the pantaloons, or else I +will rap the yard-measure over your ears.' Then she discovered in what +state of life the young lord had been born, and next morning complained +of her wrongs to her father, and begged him to help her to get rid of +her husband, who was nothing else but a tailor. The king comforted her +and said: 'Leave your bedroom door open this night, and my servants +shall stand outside, and when he has fallen asleep shall go in, bind +him, and take him on board a ship which shall carry him into the wide +world.' The woman was satisfied with this; but the king's armour-bearer, +who had heard all, was friendly with the young lord, and informed him of +the whole plot. 'I'll put a screw into that business,' said the little +tailor. At night he went to bed with his wife at the usual time, and +when she thought that he had fallen asleep, she got up, opened the door, +and then lay down again. The little tailor, who was only pretending to +be asleep, began to cry out in a clear voice: 'Boy, make me the doublet +and patch me the pantaloons, or I will rap the yard-measure over your +ears. I smote seven at one blow. I killed two giants, I brought away one +unicorn, and caught a wild boar, and am I to fear those who are standing +outside the room.' When these men heard the tailor speaking thus, they +were overcome by a great dread, and ran as if the wild huntsman were +behind them, and none of them would venture anything further against +him. So the little tailor was and remained a king to the end of his +life. + + + + +HANSEL AND GRETEL + +Hard by a great forest dwelt a poor wood-cutter with his wife and his +two children. The boy was called Hansel and the girl Gretel. He had +little to bite and to break, and once when great dearth fell on the +land, he could no longer procure even daily bread. Now when he thought +over this by night in his bed, and tossed about in his anxiety, he +groaned and said to his wife: 'What is to become of us? How are we +to feed our poor children, when we no longer have anything even for +ourselves?' 'I'll tell you what, husband,' answered the woman, 'early +tomorrow morning we will take the children out into the forest to where +it is the thickest; there we will light a fire for them, and give each +of them one more piece of bread, and then we will go to our work and +leave them alone. They will not find the way home again, and we shall be +rid of them.' 'No, wife,' said the man, 'I will not do that; how can I +bear to leave my children alone in the forest?--the wild animals would +soon come and tear them to pieces.' 'O, you fool!' said she, 'then we +must all four die of hunger, you may as well plane the planks for our +coffins,' and she left him no peace until he consented. 'But I feel very +sorry for the poor children, all the same,' said the man. + +The two children had also not been able to sleep for hunger, and had +heard what their stepmother had said to their father. Gretel wept +bitter tears, and said to Hansel: 'Now all is over with us.' 'Be quiet, +Gretel,' said Hansel, 'do not distress yourself, I will soon find a way +to help us.' And when the old folks had fallen asleep, he got up, put +on his little coat, opened the door below, and crept outside. The moon +shone brightly, and the white pebbles which lay in front of the house +glittered like real silver pennies. Hansel stooped and stuffed the +little pocket of his coat with as many as he could get in. Then he went +back and said to Gretel: 'Be comforted, dear little sister, and sleep in +peace, God will not forsake us,' and he lay down again in his bed. When +day dawned, but before the sun had risen, the woman came and awoke the +two children, saying: 'Get up, you sluggards! we are going into the +forest to fetch wood.' She gave each a little piece of bread, and said: +'There is something for your dinner, but do not eat it up before then, +for you will get nothing else.' Gretel took the bread under her apron, +as Hansel had the pebbles in his pocket. Then they all set out together +on the way to the forest. When they had walked a short time, Hansel +stood still and peeped back at the house, and did so again and again. +His father said: 'Hansel, what are you looking at there and staying +behind for? Pay attention, and do not forget how to use your legs.' 'Ah, +father,' said Hansel, 'I am looking at my little white cat, which is +sitting up on the roof, and wants to say goodbye to me.' The wife said: +'Fool, that is not your little cat, that is the morning sun which is +shining on the chimneys.' Hansel, however, had not been looking back at +the cat, but had been constantly throwing one of the white pebble-stones +out of his pocket on the road. + +When they had reached the middle of the forest, the father said: 'Now, +children, pile up some wood, and I will light a fire that you may not +be cold.' Hansel and Gretel gathered brushwood together, as high as a +little hill. The brushwood was lighted, and when the flames were burning +very high, the woman said: 'Now, children, lay yourselves down by the +fire and rest, we will go into the forest and cut some wood. When we +have done, we will come back and fetch you away.' + +Hansel and Gretel sat by the fire, and when noon came, each ate a little +piece of bread, and as they heard the strokes of the wood-axe they +believed that their father was near. It was not the axe, however, but +a branch which he had fastened to a withered tree which the wind was +blowing backwards and forwards. And as they had been sitting such a long +time, their eyes closed with fatigue, and they fell fast asleep. When +at last they awoke, it was already dark night. Gretel began to cry and +said: 'How are we to get out of the forest now?' But Hansel comforted +her and said: 'Just wait a little, until the moon has risen, and then we +will soon find the way.' And when the full moon had risen, Hansel took +his little sister by the hand, and followed the pebbles which shone like +newly-coined silver pieces, and showed them the way. + +They walked the whole night long, and by break of day came once more +to their father's house. They knocked at the door, and when the woman +opened it and saw that it was Hansel and Gretel, she said: 'You naughty +children, why have you slept so long in the forest?--we thought you were +never coming back at all!' The father, however, rejoiced, for it had cut +him to the heart to leave them behind alone. + +Not long afterwards, there was once more great dearth throughout the +land, and the children heard their mother saying at night to their +father: 'Everything is eaten again, we have one half loaf left, and that +is the end. The children must go, we will take them farther into the +wood, so that they will not find their way out again; there is no other +means of saving ourselves!' The man's heart was heavy, and he thought: +'It would be better for you to share the last mouthful with your +children.' The woman, however, would listen to nothing that he had to +say, but scolded and reproached him. He who says A must say B, likewise, +and as he had yielded the first time, he had to do so a second time +also. + +The children, however, were still awake and had heard the conversation. +When the old folks were asleep, Hansel again got up, and wanted to go +out and pick up pebbles as he had done before, but the woman had locked +the door, and Hansel could not get out. Nevertheless he comforted his +little sister, and said: 'Do not cry, Gretel, go to sleep quietly, the +good God will help us.' + +Early in the morning came the woman, and took the children out of their +beds. Their piece of bread was given to them, but it was still smaller +than the time before. On the way into the forest Hansel crumbled his +in his pocket, and often stood still and threw a morsel on the ground. +'Hansel, why do you stop and look round?' said the father, 'go on.' 'I +am looking back at my little pigeon which is sitting on the roof, and +wants to say goodbye to me,' answered Hansel. 'Fool!' said the woman, +'that is not your little pigeon, that is the morning sun that is shining +on the chimney.' Hansel, however little by little, threw all the crumbs +on the path. + +The woman led the children still deeper into the forest, where they had +never in their lives been before. Then a great fire was again made, and +the mother said: 'Just sit there, you children, and when you are tired +you may sleep a little; we are going into the forest to cut wood, and in +the evening when we are done, we will come and fetch you away.' When +it was noon, Gretel shared her piece of bread with Hansel, who had +scattered his by the way. Then they fell asleep and evening passed, but +no one came to the poor children. They did not awake until it was dark +night, and Hansel comforted his little sister and said: 'Just wait, +Gretel, until the moon rises, and then we shall see the crumbs of bread +which I have strewn about, they will show us our way home again.' When +the moon came they set out, but they found no crumbs, for the many +thousands of birds which fly about in the woods and fields had picked +them all up. Hansel said to Gretel: 'We shall soon find the way,' but +they did not find it. They walked the whole night and all the next day +too from morning till evening, but they did not get out of the forest, +and were very hungry, for they had nothing to eat but two or three +berries, which grew on the ground. And as they were so weary that their +legs would carry them no longer, they lay down beneath a tree and fell +asleep. + +It was now three mornings since they had left their father's house. They +began to walk again, but they always came deeper into the forest, and if +help did not come soon, they must die of hunger and weariness. When it +was mid-day, they saw a beautiful snow-white bird sitting on a bough, +which sang so delightfully that they stood still and listened to it. And +when its song was over, it spread its wings and flew away before them, +and they followed it until they reached a little house, on the roof of +which it alighted; and when they approached the little house they saw +that it was built of bread and covered with cakes, but that the windows +were of clear sugar. 'We will set to work on that,' said Hansel, 'and +have a good meal. I will eat a bit of the roof, and you Gretel, can eat +some of the window, it will taste sweet.' Hansel reached up above, and +broke off a little of the roof to try how it tasted, and Gretel leant +against the window and nibbled at the panes. Then a soft voice cried +from the parlour: + + 'Nibble, nibble, gnaw, + Who is nibbling at my little house?' + +The children answered: + + 'The wind, the wind, + The heaven-born wind,' + +and went on eating without disturbing themselves. Hansel, who liked the +taste of the roof, tore down a great piece of it, and Gretel pushed out +the whole of one round window-pane, sat down, and enjoyed herself with +it. Suddenly the door opened, and a woman as old as the hills, who +supported herself on crutches, came creeping out. Hansel and Gretel were +so terribly frightened that they let fall what they had in their +hands. The old woman, however, nodded her head, and said: 'Oh, you dear +children, who has brought you here? do come in, and stay with me. No +harm shall happen to you.' She took them both by the hand, and led them +into her little house. Then good food was set before them, milk and +pancakes, with sugar, apples, and nuts. Afterwards two pretty little +beds were covered with clean white linen, and Hansel and Gretel lay down +in them, and thought they were in heaven. + +The old woman had only pretended to be so kind; she was in reality +a wicked witch, who lay in wait for children, and had only built the +little house of bread in order to entice them there. When a child fell +into her power, she killed it, cooked and ate it, and that was a feast +day with her. Witches have red eyes, and cannot see far, but they have +a keen scent like the beasts, and are aware when human beings draw near. +When Hansel and Gretel came into her neighbourhood, she laughed with +malice, and said mockingly: 'I have them, they shall not escape me +again!' Early in the morning before the children were awake, she was +already up, and when she saw both of them sleeping and looking so +pretty, with their plump and rosy cheeks she muttered to herself: 'That +will be a dainty mouthful!' Then she seized Hansel with her shrivelled +hand, carried him into a little stable, and locked him in behind a +grated door. Scream as he might, it would not help him. Then she went to +Gretel, shook her till she awoke, and cried: 'Get up, lazy thing, fetch +some water, and cook something good for your brother, he is in the +stable outside, and is to be made fat. When he is fat, I will eat him.' +Gretel began to weep bitterly, but it was all in vain, for she was +forced to do what the wicked witch commanded. + +And now the best food was cooked for poor Hansel, but Gretel got nothing +but crab-shells. Every morning the woman crept to the little stable, and +cried: 'Hansel, stretch out your finger that I may feel if you will soon +be fat.' Hansel, however, stretched out a little bone to her, and +the old woman, who had dim eyes, could not see it, and thought it was +Hansel's finger, and was astonished that there was no way of fattening +him. When four weeks had gone by, and Hansel still remained thin, she +was seized with impatience and would not wait any longer. 'Now, then, +Gretel,' she cried to the girl, 'stir yourself, and bring some water. +Let Hansel be fat or lean, tomorrow I will kill him, and cook him.' Ah, +how the poor little sister did lament when she had to fetch the water, +and how her tears did flow down her cheeks! 'Dear God, do help us,' she +cried. 'If the wild beasts in the forest had but devoured us, we should +at any rate have died together.' 'Just keep your noise to yourself,' +said the old woman, 'it won't help you at all.' + +Early in the morning, Gretel had to go out and hang up the cauldron with +the water, and light the fire. 'We will bake first,' said the old woman, +'I have already heated the oven, and kneaded the dough.' She pushed poor +Gretel out to the oven, from which flames of fire were already darting. +'Creep in,' said the witch, 'and see if it is properly heated, so that +we can put the bread in.' And once Gretel was inside, she intended to +shut the oven and let her bake in it, and then she would eat her, too. +But Gretel saw what she had in mind, and said: 'I do not know how I am +to do it; how do I get in?' 'Silly goose,' said the old woman. 'The door +is big enough; just look, I can get in myself!' and she crept up and +thrust her head into the oven. Then Gretel gave her a push that drove +her far into it, and shut the iron door, and fastened the bolt. Oh! then +she began to howl quite horribly, but Gretel ran away and the godless +witch was miserably burnt to death. + +Gretel, however, ran like lightning to Hansel, opened his little stable, +and cried: 'Hansel, we are saved! The old witch is dead!' Then Hansel +sprang like a bird from its cage when the door is opened. How they did +rejoice and embrace each other, and dance about and kiss each other! And +as they had no longer any need to fear her, they went into the witch's +house, and in every corner there stood chests full of pearls and jewels. +'These are far better than pebbles!' said Hansel, and thrust into his +pockets whatever could be got in, and Gretel said: 'I, too, will take +something home with me,' and filled her pinafore full. 'But now we must +be off,' said Hansel, 'that we may get out of the witch's forest.' + +When they had walked for two hours, they came to a great stretch of +water. 'We cannot cross,' said Hansel, 'I see no foot-plank, and no +bridge.' 'And there is also no ferry,' answered Gretel, 'but a white +duck is swimming there: if I ask her, she will help us over.' Then she +cried: + + 'Little duck, little duck, dost thou see, + Hansel and Gretel are waiting for thee? + There's never a plank, or bridge in sight, + Take us across on thy back so white.' + +The duck came to them, and Hansel seated himself on its back, and told +his sister to sit by him. 'No,' replied Gretel, 'that will be too heavy +for the little duck; she shall take us across, one after the other.' The +good little duck did so, and when they were once safely across and had +walked for a short time, the forest seemed to be more and more familiar +to them, and at length they saw from afar their father's house. Then +they began to run, rushed into the parlour, and threw themselves round +their father's neck. The man had not known one happy hour since he had +left the children in the forest; the woman, however, was dead. Gretel +emptied her pinafore until pearls and precious stones ran about the +room, and Hansel threw one handful after another out of his pocket to +add to them. Then all anxiety was at an end, and they lived together +in perfect happiness. My tale is done, there runs a mouse; whosoever +catches it, may make himself a big fur cap out of it. + + + + +THE MOUSE, THE BIRD, AND THE SAUSAGE + +Once upon a time, a mouse, a bird, and a sausage, entered into +partnership and set up house together. For a long time all went well; +they lived in great comfort, and prospered so far as to be able to add +considerably to their stores. The bird's duty was to fly daily into the +wood and bring in fuel; the mouse fetched the water, and the sausage saw +to the cooking. + +When people are too well off they always begin to long for something +new. And so it came to pass, that the bird, while out one day, met a +fellow bird, to whom he boastfully expatiated on the excellence of his +household arrangements. But the other bird sneered at him for being a +poor simpleton, who did all the hard work, while the other two stayed +at home and had a good time of it. For, when the mouse had made the fire +and fetched in the water, she could retire into her little room and rest +until it was time to set the table. The sausage had only to watch the +pot to see that the food was properly cooked, and when it was near +dinner-time, he just threw himself into the broth, or rolled in and out +among the vegetables three or four times, and there they were, buttered, +and salted, and ready to be served. Then, when the bird came home and +had laid aside his burden, they sat down to table, and when they had +finished their meal, they could sleep their fill till the following +morning: and that was really a very delightful life. + +Influenced by those remarks, the bird next morning refused to bring in +the wood, telling the others that he had been their servant long enough, +and had been a fool into the bargain, and that it was now time to make a +change, and to try some other way of arranging the work. Beg and pray +as the mouse and the sausage might, it was of no use; the bird remained +master of the situation, and the venture had to be made. They therefore +drew lots, and it fell to the sausage to bring in the wood, to the mouse +to cook, and to the bird to fetch the water. + +And now what happened? The sausage started in search of wood, the bird +made the fire, and the mouse put on the pot, and then these two waited +till the sausage returned with the fuel for the following day. But the +sausage remained so long away, that they became uneasy, and the bird +flew out to meet him. He had not flown far, however, when he came across +a dog who, having met the sausage, had regarded him as his legitimate +booty, and so seized and swallowed him. The bird complained to the dog +of this bare-faced robbery, but nothing he said was of any avail, for +the dog answered that he found false credentials on the sausage, and +that was the reason his life had been forfeited. + +He picked up the wood, and flew sadly home, and told the mouse all he +had seen and heard. They were both very unhappy, but agreed to make the +best of things and to remain with one another. + +So now the bird set the table, and the mouse looked after the food and, +wishing to prepare it in the same way as the sausage, by rolling in and +out among the vegetables to salt and butter them, she jumped into the +pot; but she stopped short long before she reached the bottom, having +already parted not only with her skin and hair, but also with life. + +Presently the bird came in and wanted to serve up the dinner, but he +could nowhere see the cook. In his alarm and flurry, he threw the wood +here and there about the floor, called and searched, but no cook was to +be found. Then some of the wood that had been carelessly thrown down, +caught fire and began to blaze. The bird hastened to fetch some water, +but his pail fell into the well, and he after it, and as he was unable +to recover himself, he was drowned. + + + + +MOTHER HOLLE + +Once upon a time there was a widow who had two daughters; one of them +was beautiful and industrious, the other ugly and lazy. The mother, +however, loved the ugly and lazy one best, because she was her own +daughter, and so the other, who was only her stepdaughter, was made +to do all the work of the house, and was quite the Cinderella of the +family. Her stepmother sent her out every day to sit by the well in +the high road, there to spin until she made her fingers bleed. Now it +chanced one day that some blood fell on to the spindle, and as the girl +stopped over the well to wash it off, the spindle suddenly sprang out +of her hand and fell into the well. She ran home crying to tell of her +misfortune, but her stepmother spoke harshly to her, and after giving +her a violent scolding, said unkindly, 'As you have let the spindle fall +into the well you may go yourself and fetch it out.' + +The girl went back to the well not knowing what to do, and at last in +her distress she jumped into the water after the spindle. + +She remembered nothing more until she awoke and found herself in a +beautiful meadow, full of sunshine, and with countless flowers blooming +in every direction. + +She walked over the meadow, and presently she came upon a baker's oven +full of bread, and the loaves cried out to her, 'Take us out, take us +out, or alas! we shall be burnt to a cinder; we were baked through long +ago.' So she took the bread-shovel and drew them all out. + +She went on a little farther, till she came to a tree full of apples. +'Shake me, shake me, I pray,' cried the tree; 'my apples, one and all, +are ripe.' So she shook the tree, and the apples came falling down upon +her like rain; but she continued shaking until there was not a single +apple left upon it. Then she carefully gathered the apples together in a +heap and walked on again. + +The next thing she came to was a little house, and there she saw an old +woman looking out, with such large teeth, that she was terrified, and +turned to run away. But the old woman called after her, 'What are you +afraid of, dear child? Stay with me; if you will do the work of my house +properly for me, I will make you very happy. You must be very careful, +however, to make my bed in the right way, for I wish you always to shake +it thoroughly, so that the feathers fly about; then they say, down there +in the world, that it is snowing; for I am Mother Holle.' The old woman +spoke so kindly, that the girl summoned up courage and agreed to enter +into her service. + +She took care to do everything according to the old woman's bidding and +every time she made the bed she shook it with all her might, so that the +feathers flew about like so many snowflakes. The old woman was as good +as her word: she never spoke angrily to her, and gave her roast and +boiled meats every day. + +So she stayed on with Mother Holle for some time, and then she began +to grow unhappy. She could not at first tell why she felt sad, but she +became conscious at last of great longing to go home; then she knew she +was homesick, although she was a thousand times better off with Mother +Holle than with her mother and sister. After waiting awhile, she went +to Mother Holle and said, 'I am so homesick, that I cannot stay with +you any longer, for although I am so happy here, I must return to my own +people.' + +Then Mother Holle said, 'I am pleased that you should want to go back +to your own people, and as you have served me so well and faithfully, I +will take you home myself.' + +Thereupon she led the girl by the hand up to a broad gateway. The gate +was opened, and as the girl passed through, a shower of gold fell upon +her, and the gold clung to her, so that she was covered with it from +head to foot. + +'That is a reward for your industry,' said Mother Holle, and as she +spoke she handed her the spindle which she had dropped into the well. + +The gate was then closed, and the girl found herself back in the old +world close to her mother's house. As she entered the courtyard, the +cock who was perched on the well, called out: + + 'Cock-a-doodle-doo! + Your golden daughter's come back to you.' + +Then she went in to her mother and sister, and as she was so richly +covered with gold, they gave her a warm welcome. She related to them +all that had happened, and when the mother heard how she had come by her +great riches, she thought she should like her ugly, lazy daughter to go +and try her fortune. So she made the sister go and sit by the well +and spin, and the girl pricked her finger and thrust her hand into a +thorn-bush, so that she might drop some blood on to the spindle; then +she threw it into the well, and jumped in herself. + +Like her sister she awoke in the beautiful meadow, and walked over it +till she came to the oven. 'Take us out, take us out, or alas! we shall +be burnt to a cinder; we were baked through long ago,' cried the loaves +as before. But the lazy girl answered, 'Do you think I am going to dirty +my hands for you?' and walked on. + +Presently she came to the apple-tree. 'Shake me, shake me, I pray; my +apples, one and all, are ripe,' it cried. But she only answered, 'A nice +thing to ask me to do, one of the apples might fall on my head,' and +passed on. + +At last she came to Mother Holle's house, and as she had heard all about +the large teeth from her sister, she was not afraid of them, and engaged +herself without delay to the old woman. + +The first day she was very obedient and industrious, and exerted herself +to please Mother Holle, for she thought of the gold she should get in +return. The next day, however, she began to dawdle over her work, and +the third day she was more idle still; then she began to lie in bed in +the mornings and refused to get up. Worse still, she neglected to +make the old woman's bed properly, and forgot to shake it so that the +feathers might fly about. So Mother Holle very soon got tired of her, +and told her she might go. The lazy girl was delighted at this, and +thought to herself, 'The gold will soon be mine.' Mother Holle led her, +as she had led her sister, to the broad gateway; but as she was passing +through, instead of the shower of gold, a great bucketful of pitch came +pouring over her. + +'That is in return for your services,' said the old woman, and she shut +the gate. + +So the lazy girl had to go home covered with pitch, and the cock on the +well called out as she saw her: + + 'Cock-a-doodle-doo! + Your dirty daughter's come back to you.' + +But, try what she would, she could not get the pitch off and it stuck to +her as long as she lived. + + + + +LITTLE RED-CAP [LITTLE RED RIDING HOOD] + +Once upon a time there was a dear little girl who was loved by everyone +who looked at her, but most of all by her grandmother, and there was +nothing that she would not have given to the child. Once she gave her a +little cap of red velvet, which suited her so well that she would never +wear anything else; so she was always called 'Little Red-Cap.' + +One day her mother said to her: 'Come, Little Red-Cap, here is a piece +of cake and a bottle of wine; take them to your grandmother, she is ill +and weak, and they will do her good. Set out before it gets hot, and +when you are going, walk nicely and quietly and do not run off the path, +or you may fall and break the bottle, and then your grandmother will +get nothing; and when you go into her room, don't forget to say, "Good +morning", and don't peep into every corner before you do it.' + +'I will take great care,' said Little Red-Cap to her mother, and gave +her hand on it. + +The grandmother lived out in the wood, half a league from the village, +and just as Little Red-Cap entered the wood, a wolf met her. Red-Cap +did not know what a wicked creature he was, and was not at all afraid of +him. + +'Good day, Little Red-Cap,' said he. + +'Thank you kindly, wolf.' + +'Whither away so early, Little Red-Cap?' + +'To my grandmother's.' + +'What have you got in your apron?' + +'Cake and wine; yesterday was baking-day, so poor sick grandmother is to +have something good, to make her stronger.' + +'Where does your grandmother live, Little Red-Cap?' + +'A good quarter of a league farther on in the wood; her house stands +under the three large oak-trees, the nut-trees are just below; you +surely must know it,' replied Little Red-Cap. + +The wolf thought to himself: 'What a tender young creature! what a nice +plump mouthful--she will be better to eat than the old woman. I must +act craftily, so as to catch both.' So he walked for a short time by +the side of Little Red-Cap, and then he said: 'See, Little Red-Cap, how +pretty the flowers are about here--why do you not look round? I believe, +too, that you do not hear how sweetly the little birds are singing; you +walk gravely along as if you were going to school, while everything else +out here in the wood is merry.' + +Little Red-Cap raised her eyes, and when she saw the sunbeams dancing +here and there through the trees, and pretty flowers growing everywhere, +she thought: 'Suppose I take grandmother a fresh nosegay; that would +please her too. It is so early in the day that I shall still get there +in good time'; and so she ran from the path into the wood to look for +flowers. And whenever she had picked one, she fancied that she saw a +still prettier one farther on, and ran after it, and so got deeper and +deeper into the wood. + +Meanwhile the wolf ran straight to the grandmother's house and knocked +at the door. + +'Who is there?' + +'Little Red-Cap,' replied the wolf. 'She is bringing cake and wine; open +the door.' + +'Lift the latch,' called out the grandmother, 'I am too weak, and cannot +get up.' + +The wolf lifted the latch, the door sprang open, and without saying a +word he went straight to the grandmother's bed, and devoured her. Then +he put on her clothes, dressed himself in her cap laid himself in bed +and drew the curtains. + +Little Red-Cap, however, had been running about picking flowers, +and when she had gathered so many that she could carry no more, she +remembered her grandmother, and set out on the way to her. + +She was surprised to find the cottage-door standing open, and when she +went into the room, she had such a strange feeling that she said to +herself: 'Oh dear! how uneasy I feel today, and at other times I like +being with grandmother so much.' She called out: 'Good morning,' but +received no answer; so she went to the bed and drew back the curtains. +There lay her grandmother with her cap pulled far over her face, and +looking very strange. + +'Oh! grandmother,' she said, 'what big ears you have!' + +'The better to hear you with, my child,' was the reply. + +'But, grandmother, what big eyes you have!' she said. + +'The better to see you with, my dear.' + +'But, grandmother, what large hands you have!' + +'The better to hug you with.' + +'Oh! but, grandmother, what a terrible big mouth you have!' + +'The better to eat you with!' + +And scarcely had the wolf said this, than with one bound he was out of +bed and swallowed up Red-Cap. + +When the wolf had appeased his appetite, he lay down again in the bed, +fell asleep and began to snore very loud. The huntsman was just passing +the house, and thought to himself: 'How the old woman is snoring! I must +just see if she wants anything.' So he went into the room, and when he +came to the bed, he saw that the wolf was lying in it. 'Do I find you +here, you old sinner!' said he. 'I have long sought you!' Then just as +he was going to fire at him, it occurred to him that the wolf might have +devoured the grandmother, and that she might still be saved, so he did +not fire, but took a pair of scissors, and began to cut open the stomach +of the sleeping wolf. When he had made two snips, he saw the little +Red-Cap shining, and then he made two snips more, and the little girl +sprang out, crying: 'Ah, how frightened I have been! How dark it was +inside the wolf'; and after that the aged grandmother came out alive +also, but scarcely able to breathe. Red-Cap, however, quickly fetched +great stones with which they filled the wolf's belly, and when he awoke, +he wanted to run away, but the stones were so heavy that he collapsed at +once, and fell dead. + +Then all three were delighted. The huntsman drew off the wolf's skin and +went home with it; the grandmother ate the cake and drank the wine which +Red-Cap had brought, and revived, but Red-Cap thought to herself: 'As +long as I live, I will never by myself leave the path, to run into the +wood, when my mother has forbidden me to do so.' + + + + +It also related that once when Red-Cap was again taking cakes to the old +grandmother, another wolf spoke to her, and tried to entice her from the +path. Red-Cap, however, was on her guard, and went straight forward on +her way, and told her grandmother that she had met the wolf, and that he +had said 'good morning' to her, but with such a wicked look in his eyes, +that if they had not been on the public road she was certain he would +have eaten her up. 'Well,' said the grandmother, 'we will shut the door, +that he may not come in.' Soon afterwards the wolf knocked, and cried: +'Open the door, grandmother, I am Little Red-Cap, and am bringing you +some cakes.' But they did not speak, or open the door, so the grey-beard +stole twice or thrice round the house, and at last jumped on the roof, +intending to wait until Red-Cap went home in the evening, and then to +steal after her and devour her in the darkness. But the grandmother +saw what was in his thoughts. In front of the house was a great stone +trough, so she said to the child: 'Take the pail, Red-Cap; I made some +sausages yesterday, so carry the water in which I boiled them to the +trough.' Red-Cap carried until the great trough was quite full. Then the +smell of the sausages reached the wolf, and he sniffed and peeped down, +and at last stretched out his neck so far that he could no longer keep +his footing and began to slip, and slipped down from the roof straight +into the great trough, and was drowned. But Red-Cap went joyously home, +and no one ever did anything to harm her again. + + + + +THE ROBBER BRIDEGROOM + +There was once a miller who had one beautiful daughter, and as she was +grown up, he was anxious that she should be well married and provided +for. He said to himself, 'I will give her to the first suitable man who +comes and asks for her hand.' Not long after a suitor appeared, and as +he appeared to be very rich and the miller could see nothing in him with +which to find fault, he betrothed his daughter to him. But the girl did +not care for the man as a girl ought to care for her betrothed husband. +She did not feel that she could trust him, and she could not look at him +nor think of him without an inward shudder. One day he said to her, 'You +have not yet paid me a visit, although we have been betrothed for some +time.' 'I do not know where your house is,' she answered. 'My house is +out there in the dark forest,' he said. She tried to excuse herself by +saying that she would not be able to find the way thither. Her betrothed +only replied, 'You must come and see me next Sunday; I have already +invited guests for that day, and that you may not mistake the way, I +will strew ashes along the path.' + +When Sunday came, and it was time for the girl to start, a feeling of +dread came over her which she could not explain, and that she might +be able to find her path again, she filled her pockets with peas and +lentils to sprinkle on the ground as she went along. On reaching the +entrance to the forest she found the path strewed with ashes, and these +she followed, throwing down some peas on either side of her at every +step she took. She walked the whole day until she came to the deepest, +darkest part of the forest. There she saw a lonely house, looking so +grim and mysterious, that it did not please her at all. She stepped +inside, but not a soul was to be seen, and a great silence reigned +throughout. Suddenly a voice cried: + + 'Turn back, turn back, young maiden fair, + Linger not in this murderers' lair.' + +The girl looked up and saw that the voice came from a bird hanging in a +cage on the wall. Again it cried: + + 'Turn back, turn back, young maiden fair, + Linger not in this murderers' lair.' + +The girl passed on, going from room to room of the house, but they were +all empty, and still she saw no one. At last she came to the cellar, +and there sat a very, very old woman, who could not keep her head from +shaking. 'Can you tell me,' asked the girl, 'if my betrothed husband +lives here?' + +'Ah, you poor child,' answered the old woman, 'what a place for you to +come to! This is a murderers' den. You think yourself a promised bride, +and that your marriage will soon take place, but it is with death that +you will keep your marriage feast. Look, do you see that large cauldron +of water which I am obliged to keep on the fire! As soon as they have +you in their power they will kill you without mercy, and cook and eat +you, for they are eaters of men. If I did not take pity on you and save +you, you would be lost.' + +Thereupon the old woman led her behind a large cask, which quite hid her +from view. 'Keep as still as a mouse,' she said; 'do not move or speak, +or it will be all over with you. Tonight, when the robbers are +all asleep, we will flee together. I have long been waiting for an +opportunity to escape.' + +The words were hardly out of her mouth when the godless crew returned, +dragging another young girl along with them. They were all drunk, and +paid no heed to her cries and lamentations. They gave her wine to drink, +three glasses full, one of white wine, one of red, and one of yellow, +and with that her heart gave way and she died. Then they tore off her +dainty clothing, laid her on a table, and cut her beautiful body into +pieces, and sprinkled salt upon it. + +The poor betrothed girl crouched trembling and shuddering behind the +cask, for she saw what a terrible fate had been intended for her by +the robbers. One of them now noticed a gold ring still remaining on +the little finger of the murdered girl, and as he could not draw it off +easily, he took a hatchet and cut off the finger; but the finger sprang +into the air, and fell behind the cask into the lap of the girl who was +hiding there. The robber took a light and began looking for it, but he +could not find it. 'Have you looked behind the large cask?' said one of +the others. But the old woman called out, 'Come and eat your suppers, +and let the thing be till tomorrow; the finger won't run away.' + +'The old woman is right,' said the robbers, and they ceased looking for +the finger and sat down. + +The old woman then mixed a sleeping draught with their wine, and before +long they were all lying on the floor of the cellar, fast asleep and +snoring. As soon as the girl was assured of this, she came from behind +the cask. She was obliged to step over the bodies of the sleepers, who +were lying close together, and every moment she was filled with renewed +dread lest she should awaken them. But God helped her, so that she +passed safely over them, and then she and the old woman went upstairs, +opened the door, and hastened as fast as they could from the murderers' +den. They found the ashes scattered by the wind, but the peas and +lentils had sprouted, and grown sufficiently above the ground, to guide +them in the moonlight along the path. All night long they walked, and it +was morning before they reached the mill. Then the girl told her father +all that had happened. + +The day came that had been fixed for the marriage. The bridegroom +arrived and also a large company of guests, for the miller had taken +care to invite all his friends and relations. As they sat at the feast, +each guest in turn was asked to tell a tale; the bride sat still and did +not say a word. + +'And you, my love,' said the bridegroom, turning to her, 'is there no +tale you know? Tell us something.' + +'I will tell you a dream, then,' said the bride. 'I went alone through a +forest and came at last to a house; not a soul could I find within, but +a bird that was hanging in a cage on the wall cried: + + 'Turn back, turn back, young maiden fair, + Linger not in this murderers' lair.' + +and again a second time it said these words.' + +'My darling, this is only a dream.' + +'I went on through the house from room to room, but they were all empty, +and everything was so grim and mysterious. At last I went down to the +cellar, and there sat a very, very old woman, who could not keep her +head still. I asked her if my betrothed lived here, and she answered, +"Ah, you poor child, you are come to a murderers' den; your betrothed +does indeed live here, but he will kill you without mercy and afterwards +cook and eat you."' + +'My darling, this is only a dream.' + +'The old woman hid me behind a large cask, and scarcely had she done +this when the robbers returned home, dragging a young girl along with +them. They gave her three kinds of wine to drink, white, red, and +yellow, and with that she died.' + +'My darling, this is only a dream.' + +'Then they tore off her dainty clothing, and cut her beautiful body into +pieces and sprinkled salt upon it.' + +'My darling, this is only a dream.' + +'And one of the robbers saw that there was a gold ring still left on her +finger, and as it was difficult to draw off, he took a hatchet and cut +off her finger; but the finger sprang into the air and fell behind the +great cask into my lap. And here is the finger with the ring.' And +with these words the bride drew forth the finger and shewed it to the +assembled guests. + +The bridegroom, who during this recital had grown deadly pale, up and +tried to escape, but the guests seized him and held him fast. They +delivered him up to justice, and he and all his murderous band were +condemned to death for their wicked deeds. + + + + +TOM THUMB + +A poor woodman sat in his cottage one night, smoking his pipe by the +fireside, while his wife sat by his side spinning. 'How lonely it is, +wife,' said he, as he puffed out a long curl of smoke, 'for you and me +to sit here by ourselves, without any children to play about and amuse +us while other people seem so happy and merry with their children!' +'What you say is very true,' said the wife, sighing, and turning round +her wheel; 'how happy should I be if I had but one child! If it were +ever so small--nay, if it were no bigger than my thumb--I should be very +happy, and love it dearly.' Now--odd as you may think it--it came to +pass that this good woman's wish was fulfilled, just in the very way she +had wished it; for, not long afterwards, she had a little boy, who was +quite healthy and strong, but was not much bigger than my thumb. So +they said, 'Well, we cannot say we have not got what we wished for, and, +little as he is, we will love him dearly.' And they called him Thomas +Thumb. + +They gave him plenty of food, yet for all they could do he never grew +bigger, but kept just the same size as he had been when he was born. +Still, his eyes were sharp and sparkling, and he soon showed himself to +be a clever little fellow, who always knew well what he was about. + +One day, as the woodman was getting ready to go into the wood to cut +fuel, he said, 'I wish I had someone to bring the cart after me, for I +want to make haste.' 'Oh, father,' cried Tom, 'I will take care of that; +the cart shall be in the wood by the time you want it.' Then the woodman +laughed, and said, 'How can that be? you cannot reach up to the horse's +bridle.' 'Never mind that, father,' said Tom; 'if my mother will only +harness the horse, I will get into his ear and tell him which way to +go.' 'Well,' said the father, 'we will try for once.' + +When the time came the mother harnessed the horse to the cart, and put +Tom into his ear; and as he sat there the little man told the beast how +to go, crying out, 'Go on!' and 'Stop!' as he wanted: and thus the horse +went on just as well as if the woodman had driven it himself into the +wood. It happened that as the horse was going a little too fast, and Tom +was calling out, 'Gently! gently!' two strangers came up. 'What an odd +thing that is!' said one: 'there is a cart going along, and I hear a +carter talking to the horse, but yet I can see no one.' 'That is queer, +indeed,' said the other; 'let us follow the cart, and see where it +goes.' So they went on into the wood, till at last they came to the +place where the woodman was. Then Tom Thumb, seeing his father, cried +out, 'See, father, here I am with the cart, all right and safe! now take +me down!' So his father took hold of the horse with one hand, and with +the other took his son out of the horse's ear, and put him down upon a +straw, where he sat as merry as you please. + +The two strangers were all this time looking on, and did not know what +to say for wonder. At last one took the other aside, and said, 'That +little urchin will make our fortune, if we can get him, and carry him +about from town to town as a show; we must buy him.' So they went up to +the woodman, and asked him what he would take for the little man. 'He +will be better off,' said they, 'with us than with you.' 'I won't sell +him at all,' said the father; 'my own flesh and blood is dearer to me +than all the silver and gold in the world.' But Tom, hearing of the +bargain they wanted to make, crept up his father's coat to his shoulder +and whispered in his ear, 'Take the money, father, and let them have me; +I'll soon come back to you.' + +So the woodman at last said he would sell Tom to the strangers for a +large piece of gold, and they paid the price. 'Where would you like to +sit?' said one of them. 'Oh, put me on the rim of your hat; that will be +a nice gallery for me; I can walk about there and see the country as we +go along.' So they did as he wished; and when Tom had taken leave of his +father they took him away with them. + +They journeyed on till it began to be dusky, and then the little man +said, 'Let me get down, I'm tired.' So the man took off his hat, and +put him down on a clod of earth, in a ploughed field by the side of the +road. But Tom ran about amongst the furrows, and at last slipped into +an old mouse-hole. 'Good night, my masters!' said he, 'I'm off! mind and +look sharp after me the next time.' Then they ran at once to the place, +and poked the ends of their sticks into the mouse-hole, but all in vain; +Tom only crawled farther and farther in; and at last it became quite +dark, so that they were forced to go their way without their prize, as +sulky as could be. + +When Tom found they were gone, he came out of his hiding-place. 'What +dangerous walking it is,' said he, 'in this ploughed field! If I were to +fall from one of these great clods, I should undoubtedly break my neck.' +At last, by good luck, he found a large empty snail-shell. 'This is +lucky,' said he, 'I can sleep here very well'; and in he crept. + +Just as he was falling asleep, he heard two men passing by, chatting +together; and one said to the other, 'How can we rob that rich parson's +house of his silver and gold?' 'I'll tell you!' cried Tom. 'What noise +was that?' said the thief, frightened; 'I'm sure I heard someone speak.' +They stood still listening, and Tom said, 'Take me with you, and I'll +soon show you how to get the parson's money.' 'But where are you?' said +they. 'Look about on the ground,' answered he, 'and listen where the +sound comes from.' At last the thieves found him out, and lifted him +up in their hands. 'You little urchin!' they said, 'what can you do for +us?' 'Why, I can get between the iron window-bars of the parson's house, +and throw you out whatever you want.' 'That's a good thought,' said the +thieves; 'come along, we shall see what you can do.' + +When they came to the parson's house, Tom slipped through the +window-bars into the room, and then called out as loud as he could bawl, +'Will you have all that is here?' At this the thieves were frightened, +and said, 'Softly, softly! Speak low, that you may not awaken anybody.' +But Tom seemed as if he did not understand them, and bawled out again, +'How much will you have? Shall I throw it all out?' Now the cook lay in +the next room; and hearing a noise she raised herself up in her bed and +listened. Meantime the thieves were frightened, and ran off a little +way; but at last they plucked up their hearts, and said, 'The little +urchin is only trying to make fools of us.' So they came back and +whispered softly to him, saying, 'Now let us have no more of your +roguish jokes; but throw us out some of the money.' Then Tom called out +as loud as he could, 'Very well! hold your hands! here it comes.' + +The cook heard this quite plain, so she sprang out of bed, and ran to +open the door. The thieves ran off as if a wolf was at their tails: and +the maid, having groped about and found nothing, went away for a light. +By the time she came back, Tom had slipped off into the barn; and when +she had looked about and searched every hole and corner, and found +nobody, she went to bed, thinking she must have been dreaming with her +eyes open. + +The little man crawled about in the hay-loft, and at last found a snug +place to finish his night's rest in; so he laid himself down, meaning +to sleep till daylight, and then find his way home to his father and +mother. But alas! how woefully he was undone! what crosses and sorrows +happen to us all in this world! The cook got up early, before daybreak, +to feed the cows; and going straight to the hay-loft, carried away +a large bundle of hay, with the little man in the middle of it, fast +asleep. He still, however, slept on, and did not awake till he found +himself in the mouth of the cow; for the cook had put the hay into the +cow's rick, and the cow had taken Tom up in a mouthful of it. 'Good +lack-a-day!' said he, 'how came I to tumble into the mill?' But he soon +found out where he really was; and was forced to have all his wits about +him, that he might not get between the cow's teeth, and so be crushed to +death. At last down he went into her stomach. 'It is rather dark,' said +he; 'they forgot to build windows in this room to let the sun in; a +candle would be no bad thing.' + +Though he made the best of his bad luck, he did not like his quarters at +all; and the worst of it was, that more and more hay was always coming +down, and the space left for him became smaller and smaller. At last he +cried out as loud as he could, 'Don't bring me any more hay! Don't bring +me any more hay!' + +The maid happened to be just then milking the cow; and hearing someone +speak, but seeing nobody, and yet being quite sure it was the same voice +that she had heard in the night, she was so frightened that she fell off +her stool, and overset the milk-pail. As soon as she could pick herself +up out of the dirt, she ran off as fast as she could to her master the +parson, and said, 'Sir, sir, the cow is talking!' But the parson +said, 'Woman, thou art surely mad!' However, he went with her into the +cow-house, to try and see what was the matter. + +Scarcely had they set foot on the threshold, when Tom called out, 'Don't +bring me any more hay!' Then the parson himself was frightened; and +thinking the cow was surely bewitched, told his man to kill her on the +spot. So the cow was killed, and cut up; and the stomach, in which Tom +lay, was thrown out upon a dunghill. + +Tom soon set himself to work to get out, which was not a very easy +task; but at last, just as he had made room to get his head out, fresh +ill-luck befell him. A hungry wolf sprang out, and swallowed up the +whole stomach, with Tom in it, at one gulp, and ran away. + +Tom, however, was still not disheartened; and thinking the wolf would +not dislike having some chat with him as he was going along, he called +out, 'My good friend, I can show you a famous treat.' 'Where's that?' +said the wolf. 'In such and such a house,' said Tom, describing his own +father's house. 'You can crawl through the drain into the kitchen and +then into the pantry, and there you will find cakes, ham, beef, cold +chicken, roast pig, apple-dumplings, and everything that your heart can +wish.' + +The wolf did not want to be asked twice; so that very night he went to +the house and crawled through the drain into the kitchen, and then into +the pantry, and ate and drank there to his heart's content. As soon as +he had had enough he wanted to get away; but he had eaten so much that +he could not go out by the same way he came in. + +This was just what Tom had reckoned upon; and now he began to set up a +great shout, making all the noise he could. 'Will you be easy?' said the +wolf; 'you'll awaken everybody in the house if you make such a clatter.' +'What's that to me?' said the little man; 'you have had your frolic, now +I've a mind to be merry myself'; and he began, singing and shouting as +loud as he could. + +The woodman and his wife, being awakened by the noise, peeped through +a crack in the door; but when they saw a wolf was there, you may well +suppose that they were sadly frightened; and the woodman ran for his +axe, and gave his wife a scythe. 'Do you stay behind,' said the woodman, +'and when I have knocked him on the head you must rip him up with the +scythe.' Tom heard all this, and cried out, 'Father, father! I am here, +the wolf has swallowed me.' And his father said, 'Heaven be praised! we +have found our dear child again'; and he told his wife not to use the +scythe for fear she should hurt him. Then he aimed a great blow, and +struck the wolf on the head, and killed him on the spot! and when he was +dead they cut open his body, and set Tommy free. 'Ah!' said the father, +'what fears we have had for you!' 'Yes, father,' answered he; 'I have +travelled all over the world, I think, in one way or other, since we +parted; and now I am very glad to come home and get fresh air again.' +'Why, where have you been?' said his father. 'I have been in a +mouse-hole--and in a snail-shell--and down a cow's throat--and in the +wolf's belly; and yet here I am again, safe and sound.' + +'Well,' said they, 'you are come back, and we will not sell you again +for all the riches in the world.' + +Then they hugged and kissed their dear little son, and gave him plenty +to eat and drink, for he was very hungry; and then they fetched new +clothes for him, for his old ones had been quite spoiled on his journey. +So Master Thumb stayed at home with his father and mother, in peace; for +though he had been so great a traveller, and had done and seen so many +fine things, and was fond enough of telling the whole story, he always +agreed that, after all, there's no place like HOME! + + + + +RUMPELSTILTSKIN + +By the side of a wood, in a country a long way off, ran a fine stream +of water; and upon the stream there stood a mill. The miller's house was +close by, and the miller, you must know, had a very beautiful daughter. +She was, moreover, very shrewd and clever; and the miller was so proud +of her, that he one day told the king of the land, who used to come and +hunt in the wood, that his daughter could spin gold out of straw. Now +this king was very fond of money; and when he heard the miller's boast +his greediness was raised, and he sent for the girl to be brought before +him. Then he led her to a chamber in his palace where there was a great +heap of straw, and gave her a spinning-wheel, and said, 'All this must +be spun into gold before morning, as you love your life.' It was in vain +that the poor maiden said that it was only a silly boast of her father, +for that she could do no such thing as spin straw into gold: the chamber +door was locked, and she was left alone. + +She sat down in one corner of the room, and began to bewail her hard +fate; when on a sudden the door opened, and a droll-looking little man +hobbled in, and said, 'Good morrow to you, my good lass; what are you +weeping for?' 'Alas!' said she, 'I must spin this straw into gold, and +I know not how.' 'What will you give me,' said the hobgoblin, 'to do it +for you?' 'My necklace,' replied the maiden. He took her at her word, +and sat himself down to the wheel, and whistled and sang: + + 'Round about, round about, + Lo and behold! + Reel away, reel away, + Straw into gold!' + +And round about the wheel went merrily; the work was quickly done, and +the straw was all spun into gold. + +When the king came and saw this, he was greatly astonished and pleased; +but his heart grew still more greedy of gain, and he shut up the poor +miller's daughter again with a fresh task. Then she knew not what to do, +and sat down once more to weep; but the dwarf soon opened the door, and +said, 'What will you give me to do your task?' 'The ring on my finger,' +said she. So her little friend took the ring, and began to work at the +wheel again, and whistled and sang: + + 'Round about, round about, + Lo and behold! + Reel away, reel away, + Straw into gold!' + +till, long before morning, all was done again. + +The king was greatly delighted to see all this glittering treasure; +but still he had not enough: so he took the miller's daughter to a yet +larger heap, and said, 'All this must be spun tonight; and if it is, +you shall be my queen.' As soon as she was alone that dwarf came in, and +said, 'What will you give me to spin gold for you this third time?' +'I have nothing left,' said she. 'Then say you will give me,' said +the little man, 'the first little child that you may have when you are +queen.' 'That may never be,' thought the miller's daughter: and as she +knew no other way to get her task done, she said she would do what he +asked. Round went the wheel again to the old song, and the manikin once +more spun the heap into gold. The king came in the morning, and, finding +all he wanted, was forced to keep his word; so he married the miller's +daughter, and she really became queen. + +At the birth of her first little child she was very glad, and forgot the +dwarf, and what she had said. But one day he came into her room, where +she was sitting playing with her baby, and put her in mind of it. Then +she grieved sorely at her misfortune, and said she would give him all +the wealth of the kingdom if he would let her off, but in vain; till at +last her tears softened him, and he said, 'I will give you three days' +grace, and if during that time you tell me my name, you shall keep your +child.' + +Now the queen lay awake all night, thinking of all the odd names that +she had ever heard; and she sent messengers all over the land to find +out new ones. The next day the little man came, and she began with +TIMOTHY, ICHABOD, BENJAMIN, JEREMIAH, and all the names she could +remember; but to all and each of them he said, 'Madam, that is not my +name.' + +The second day she began with all the comical names she could hear of, +BANDY-LEGS, HUNCHBACK, CROOK-SHANKS, and so on; but the little gentleman +still said to every one of them, 'Madam, that is not my name.' + +The third day one of the messengers came back, and said, 'I have +travelled two days without hearing of any other names; but yesterday, as +I was climbing a high hill, among the trees of the forest where the fox +and the hare bid each other good night, I saw a little hut; and before +the hut burnt a fire; and round about the fire a funny little dwarf was +dancing upon one leg, and singing: + + "Merrily the feast I'll make. + Today I'll brew, tomorrow bake; + Merrily I'll dance and sing, + For next day will a stranger bring. + Little does my lady dream + Rumpelstiltskin is my name!" + +When the queen heard this she jumped for joy, and as soon as her little +friend came she sat down upon her throne, and called all her court round +to enjoy the fun; and the nurse stood by her side with the baby in her +arms, as if it was quite ready to be given up. Then the little man began +to chuckle at the thought of having the poor child, to take home with +him to his hut in the woods; and he cried out, 'Now, lady, what is my +name?' 'Is it JOHN?' asked she. 'No, madam!' 'Is it TOM?' 'No, madam!' +'Is it JEMMY?' 'It is not.' 'Can your name be RUMPELSTILTSKIN?' said the +lady slyly. 'Some witch told you that!--some witch told you that!' cried +the little man, and dashed his right foot in a rage so deep into the +floor, that he was forced to lay hold of it with both hands to pull it +out. + +Then he made the best of his way off, while the nurse laughed and the +baby crowed; and all the court jeered at him for having had so much +trouble for nothing, and said, 'We wish you a very good morning, and a +merry feast, Mr RUMPLESTILTSKIN!' + + + + +CLEVER GRETEL + +There was once a cook named Gretel, who wore shoes with red heels, and +when she walked out with them on, she turned herself this way and that, +was quite happy and thought: 'You certainly are a pretty girl!' And when +she came home she drank, in her gladness of heart, a draught of wine, +and as wine excites a desire to eat, she tasted the best of whatever she +was cooking until she was satisfied, and said: 'The cook must know what +the food is like.' + +It came to pass that the master one day said to her: 'Gretel, there is a +guest coming this evening; prepare me two fowls very daintily.' 'I will +see to it, master,' answered Gretel. She killed two fowls, scalded them, +plucked them, put them on the spit, and towards evening set them before +the fire, that they might roast. The fowls began to turn brown, and were +nearly ready, but the guest had not yet arrived. Then Gretel called out +to her master: 'If the guest does not come, I must take the fowls away +from the fire, but it will be a sin and a shame if they are not eaten +the moment they are at their juiciest.' The master said: 'I will run +myself, and fetch the guest.' When the master had turned his back, +Gretel laid the spit with the fowls on one side, and thought: 'Standing +so long by the fire there, makes one sweat and thirsty; who knows +when they will come? Meanwhile, I will run into the cellar, and take a +drink.' She ran down, set a jug, said: 'God bless it for you, Gretel,' +and took a good drink, and thought that wine should flow on, and should +not be interrupted, and took yet another hearty draught. + +Then she went and put the fowls down again to the fire, basted them, +and drove the spit merrily round. But as the roast meat smelt so good, +Gretel thought: 'Something might be wrong, it ought to be tasted!' +She touched it with her finger, and said: 'Ah! how good fowls are! It +certainly is a sin and a shame that they are not eaten at the right +time!' She ran to the window, to see if the master was not coming with +his guest, but she saw no one, and went back to the fowls and thought: +'One of the wings is burning! I had better take it off and eat it.' +So she cut it off, ate it, and enjoyed it, and when she had done, she +thought: 'The other must go down too, or else master will observe that +something is missing.' When the two wings were eaten, she went and +looked for her master, and did not see him. It suddenly occurred to +her: 'Who knows? They are perhaps not coming at all, and have turned in +somewhere.' Then she said: 'Well, Gretel, enjoy yourself, one fowl has +been cut into, take another drink, and eat it up entirely; when it is +eaten you will have some peace, why should God's good gifts be spoilt?' +So she ran into the cellar again, took an enormous drink and ate up the +one chicken in great glee. When one of the chickens was swallowed down, +and still her master did not come, Gretel looked at the other and said: +'What one is, the other should be likewise, the two go together; what's +right for the one is right for the other; I think if I were to take +another draught it would do me no harm.' So she took another hearty +drink, and let the second chicken follow the first. + +While she was making the most of it, her master came and cried: 'Hurry +up, Gretel, the guest is coming directly after me!' 'Yes, sir, I will +soon serve up,' answered Gretel. Meantime the master looked to see that +the table was properly laid, and took the great knife, wherewith he was +going to carve the chickens, and sharpened it on the steps. Presently +the guest came, and knocked politely and courteously at the house-door. +Gretel ran, and looked to see who was there, and when she saw the guest, +she put her finger to her lips and said: 'Hush! hush! go away as quickly +as you can, if my master catches you it will be the worse for you; he +certainly did ask you to supper, but his intention is to cut off your +two ears. Just listen how he is sharpening the knife for it!' The guest +heard the sharpening, and hurried down the steps again as fast as he +could. Gretel was not idle; she ran screaming to her master, and cried: +'You have invited a fine guest!' 'Why, Gretel? What do you mean by +that?' 'Yes,' said she, 'he has taken the chickens which I was just +going to serve up, off the dish, and has run away with them!' 'That's a +nice trick!' said her master, and lamented the fine chickens. 'If he had +but left me one, so that something remained for me to eat.' He called to +him to stop, but the guest pretended not to hear. Then he ran after him +with the knife still in his hand, crying: 'Just one, just one,' meaning +that the guest should leave him just one chicken, and not take both. The +guest, however, thought no otherwise than that he was to give up one of +his ears, and ran as if fire were burning under him, in order to take +them both with him. + + + + +THE OLD MAN AND HIS GRANDSON + +There was once a very old man, whose eyes had become dim, his ears dull +of hearing, his knees trembled, and when he sat at table he could hardly +hold the spoon, and spilt the broth upon the table-cloth or let it run +out of his mouth. His son and his son's wife were disgusted at this, so +the old grandfather at last had to sit in the corner behind the stove, +and they gave him his food in an earthenware bowl, and not even enough +of it. And he used to look towards the table with his eyes full of +tears. Once, too, his trembling hands could not hold the bowl, and it +fell to the ground and broke. The young wife scolded him, but he said +nothing and only sighed. Then they brought him a wooden bowl for a few +half-pence, out of which he had to eat. + +They were once sitting thus when the little grandson of four years old +began to gather together some bits of wood upon the ground. 'What are +you doing there?' asked the father. 'I am making a little trough,' +answered the child, 'for father and mother to eat out of when I am big.' + +The man and his wife looked at each other for a while, and presently +began to cry. Then they took the old grandfather to the table, and +henceforth always let him eat with them, and likewise said nothing if he +did spill a little of anything. + + + + +THE LITTLE PEASANT + +There was a certain village wherein no one lived but really rich +peasants, and just one poor one, whom they called the little peasant. He +had not even so much as a cow, and still less money to buy one, and +yet he and his wife did so wish to have one. One day he said to her: +'Listen, I have a good idea, there is our gossip the carpenter, he shall +make us a wooden calf, and paint it brown, so that it looks like any +other, and in time it will certainly get big and be a cow.' the woman +also liked the idea, and their gossip the carpenter cut and planed +the calf, and painted it as it ought to be, and made it with its head +hanging down as if it were eating. + +Next morning when the cows were being driven out, the little peasant +called the cow-herd in and said: 'Look, I have a little calf there, +but it is still small and has to be carried.' The cow-herd said: 'All +right,' and took it in his arms and carried it to the pasture, and set +it among the grass. The little calf always remained standing like one +which was eating, and the cow-herd said: 'It will soon run by itself, +just look how it eats already!' At night when he was going to drive the +herd home again, he said to the calf: 'If you can stand there and eat +your fill, you can also go on your four legs; I don't care to drag you +home again in my arms.' But the little peasant stood at his door, and +waited for his little calf, and when the cow-herd drove the cows through +the village, and the calf was missing, he inquired where it was. The +cow-herd answered: 'It is still standing out there eating. It would not +stop and come with us.' But the little peasant said: 'Oh, but I must +have my beast back again.' Then they went back to the meadow together, +but someone had stolen the calf, and it was gone. The cow-herd said: 'It +must have run away.' The peasant, however, said: 'Don't tell me +that,' and led the cow-herd before the mayor, who for his carelessness +condemned him to give the peasant a cow for the calf which had run away. + +And now the little peasant and his wife had the cow for which they had +so long wished, and they were heartily glad, but they had no food for +it, and could give it nothing to eat, so it soon had to be killed. They +salted the flesh, and the peasant went into the town and wanted to sell +the skin there, so that he might buy a new calf with the proceeds. On +the way he passed by a mill, and there sat a raven with broken wings, +and out of pity he took him and wrapped him in the skin. But as the +weather grew so bad and there was a storm of rain and wind, he could +go no farther, and turned back to the mill and begged for shelter. The +miller's wife was alone in the house, and said to the peasant: 'Lay +yourself on the straw there,' and gave him a slice of bread and cheese. +The peasant ate it, and lay down with his skin beside him, and the woman +thought: 'He is tired and has gone to sleep.' In the meantime came the +parson; the miller's wife received him well, and said: 'My husband is +out, so we will have a feast.' The peasant listened, and when he heard +them talk about feasting he was vexed that he had been forced to make +shift with a slice of bread and cheese. Then the woman served up four +different things, roast meat, salad, cakes, and wine. + +Just as they were about to sit down and eat, there was a knocking +outside. The woman said: 'Oh, heavens! It is my husband!' she quickly +hid the roast meat inside the tiled stove, the wine under the pillow, +the salad on the bed, the cakes under it, and the parson in the closet +on the porch. Then she opened the door for her husband, and said: 'Thank +heaven, you are back again! There is such a storm, it looks as if the +world were coming to an end.' The miller saw the peasant lying on the +straw, and asked, 'What is that fellow doing there?' 'Ah,' said the +wife, 'the poor knave came in the storm and rain, and begged for +shelter, so I gave him a bit of bread and cheese, and showed him where +the straw was.' The man said: 'I have no objection, but be quick and get +me something to eat.' The woman said: 'But I have nothing but bread and +cheese.' 'I am contented with anything,' replied the husband, 'so far as +I am concerned, bread and cheese will do,' and looked at the peasant and +said: 'Come and eat some more with me.' The peasant did not require to +be invited twice, but got up and ate. After this the miller saw the skin +in which the raven was, lying on the ground, and asked: 'What have you +there?' The peasant answered: 'I have a soothsayer inside it.' 'Can +he foretell anything to me?' said the miller. 'Why not?' answered +the peasant: 'but he only says four things, and the fifth he keeps to +himself.' The miller was curious, and said: 'Let him foretell something +for once.' Then the peasant pinched the raven's head, so that he croaked +and made a noise like krr, krr. The miller said: 'What did he say?' The +peasant answered: 'In the first place, he says that there is some wine +hidden under the pillow.' 'Bless me!' cried the miller, and went there +and found the wine. 'Now go on,' said he. The peasant made the raven +croak again, and said: 'In the second place, he says that there is some +roast meat in the tiled stove.' 'Upon my word!' cried the miller, and +went thither, and found the roast meat. The peasant made the raven +prophesy still more, and said: 'Thirdly, he says that there is some +salad on the bed.' 'That would be a fine thing!' cried the miller, and +went there and found the salad. At last the peasant pinched the raven +once more till he croaked, and said: 'Fourthly, he says that there +are some cakes under the bed.' 'That would be a fine thing!' cried the +miller, and looked there, and found the cakes. + +And now the two sat down to the table together, but the miller's wife +was frightened to death, and went to bed and took all the keys with +her. The miller would have liked much to know the fifth, but the little +peasant said: 'First, we will quickly eat the four things, for the fifth +is something bad.' So they ate, and after that they bargained how much +the miller was to give for the fifth prophecy, until they agreed on +three hundred talers. Then the peasant once more pinched the raven's +head till he croaked loudly. The miller asked: 'What did he say?' The +peasant replied: 'He says that the Devil is hiding outside there in +the closet on the porch.' The miller said: 'The Devil must go out,' and +opened the house-door; then the woman was forced to give up the keys, +and the peasant unlocked the closet. The parson ran out as fast as he +could, and the miller said: 'It was true; I saw the black rascal with my +own eyes.' The peasant, however, made off next morning by daybreak with +the three hundred talers. + +At home the small peasant gradually launched out; he built a beautiful +house, and the peasants said: 'The small peasant has certainly been to +the place where golden snow falls, and people carry the gold home in +shovels.' Then the small peasant was brought before the mayor, and +bidden to say from whence his wealth came. He answered: 'I sold my cow's +skin in the town, for three hundred talers.' When the peasants heard +that, they too wished to enjoy this great profit, and ran home, killed +all their cows, and stripped off their skins in order to sell them in +the town to the greatest advantage. The mayor, however, said: 'But my +servant must go first.' When she came to the merchant in the town, he +did not give her more than two talers for a skin, and when the others +came, he did not give them so much, and said: 'What can I do with all +these skins?' + +Then the peasants were vexed that the small peasant should have thus +outwitted them, wanted to take vengeance on him, and accused him of this +treachery before the mayor. The innocent little peasant was unanimously +sentenced to death, and was to be rolled into the water, in a barrel +pierced full of holes. He was led forth, and a priest was brought who +was to say a mass for his soul. The others were all obliged to retire to +a distance, and when the peasant looked at the priest, he recognized the +man who had been with the miller's wife. He said to him: 'I set you free +from the closet, set me free from the barrel.' At this same moment up +came, with a flock of sheep, the very shepherd whom the peasant knew had +long been wishing to be mayor, so he cried with all his might: 'No, I +will not do it; if the whole world insists on it, I will not do it!' The +shepherd hearing that, came up to him, and asked: 'What are you about? +What is it that you will not do?' The peasant said: 'They want to make +me mayor, if I will but put myself in the barrel, but I will not do it.' +The shepherd said: 'If nothing more than that is needful in order to be +mayor, I would get into the barrel at once.' The peasant said: 'If you +will get in, you will be mayor.' The shepherd was willing, and got in, +and the peasant shut the top down on him; then he took the shepherd's +flock for himself, and drove it away. The parson went to the crowd, +and declared that the mass had been said. Then they came and rolled the +barrel towards the water. When the barrel began to roll, the shepherd +cried: 'I am quite willing to be mayor.' They believed no otherwise than +that it was the peasant who was saying this, and answered: 'That is +what we intend, but first you shall look about you a little down below +there,' and they rolled the barrel down into the water. + +After that the peasants went home, and as they were entering the +village, the small peasant also came quietly in, driving a flock of +sheep and looking quite contented. Then the peasants were astonished, +and said: 'Peasant, from whence do you come? Have you come out of the +water?' 'Yes, truly,' replied the peasant, 'I sank deep, deep down, +until at last I got to the bottom; I pushed the bottom out of the +barrel, and crept out, and there were pretty meadows on which a number +of lambs were feeding, and from thence I brought this flock away with +me.' Said the peasants: 'Are there any more there?' 'Oh, yes,' said he, +'more than I could want.' Then the peasants made up their minds that +they too would fetch some sheep for themselves, a flock apiece, but the +mayor said: 'I come first.' So they went to the water together, and just +then there were some of the small fleecy clouds in the blue sky, which +are called little lambs, and they were reflected in the water, whereupon +the peasants cried: 'We already see the sheep down below!' The mayor +pressed forward and said: 'I will go down first, and look about me, and +if things promise well I'll call you.' So he jumped in; splash! went +the water; it sounded as if he were calling them, and the whole crowd +plunged in after him as one man. Then the entire village was dead, and +the small peasant, as sole heir, became a rich man. + + + + +FREDERICK AND CATHERINE + +There was once a man called Frederick: he had a wife whose name was +Catherine, and they had not long been married. One day Frederick said. +'Kate! I am going to work in the fields; when I come back I shall be +hungry so let me have something nice cooked, and a good draught of ale.' +'Very well,' said she, 'it shall all be ready.' When dinner-time drew +nigh, Catherine took a nice steak, which was all the meat she had, and +put it on the fire to fry. The steak soon began to look brown, and to +crackle in the pan; and Catherine stood by with a fork and turned it: +then she said to herself, 'The steak is almost ready, I may as well go +to the cellar for the ale.' So she left the pan on the fire and took a +large jug and went into the cellar and tapped the ale cask. The beer ran +into the jug and Catherine stood looking on. At last it popped into her +head, 'The dog is not shut up--he may be running away with the steak; +that's well thought of.' So up she ran from the cellar; and sure enough +the rascally cur had got the steak in his mouth, and was making off with +it. + +Away ran Catherine, and away ran the dog across the field: but he ran +faster than she, and stuck close to the steak. 'It's all gone, and "what +can't be cured must be endured",' said Catherine. So she turned round; +and as she had run a good way and was tired, she walked home leisurely +to cool herself. + +Now all this time the ale was running too, for Catherine had not turned +the cock; and when the jug was full the liquor ran upon the floor till +the cask was empty. When she got to the cellar stairs she saw what had +happened. 'My stars!' said she, 'what shall I do to keep Frederick from +seeing all this slopping about?' So she thought a while; and at last +remembered that there was a sack of fine meal bought at the last fair, +and that if she sprinkled this over the floor it would suck up the ale +nicely. 'What a lucky thing,' said she, 'that we kept that meal! we have +now a good use for it.' So away she went for it: but she managed to set +it down just upon the great jug full of beer, and upset it; and thus +all the ale that had been saved was set swimming on the floor also. 'Ah! +well,' said she, 'when one goes another may as well follow.' Then she +strewed the meal all about the cellar, and was quite pleased with her +cleverness, and said, 'How very neat and clean it looks!' + +At noon Frederick came home. 'Now, wife,' cried he, 'what have you for +dinner?' 'O Frederick!' answered she, 'I was cooking you a steak; but +while I went down to draw the ale, the dog ran away with it; and while +I ran after him, the ale ran out; and when I went to dry up the ale +with the sack of meal that we got at the fair, I upset the jug: but the +cellar is now quite dry, and looks so clean!' 'Kate, Kate,' said he, +'how could you do all this?' Why did you leave the steak to fry, and the +ale to run, and then spoil all the meal?' 'Why, Frederick,' said she, 'I +did not know I was doing wrong; you should have told me before.' + +The husband thought to himself, 'If my wife manages matters thus, I must +look sharp myself.' Now he had a good deal of gold in the house: so he +said to Catherine, 'What pretty yellow buttons these are! I shall put +them into a box and bury them in the garden; but take care that you +never go near or meddle with them.' 'No, Frederick,' said she, 'that +I never will.' As soon as he was gone, there came by some pedlars with +earthenware plates and dishes, and they asked her whether she would buy. +'Oh dear me, I should like to buy very much, but I have no money: if +you had any use for yellow buttons, I might deal with you.' 'Yellow +buttons!' said they: 'let us have a look at them.' 'Go into the garden +and dig where I tell you, and you will find the yellow buttons: I dare +not go myself.' So the rogues went: and when they found what these +yellow buttons were, they took them all away, and left her plenty of +plates and dishes. Then she set them all about the house for a show: +and when Frederick came back, he cried out, 'Kate, what have you been +doing?' 'See,' said she, 'I have bought all these with your yellow +buttons: but I did not touch them myself; the pedlars went themselves +and dug them up.' 'Wife, wife,' said Frederick, 'what a pretty piece of +work you have made! those yellow buttons were all my money: how came you +to do such a thing?' 'Why,' answered she, 'I did not know there was any +harm in it; you should have told me.' + +Catherine stood musing for a while, and at last said to her husband, +'Hark ye, Frederick, we will soon get the gold back: let us run after +the thieves.' 'Well, we will try,' answered he; 'but take some butter +and cheese with you, that we may have something to eat by the way.' +'Very well,' said she; and they set out: and as Frederick walked the +fastest, he left his wife some way behind. 'It does not matter,' thought +she: 'when we turn back, I shall be so much nearer home than he.' + +Presently she came to the top of a hill, down the side of which there +was a road so narrow that the cart wheels always chafed the trees +on each side as they passed. 'Ah, see now,' said she, 'how they have +bruised and wounded those poor trees; they will never get well.' So she +took pity on them, and made use of the butter to grease them all, so +that the wheels might not hurt them so much. While she was doing this +kind office one of her cheeses fell out of the basket, and rolled down +the hill. Catherine looked, but could not see where it had gone; so she +said, 'Well, I suppose the other will go the same way and find you; he +has younger legs than I have.' Then she rolled the other cheese after +it; and away it went, nobody knows where, down the hill. But she said +she supposed that they knew the road, and would follow her, and she +could not stay there all day waiting for them. + +At last she overtook Frederick, who desired her to give him something to +eat. Then she gave him the dry bread. 'Where are the butter and cheese?' +said he. 'Oh!' answered she, 'I used the butter to grease those poor +trees that the wheels chafed so: and one of the cheeses ran away so I +sent the other after it to find it, and I suppose they are both on +the road together somewhere.' 'What a goose you are to do such silly +things!' said the husband. 'How can you say so?' said she; 'I am sure +you never told me not.' + +They ate the dry bread together; and Frederick said, 'Kate, I hope you +locked the door safe when you came away.' 'No,' answered she, 'you did +not tell me.' 'Then go home, and do it now before we go any farther,' +said Frederick, 'and bring with you something to eat.' + +Catherine did as he told her, and thought to herself by the way, +'Frederick wants something to eat; but I don't think he is very fond of +butter and cheese: I'll bring him a bag of fine nuts, and the vinegar, +for I have often seen him take some.' + +When she reached home, she bolted the back door, but the front door she +took off the hinges, and said, 'Frederick told me to lock the door, but +surely it can nowhere be so safe if I take it with me.' So she took +her time by the way; and when she overtook her husband she cried +out, 'There, Frederick, there is the door itself, you may watch it as +carefully as you please.' 'Alas! alas!' said he, 'what a clever wife I +have! I sent you to make the house fast, and you take the door away, so +that everybody may go in and out as they please--however, as you have +brought the door, you shall carry it about with you for your pains.' +'Very well,' answered she, 'I'll carry the door; but I'll not carry the +nuts and vinegar bottle also--that would be too much of a load; so if +you please, I'll fasten them to the door.' + +Frederick of course made no objection to that plan, and they set off +into the wood to look for the thieves; but they could not find them: and +when it grew dark, they climbed up into a tree to spend the night there. +Scarcely were they up, than who should come by but the very rogues they +were looking for. They were in truth great rascals, and belonged to that +class of people who find things before they are lost; they were tired; +so they sat down and made a fire under the very tree where Frederick and +Catherine were. Frederick slipped down on the other side, and picked up +some stones. Then he climbed up again, and tried to hit the thieves on +the head with them: but they only said, 'It must be near morning, for +the wind shakes the fir-apples down.' + +Catherine, who had the door on her shoulder, began to be very tired; +but she thought it was the nuts upon it that were so heavy: so she said +softly, 'Frederick, I must let the nuts go.' 'No,' answered he, 'not +now, they will discover us.' 'I can't help that: they must go.' 'Well, +then, make haste and throw them down, if you will.' Then away rattled +the nuts down among the boughs and one of the thieves cried, 'Bless me, +it is hailing.' + +A little while after, Catherine thought the door was still very heavy: +so she whispered to Frederick, 'I must throw the vinegar down.' 'Pray +don't,' answered he, 'it will discover us.' 'I can't help that,' said +she, 'go it must.' So she poured all the vinegar down; and the thieves +said, 'What a heavy dew there is!' + +At last it popped into Catherine's head that it was the door itself that +was so heavy all the time: so she whispered, 'Frederick, I must throw +the door down soon.' But he begged and prayed her not to do so, for he +was sure it would betray them. 'Here goes, however,' said she: and down +went the door with such a clatter upon the thieves, that they cried +out 'Murder!' and not knowing what was coming, ran away as fast as they +could, and left all the gold. So when Frederick and Catherine came down, +there they found all their money safe and sound. + + + + +SWEETHEART ROLAND + +There was once upon a time a woman who was a real witch and had two +daughters, one ugly and wicked, and this one she loved because she was +her own daughter, and one beautiful and good, and this one she hated, +because she was her stepdaughter. The stepdaughter once had a pretty +apron, which the other fancied so much that she became envious, and +told her mother that she must and would have that apron. 'Be quiet, my +child,' said the old woman, 'and you shall have it. Your stepsister has +long deserved death; tonight when she is asleep I will come and cut her +head off. Only be careful that you are at the far side of the bed, and +push her well to the front.' It would have been all over with the poor +girl if she had not just then been standing in a corner, and heard +everything. All day long she dared not go out of doors, and when bedtime +had come, the witch's daughter got into bed first, so as to lie at the +far side, but when she was asleep, the other pushed her gently to the +front, and took for herself the place at the back, close by the wall. In +the night, the old woman came creeping in, she held an axe in her right +hand, and felt with her left to see if anyone were lying at the outside, +and then she grasped the axe with both hands, and cut her own child's +head off. + +When she had gone away, the girl got up and went to her sweetheart, who +was called Roland, and knocked at his door. When he came out, she said +to him: 'Listen, dearest Roland, we must fly in all haste; my stepmother +wanted to kill me, but has struck her own child. When daylight comes, +and she sees what she has done, we shall be lost.' 'But,' said Roland, +'I counsel you first to take away her magic wand, or we cannot escape +if she pursues us.' The maiden fetched the magic wand, and she took the +dead girl's head and dropped three drops of blood on the ground, one in +front of the bed, one in the kitchen, and one on the stairs. Then she +hurried away with her lover. + +When the old witch got up next morning, she called her daughter, and +wanted to give her the apron, but she did not come. Then the witch +cried: 'Where are you?' 'Here, on the stairs, I am sweeping,' answered +the first drop of blood. The old woman went out, but saw no one on the +stairs, and cried again: 'Where are you?' 'Here in the kitchen, I am +warming myself,' cried the second drop of blood. She went into the +kitchen, but found no one. Then she cried again: 'Where are you?' 'Ah, +here in the bed, I am sleeping,' cried the third drop of blood. She went +into the room to the bed. What did she see there? Her own child, +whose head she had cut off, bathed in her blood. The witch fell into +a passion, sprang to the window, and as she could look forth quite far +into the world, she perceived her stepdaughter hurrying away with her +sweetheart Roland. 'That shall not help you,' cried she, 'even if you +have got a long way off, you shall still not escape me.' She put on her +many-league boots, in which she covered an hour's walk at every step, +and it was not long before she overtook them. The girl, however, when +she saw the old woman striding towards her, changed, with her magic +wand, her sweetheart Roland into a lake, and herself into a duck +swimming in the middle of it. The witch placed herself on the shore, +threw breadcrumbs in, and went to endless trouble to entice the duck; +but the duck did not let herself be enticed, and the old woman had to +go home at night as she had come. At this the girl and her sweetheart +Roland resumed their natural shapes again, and they walked on the whole +night until daybreak. Then the maiden changed herself into a beautiful +flower which stood in the midst of a briar hedge, and her sweetheart +Roland into a fiddler. It was not long before the witch came striding up +towards them, and said to the musician: 'Dear musician, may I pluck that +beautiful flower for myself?' 'Oh, yes,' he replied, 'I will play to +you while you do it.' As she was hastily creeping into the hedge and was +just going to pluck the flower, knowing perfectly well who the flower +was, he began to play, and whether she would or not, she was forced +to dance, for it was a magical dance. The faster he played, the more +violent springs was she forced to make, and the thorns tore her clothes +from her body, and pricked her and wounded her till she bled, and as he +did not stop, she had to dance till she lay dead on the ground. + +As they were now set free, Roland said: 'Now I will go to my father and +arrange for the wedding.' 'Then in the meantime I will stay here and +wait for you,' said the girl, 'and that no one may recognize me, I will +change myself into a red stone landmark.' Then Roland went away, and the +girl stood like a red landmark in the field and waited for her beloved. +But when Roland got home, he fell into the snares of another, who so +fascinated him that he forgot the maiden. The poor girl remained there a +long time, but at length, as he did not return at all, she was sad, and +changed herself into a flower, and thought: 'Someone will surely come +this way, and trample me down.' + +It befell, however, that a shepherd kept his sheep in the field and saw +the flower, and as it was so pretty, plucked it, took it with him, and +laid it away in his chest. From that time forth, strange things happened +in the shepherd's house. When he arose in the morning, all the work was +already done, the room was swept, the table and benches cleaned, the +fire in the hearth was lighted, and the water was fetched, and at noon, +when he came home, the table was laid, and a good dinner served. He +could not conceive how this came to pass, for he never saw a human being +in his house, and no one could have concealed himself in it. He was +certainly pleased with this good attendance, but still at last he was so +afraid that he went to a wise woman and asked for her advice. The wise +woman said: 'There is some enchantment behind it, listen very early some +morning if anything is moving in the room, and if you see anything, no +matter what it is, throw a white cloth over it, and then the magic will +be stopped.' + +The shepherd did as she bade him, and next morning just as day dawned, +he saw the chest open, and the flower come out. Swiftly he +sprang towards it, and threw a white cloth over it. Instantly the +transformation came to an end, and a beautiful girl stood before him, +who admitted to him that she had been the flower, and that up to this +time she had attended to his house-keeping. She told him her story, +and as she pleased him he asked her if she would marry him, but she +answered: 'No,' for she wanted to remain faithful to her sweetheart +Roland, although he had deserted her. Nevertheless, she promised not to +go away, but to continue keeping house for the shepherd. + +And now the time drew near when Roland's wedding was to be celebrated, +and then, according to an old custom in the country, it was announced +that all the girls were to be present at it, and sing in honour of the +bridal pair. When the faithful maiden heard of this, she grew so sad +that she thought her heart would break, and she would not go thither, +but the other girls came and took her. When it came to her turn to sing, +she stepped back, until at last she was the only one left, and then she +could not refuse. But when she began her song, and it reached Roland's +ears, he sprang up and cried: 'I know the voice, that is the true +bride, I will have no other!' Everything he had forgotten, and which had +vanished from his mind, had suddenly come home again to his heart. Then +the faithful maiden held her wedding with her sweetheart Roland, and +grief came to an end and joy began. + + + + +SNOWDROP + +It was the middle of winter, when the broad flakes of snow were falling +around, that the queen of a country many thousand miles off sat working +at her window. The frame of the window was made of fine black ebony, and +as she sat looking out upon the snow, she pricked her finger, and three +drops of blood fell upon it. Then she gazed thoughtfully upon the red +drops that sprinkled the white snow, and said, 'Would that my little +daughter may be as white as that snow, as red as that blood, and as +black as this ebony windowframe!' And so the little girl really did grow +up; her skin was as white as snow, her cheeks as rosy as the blood, and +her hair as black as ebony; and she was called Snowdrop. + +But this queen died; and the king soon married another wife, who became +queen, and was very beautiful, but so vain that she could not bear +to think that anyone could be handsomer than she was. She had a fairy +looking-glass, to which she used to go, and then she would gaze upon +herself in it, and say: + + 'Tell me, glass, tell me true! + Of all the ladies in the land, + Who is fairest, tell me, who?' + +And the glass had always answered: + + 'Thou, queen, art the fairest in all the land.' + +But Snowdrop grew more and more beautiful; and when she was seven years +old she was as bright as the day, and fairer than the queen herself. +Then the glass one day answered the queen, when she went to look in it +as usual: + + 'Thou, queen, art fair, and beauteous to see, + But Snowdrop is lovelier far than thee!' + +When she heard this she turned pale with rage and envy, and called to +one of her servants, and said, 'Take Snowdrop away into the wide wood, +that I may never see her any more.' Then the servant led her away; but +his heart melted when Snowdrop begged him to spare her life, and he +said, 'I will not hurt you, thou pretty child.' So he left her by +herself; and though he thought it most likely that the wild beasts would +tear her in pieces, he felt as if a great weight were taken off his +heart when he had made up his mind not to kill her but to leave her to +her fate, with the chance of someone finding and saving her. + +Then poor Snowdrop wandered along through the wood in great fear; and +the wild beasts roared about her, but none did her any harm. In the +evening she came to a cottage among the hills, and went in to rest, for +her little feet would carry her no further. Everything was spruce and +neat in the cottage: on the table was spread a white cloth, and there +were seven little plates, seven little loaves, and seven little glasses +with wine in them; and seven knives and forks laid in order; and by +the wall stood seven little beds. As she was very hungry, she picked +a little piece of each loaf and drank a very little wine out of each +glass; and after that she thought she would lie down and rest. So she +tried all the little beds; but one was too long, and another was too +short, till at last the seventh suited her: and there she laid herself +down and went to sleep. + +By and by in came the masters of the cottage. Now they were seven little +dwarfs, that lived among the mountains, and dug and searched for gold. +They lighted up their seven lamps, and saw at once that all was not +right. The first said, 'Who has been sitting on my stool?' The second, +'Who has been eating off my plate?' The third, 'Who has been picking my +bread?' The fourth, 'Who has been meddling with my spoon?' The fifth, +'Who has been handling my fork?' The sixth, 'Who has been cutting with +my knife?' The seventh, 'Who has been drinking my wine?' Then the first +looked round and said, 'Who has been lying on my bed?' And the rest came +running to him, and everyone cried out that somebody had been upon his +bed. But the seventh saw Snowdrop, and called all his brethren to come +and see her; and they cried out with wonder and astonishment and brought +their lamps to look at her, and said, 'Good heavens! what a lovely child +she is!' And they were very glad to see her, and took care not to wake +her; and the seventh dwarf slept an hour with each of the other dwarfs +in turn, till the night was gone. + +In the morning Snowdrop told them all her story; and they pitied her, +and said if she would keep all things in order, and cook and wash and +knit and spin for them, she might stay where she was, and they would +take good care of her. Then they went out all day long to their work, +seeking for gold and silver in the mountains: but Snowdrop was left at +home; and they warned her, and said, 'The queen will soon find out where +you are, so take care and let no one in.' + +But the queen, now that she thought Snowdrop was dead, believed that she +must be the handsomest lady in the land; and she went to her glass and +said: + + 'Tell me, glass, tell me true! + Of all the ladies in the land, + Who is fairest, tell me, who?' + +And the glass answered: + + 'Thou, queen, art the fairest in all this land: + But over the hills, in the greenwood shade, + Where the seven dwarfs their dwelling have made, + There Snowdrop is hiding her head; and she + Is lovelier far, O queen! than thee.' + +Then the queen was very much frightened; for she knew that the glass +always spoke the truth, and was sure that the servant had betrayed her. +And she could not bear to think that anyone lived who was more beautiful +than she was; so she dressed herself up as an old pedlar, and went +her way over the hills, to the place where the dwarfs dwelt. Then she +knocked at the door, and cried, 'Fine wares to sell!' Snowdrop looked +out at the window, and said, 'Good day, good woman! what have you to +sell?' 'Good wares, fine wares,' said she; 'laces and bobbins of all +colours.' 'I will let the old lady in; she seems to be a very good +sort of body,' thought Snowdrop, as she ran down and unbolted the door. +'Bless me!' said the old woman, 'how badly your stays are laced! Let me +lace them up with one of my nice new laces.' Snowdrop did not dream of +any mischief; so she stood before the old woman; but she set to work +so nimbly, and pulled the lace so tight, that Snowdrop's breath was +stopped, and she fell down as if she were dead. 'There's an end to all +thy beauty,' said the spiteful queen, and went away home. + +In the evening the seven dwarfs came home; and I need not say how +grieved they were to see their faithful Snowdrop stretched out upon the +ground, as if she was quite dead. However, they lifted her up, and when +they found what ailed her, they cut the lace; and in a little time she +began to breathe, and very soon came to life again. Then they said, 'The +old woman was the queen herself; take care another time, and let no one +in when we are away.' + +When the queen got home, she went straight to her glass, and spoke to it +as before; but to her great grief it still said: + + 'Thou, queen, art the fairest in all this land: + But over the hills, in the greenwood shade, + Where the seven dwarfs their dwelling have made, + There Snowdrop is hiding her head; and she + Is lovelier far, O queen! than thee.' + +Then the blood ran cold in her heart with spite and malice, to see that +Snowdrop still lived; and she dressed herself up again, but in quite +another dress from the one she wore before, and took with her a poisoned +comb. When she reached the dwarfs' cottage, she knocked at the door, and +cried, 'Fine wares to sell!' But Snowdrop said, 'I dare not let anyone +in.' Then the queen said, 'Only look at my beautiful combs!' and gave +her the poisoned one. And it looked so pretty, that she took it up and +put it into her hair to try it; but the moment it touched her head, +the poison was so powerful that she fell down senseless. 'There you may +lie,' said the queen, and went her way. But by good luck the dwarfs +came in very early that evening; and when they saw Snowdrop lying on +the ground, they thought what had happened, and soon found the poisoned +comb. And when they took it away she got well, and told them all that +had passed; and they warned her once more not to open the door to +anyone. + +Meantime the queen went home to her glass, and shook with rage when she +read the very same answer as before; and she said, 'Snowdrop shall die, +if it cost me my life.' So she went by herself into her chamber, and got +ready a poisoned apple: the outside looked very rosy and tempting, but +whoever tasted it was sure to die. Then she dressed herself up as a +peasant's wife, and travelled over the hills to the dwarfs' cottage, +and knocked at the door; but Snowdrop put her head out of the window and +said, 'I dare not let anyone in, for the dwarfs have told me not.' 'Do +as you please,' said the old woman, 'but at any rate take this pretty +apple; I will give it you.' 'No,' said Snowdrop, 'I dare not take it.' +'You silly girl!' answered the other, 'what are you afraid of? Do you +think it is poisoned? Come! do you eat one part, and I will eat the +other.' Now the apple was so made up that one side was good, though the +other side was poisoned. Then Snowdrop was much tempted to taste, for +the apple looked so very nice; and when she saw the old woman eat, she +could wait no longer. But she had scarcely put the piece into her mouth, +when she fell down dead upon the ground. 'This time nothing will save +thee,' said the queen; and she went home to her glass, and at last it +said: + + 'Thou, queen, art the fairest of all the fair.' + +And then her wicked heart was glad, and as happy as such a heart could +be. + +When evening came, and the dwarfs had gone home, they found Snowdrop +lying on the ground: no breath came from her lips, and they were afraid +that she was quite dead. They lifted her up, and combed her hair, and +washed her face with wine and water; but all was in vain, for the little +girl seemed quite dead. So they laid her down upon a bier, and all seven +watched and bewailed her three whole days; and then they thought they +would bury her: but her cheeks were still rosy; and her face looked just +as it did while she was alive; so they said, 'We will never bury her in +the cold ground.' And they made a coffin of glass, so that they might +still look at her, and wrote upon it in golden letters what her name +was, and that she was a king's daughter. And the coffin was set among +the hills, and one of the dwarfs always sat by it and watched. And the +birds of the air came too, and bemoaned Snowdrop; and first of all came +an owl, and then a raven, and at last a dove, and sat by her side. + +And thus Snowdrop lay for a long, long time, and still only looked as +though she was asleep; for she was even now as white as snow, and as red +as blood, and as black as ebony. At last a prince came and called at the +dwarfs' house; and he saw Snowdrop, and read what was written in golden +letters. Then he offered the dwarfs money, and prayed and besought them +to let him take her away; but they said, 'We will not part with her for +all the gold in the world.' At last, however, they had pity on him, and +gave him the coffin; but the moment he lifted it up to carry it home +with him, the piece of apple fell from between her lips, and Snowdrop +awoke, and said, 'Where am I?' And the prince said, 'Thou art quite safe +with me.' + +Then he told her all that had happened, and said, 'I love you far better +than all the world; so come with me to my father's palace, and you shall +be my wife.' And Snowdrop consented, and went home with the prince; +and everything was got ready with great pomp and splendour for their +wedding. + +To the feast was asked, among the rest, Snowdrop's old enemy the queen; +and as she was dressing herself in fine rich clothes, she looked in the +glass and said: + + 'Tell me, glass, tell me true! + Of all the ladies in the land, + Who is fairest, tell me, who?' + +And the glass answered: + + 'Thou, lady, art loveliest here, I ween; + But lovelier far is the new-made queen.' + +When she heard this she started with rage; but her envy and curiosity +were so great, that she could not help setting out to see the bride. And +when she got there, and saw that it was no other than Snowdrop, who, as +she thought, had been dead a long while, she choked with rage, and fell +down and died: but Snowdrop and the prince lived and reigned happily +over that land many, many years; and sometimes they went up into the +mountains, and paid a visit to the little dwarfs, who had been so kind +to Snowdrop in her time of need. + + + + +THE PINK + +There was once upon a time a queen to whom God had given no children. +Every morning she went into the garden and prayed to God in heaven to +bestow on her a son or a daughter. Then an angel from heaven came to her +and said: 'Be at rest, you shall have a son with the power of wishing, +so that whatsoever in the world he wishes for, that shall he have.' Then +she went to the king, and told him the joyful tidings, and when the time +was come she gave birth to a son, and the king was filled with gladness. + +Every morning she went with the child to the garden where the wild +beasts were kept, and washed herself there in a clear stream. It +happened once when the child was a little older, that it was lying in +her arms and she fell asleep. Then came the old cook, who knew that the +child had the power of wishing, and stole it away, and he took a hen, +and cut it in pieces, and dropped some of its blood on the queen's apron +and on her dress. Then he carried the child away to a secret place, +where a nurse was obliged to suckle it, and he ran to the king and +accused the queen of having allowed her child to be taken from her by +the wild beasts. When the king saw the blood on her apron, he believed +this, fell into such a passion that he ordered a high tower to be built, +in which neither sun nor moon could be seen and had his wife put into +it, and walled up. Here she was to stay for seven years without meat +or drink, and die of hunger. But God sent two angels from heaven in the +shape of white doves, which flew to her twice a day, and carried her +food until the seven years were over. + +The cook, however, thought to himself: 'If the child has the power of +wishing, and I am here, he might very easily get me into trouble.' So +he left the palace and went to the boy, who was already big enough to +speak, and said to him: 'Wish for a beautiful palace for yourself with +a garden, and all else that pertains to it.' Scarcely were the words out +of the boy's mouth, when everything was there that he had wished for. +After a while the cook said to him: 'It is not well for you to be so +alone, wish for a pretty girl as a companion.' Then the king's son +wished for one, and she immediately stood before him, and was more +beautiful than any painter could have painted her. The two played +together, and loved each other with all their hearts, and the old cook +went out hunting like a nobleman. The thought occurred to him, however, +that the king's son might some day wish to be with his father, and thus +bring him into great peril. So he went out and took the maiden aside, +and said: 'Tonight when the boy is asleep, go to his bed and plunge this +knife into his heart, and bring me his heart and tongue, and if you do +not do it, you shall lose your life.' Thereupon he went away, and when +he returned next day she had not done it, and said: 'Why should I shed +the blood of an innocent boy who has never harmed anyone?' The cook once +more said: 'If you do not do it, it shall cost you your own life.' When +he had gone away, she had a little hind brought to her, and ordered her +to be killed, and took her heart and tongue, and laid them on a plate, +and when she saw the old man coming, she said to the boy: 'Lie down in +your bed, and draw the clothes over you.' Then the wicked wretch came in +and said: 'Where are the boy's heart and tongue?' The girl reached the +plate to him, but the king's son threw off the quilt, and said: 'You old +sinner, why did you want to kill me? Now will I pronounce thy sentence. +You shall become a black poodle and have a gold collar round your neck, +and shall eat burning coals, till the flames burst forth from your +throat.' And when he had spoken these words, the old man was changed +into a poodle dog, and had a gold collar round his neck, and the cooks +were ordered to bring up some live coals, and these he ate, until the +flames broke forth from his throat. The king's son remained there a +short while longer, and he thought of his mother, and wondered if she +were still alive. At length he said to the maiden: 'I will go home to my +own country; if you will go with me, I will provide for you.' 'Ah,' +she replied, 'the way is so long, and what shall I do in a strange land +where I am unknown?' As she did not seem quite willing, and as they +could not be parted from each other, he wished that she might be changed +into a beautiful pink, and took her with him. Then he went away to his +own country, and the poodle had to run after him. He went to the tower +in which his mother was confined, and as it was so high, he wished for +a ladder which would reach up to the very top. Then he mounted up and +looked inside, and cried: 'Beloved mother, Lady Queen, are you still +alive, or are you dead?' She answered: 'I have just eaten, and am still +satisfied,' for she thought the angels were there. Said he: 'I am your +dear son, whom the wild beasts were said to have torn from your arms; +but I am alive still, and will soon set you free.' Then he descended +again, and went to his father, and caused himself to be announced as a +strange huntsman, and asked if he could offer him service. The king said +yes, if he was skilful and could get game for him, he should come to +him, but that deer had never taken up their quarters in any part of the +district or country. Then the huntsman promised to procure as much game +for him as he could possibly use at the royal table. So he summoned all +the huntsmen together, and bade them go out into the forest with him. +And he went with them and made them form a great circle, open at one end +where he stationed himself, and began to wish. Two hundred deer and more +came running inside the circle at once, and the huntsmen shot them. +Then they were all placed on sixty country carts, and driven home to the +king, and for once he was able to deck his table with game, after having +had none at all for years. + +Now the king felt great joy at this, and commanded that his entire +household should eat with him next day, and made a great feast. When +they were all assembled together, he said to the huntsman: 'As you are +so clever, you shall sit by me.' He replied: 'Lord King, your majesty +must excuse me, I am a poor huntsman.' But the king insisted on it, +and said: 'You shall sit by me,' until he did it. Whilst he was sitting +there, he thought of his dearest mother, and wished that one of the +king's principal servants would begin to speak of her, and would ask how +it was faring with the queen in the tower, and if she were alive still, +or had perished. Hardly had he formed the wish than the marshal began, +and said: 'Your majesty, we live joyously here, but how is the queen +living in the tower? Is she still alive, or has she died?' But the king +replied: 'She let my dear son be torn to pieces by wild beasts; I will +not have her named.' Then the huntsman arose and said: 'Gracious lord +father she is alive still, and I am her son, and I was not carried away +by wild beasts, but by that wretch the old cook, who tore me from her +arms when she was asleep, and sprinkled her apron with the blood of a +chicken.' Thereupon he took the dog with the golden collar, and said: +'That is the wretch!' and caused live coals to be brought, and these the +dog was compelled to devour before the sight of all, until flames burst +forth from its throat. On this the huntsman asked the king if he would +like to see the dog in his true shape, and wished him back into the form +of the cook, in the which he stood immediately, with his white apron, +and his knife by his side. When the king saw him he fell into a passion, +and ordered him to be cast into the deepest dungeon. Then the huntsman +spoke further and said: 'Father, will you see the maiden who brought me +up so tenderly and who was afterwards to murder me, but did not do it, +though her own life depended on it?' The king replied: 'Yes, I would +like to see her.' The son said: 'Most gracious father, I will show her +to you in the form of a beautiful flower,' and he thrust his hand into +his pocket and brought forth the pink, and placed it on the royal table, +and it was so beautiful that the king had never seen one to equal it. +Then the son said: 'Now will I show her to you in her own form,' and +wished that she might become a maiden, and she stood there looking so +beautiful that no painter could have made her look more so. + +And the king sent two waiting-maids and two attendants into the tower, +to fetch the queen and bring her to the royal table. But when she was +led in she ate nothing, and said: 'The gracious and merciful God who has +supported me in the tower, will soon set me free.' She lived three days +more, and then died happily, and when she was buried, the two white +doves which had brought her food to the tower, and were angels of +heaven, followed her body and seated themselves on her grave. The aged +king ordered the cook to be torn in four pieces, but grief consumed the +king's own heart, and he soon died. His son married the beautiful maiden +whom he had brought with him as a flower in his pocket, and whether they +are still alive or not, is known to God. + + + + +CLEVER ELSIE + +There was once a man who had a daughter who was called Clever Elsie. And +when she had grown up her father said: 'We will get her married.' 'Yes,' +said the mother, 'if only someone would come who would have her.' At +length a man came from a distance and wooed her, who was called Hans; +but he stipulated that Clever Elsie should be really smart. 'Oh,' said +the father, 'she has plenty of good sense'; and the mother said: 'Oh, +she can see the wind coming up the street, and hear the flies coughing.' +'Well,' said Hans, 'if she is not really smart, I won't have her.' When +they were sitting at dinner and had eaten, the mother said: 'Elsie, go +into the cellar and fetch some beer.' Then Clever Elsie took the pitcher +from the wall, went into the cellar, and tapped the lid briskly as she +went, so that the time might not appear long. When she was below she +fetched herself a chair, and set it before the barrel so that she had +no need to stoop, and did not hurt her back or do herself any unexpected +injury. Then she placed the can before her, and turned the tap, and +while the beer was running she would not let her eyes be idle, but +looked up at the wall, and after much peering here and there, saw a +pick-axe exactly above her, which the masons had accidentally left +there. + +Then Clever Elsie began to weep and said: 'If I get Hans, and we have +a child, and he grows big, and we send him into the cellar here to draw +beer, then the pick-axe will fall on his head and kill him.' Then she +sat and wept and screamed with all the strength of her body, over the +misfortune which lay before her. Those upstairs waited for the drink, +but Clever Elsie still did not come. Then the woman said to the servant: +'Just go down into the cellar and see where Elsie is.' The maid went and +found her sitting in front of the barrel, screaming loudly. 'Elsie why +do you weep?' asked the maid. 'Ah,' she answered, 'have I not reason to +weep? If I get Hans, and we have a child, and he grows big, and has to +draw beer here, the pick-axe will perhaps fall on his head, and kill +him.' Then said the maid: 'What a clever Elsie we have!' and sat down +beside her and began loudly to weep over the misfortune. After a while, +as the maid did not come back, and those upstairs were thirsty for the +beer, the man said to the boy: 'Just go down into the cellar and see +where Elsie and the girl are.' The boy went down, and there sat Clever +Elsie and the girl both weeping together. Then he asked: 'Why are you +weeping?' 'Ah,' said Elsie, 'have I not reason to weep? If I get Hans, +and we have a child, and he grows big, and has to draw beer here, the +pick-axe will fall on his head and kill him.' Then said the boy: 'What +a clever Elsie we have!' and sat down by her, and likewise began to +howl loudly. Upstairs they waited for the boy, but as he still did not +return, the man said to the woman: 'Just go down into the cellar and see +where Elsie is!' The woman went down, and found all three in the midst +of their lamentations, and inquired what was the cause; then Elsie told +her also that her future child was to be killed by the pick-axe, when it +grew big and had to draw beer, and the pick-axe fell down. Then said the +mother likewise: 'What a clever Elsie we have!' and sat down and wept +with them. The man upstairs waited a short time, but as his wife did not +come back and his thirst grew ever greater, he said: 'I must go into the +cellar myself and see where Elsie is.' But when he got into the cellar, +and they were all sitting together crying, and he heard the reason, and +that Elsie's child was the cause, and the Elsie might perhaps bring one +into the world some day, and that he might be killed by the pick-axe, if +he should happen to be sitting beneath it, drawing beer just at the very +time when it fell down, he cried: 'Oh, what a clever Elsie!' and sat +down, and likewise wept with them. The bridegroom stayed upstairs alone +for a long time; then as no one would come back he thought: 'They must be +waiting for me below: I too must go there and see what they are about.' +When he got down, the five of them were sitting screaming and lamenting +quite piteously, each out-doing the other. 'What misfortune has happened +then?' asked he. 'Ah, dear Hans,' said Elsie, 'if we marry each other +and have a child, and he is big, and we perhaps send him here to draw +something to drink, then the pick-axe which has been left up there might +dash his brains out if it were to fall down, so have we not reason to +weep?' 'Come,' said Hans, 'more understanding than that is not needed +for my household, as you are such a clever Elsie, I will have you,' and +seized her hand, took her upstairs with him, and married her. + +After Hans had had her some time, he said: 'Wife, I am going out to work +and earn some money for us; go into the field and cut the corn that we +may have some bread.' 'Yes, dear Hans, I will do that.' After Hans had +gone away, she cooked herself some good broth and took it into the field +with her. When she came to the field she said to herself: 'What shall I +do; shall I cut first, or shall I eat first? Oh, I will eat first.' Then +she drank her cup of broth and when she was fully satisfied, she once +more said: 'What shall I do? Shall I cut first, or shall I sleep first? +I will sleep first.' Then she lay down among the corn and fell asleep. +Hans had been at home for a long time, but Elsie did not come; then said +he: 'What a clever Elsie I have; she is so industrious that she does not +even come home to eat.' But when evening came and she still stayed away, +Hans went out to see what she had cut, but nothing was cut, and she +was lying among the corn asleep. Then Hans hastened home and brought +a fowler's net with little bells and hung it round about her, and she +still went on sleeping. Then he ran home, shut the house-door, and sat +down in his chair and worked. At length, when it was quite dark, Clever +Elsie awoke and when she got up there was a jingling all round about +her, and the bells rang at each step which she took. Then she was +alarmed, and became uncertain whether she really was Clever Elsie or +not, and said: 'Is it I, or is it not I?' But she knew not what answer +to make to this, and stood for a time in doubt; at length she thought: +'I will go home and ask if it be I, or if it be not I, they will be sure +to know.' She ran to the door of her own house, but it was shut; then +she knocked at the window and cried: 'Hans, is Elsie within?' 'Yes,' +answered Hans, 'she is within.' Hereupon she was terrified, and said: +'Ah, heavens! Then it is not I,' and went to another door; but when the +people heard the jingling of the bells they would not open it, and she +could get in nowhere. Then she ran out of the village, and no one has +seen her since. + + + + +THE MISER IN THE BUSH + +A farmer had a faithful and diligent servant, who had worked hard for +him three years, without having been paid any wages. At last it came +into the man's head that he would not go on thus without pay any longer; +so he went to his master, and said, 'I have worked hard for you a long +time, I will trust to you to give me what I deserve to have for my +trouble.' The farmer was a sad miser, and knew that his man was very +simple-hearted; so he took out threepence, and gave him for every year's +service a penny. The poor fellow thought it was a great deal of money to +have, and said to himself, 'Why should I work hard, and live here on bad +fare any longer? I can now travel into the wide world, and make myself +merry.' With that he put his money into his purse, and set out, roaming +over hill and valley. + +As he jogged along over the fields, singing and dancing, a little dwarf +met him, and asked him what made him so merry. 'Why, what should make +me down-hearted?' said he; 'I am sound in health and rich in purse, what +should I care for? I have saved up my three years' earnings and have it +all safe in my pocket.' 'How much may it come to?' said the little man. +'Full threepence,' replied the countryman. 'I wish you would give them +to me,' said the other; 'I am very poor.' Then the man pitied him, and +gave him all he had; and the little dwarf said in return, 'As you have +such a kind honest heart, I will grant you three wishes--one for every +penny; so choose whatever you like.' Then the countryman rejoiced at +his good luck, and said, 'I like many things better than money: first, I +will have a bow that will bring down everything I shoot at; secondly, +a fiddle that will set everyone dancing that hears me play upon it; and +thirdly, I should like that everyone should grant what I ask.' The dwarf +said he should have his three wishes; so he gave him the bow and fiddle, +and went his way. + +Our honest friend journeyed on his way too; and if he was merry before, +he was now ten times more so. He had not gone far before he met an old +miser: close by them stood a tree, and on the topmost twig sat a thrush +singing away most joyfully. 'Oh, what a pretty bird!' said the miser; 'I +would give a great deal of money to have such a one.' 'If that's all,' +said the countryman, 'I will soon bring it down.' Then he took up his +bow, and down fell the thrush into the bushes at the foot of the tree. +The miser crept into the bush to find it; but directly he had got into +the middle, his companion took up his fiddle and played away, and the +miser began to dance and spring about, capering higher and higher in +the air. The thorns soon began to tear his clothes till they all hung +in rags about him, and he himself was all scratched and wounded, so that +the blood ran down. 'Oh, for heaven's sake!' cried the miser, 'Master! +master! pray let the fiddle alone. What have I done to deserve this?' +'Thou hast shaved many a poor soul close enough,' said the other; 'thou +art only meeting thy reward': so he played up another tune. Then the +miser began to beg and promise, and offered money for his liberty; but +he did not come up to the musician's price for some time, and he danced +him along brisker and brisker, and the miser bid higher and higher, till +at last he offered a round hundred of florins that he had in his purse, +and had just gained by cheating some poor fellow. When the countryman +saw so much money, he said, 'I will agree to your proposal.' So he took +the purse, put up his fiddle, and travelled on very pleased with his +bargain. + +Meanwhile the miser crept out of the bush half-naked and in a piteous +plight, and began to ponder how he should take his revenge, and serve +his late companion some trick. At last he went to the judge, and +complained that a rascal had robbed him of his money, and beaten him +into the bargain; and that the fellow who did it carried a bow at his +back and a fiddle hung round his neck. Then the judge sent out his +officers to bring up the accused wherever they should find him; and he +was soon caught and brought up to be tried. + +The miser began to tell his tale, and said he had been robbed of +his money. 'No, you gave it me for playing a tune to you.' said the +countryman; but the judge told him that was not likely, and cut the +matter short by ordering him off to the gallows. + +So away he was taken; but as he stood on the steps he said, 'My Lord +Judge, grant me one last request.' 'Anything but thy life,' replied the +other. 'No,' said he, 'I do not ask my life; only to let me play upon +my fiddle for the last time.' The miser cried out, 'Oh, no! no! for +heaven's sake don't listen to him! don't listen to him!' But the judge +said, 'It is only this once, he will soon have done.' The fact was, he +could not refuse the request, on account of the dwarf's third gift. + +Then the miser said, 'Bind me fast, bind me fast, for pity's sake.' But +the countryman seized his fiddle, and struck up a tune, and at the first +note judge, clerks, and jailer were in motion; all began capering, and +no one could hold the miser. At the second note the hangman let his +prisoner go, and danced also, and by the time he had played the first +bar of the tune, all were dancing together--judge, court, and miser, and +all the people who had followed to look on. At first the thing was merry +and pleasant enough; but when it had gone on a while, and there seemed +to be no end of playing or dancing, they began to cry out, and beg him +to leave off; but he stopped not a whit the more for their entreaties, +till the judge not only gave him his life, but promised to return him +the hundred florins. + +Then he called to the miser, and said, 'Tell us now, you vagabond, where +you got that gold, or I shall play on for your amusement only,' 'I stole +it,' said the miser in the presence of all the people; 'I acknowledge +that I stole it, and that you earned it fairly.' Then the countryman +stopped his fiddle, and left the miser to take his place at the gallows. + + + + +ASHPUTTEL + +The wife of a rich man fell sick; and when she felt that her end drew +nigh, she called her only daughter to her bed-side, and said, 'Always be +a good girl, and I will look down from heaven and watch over you.' Soon +afterwards she shut her eyes and died, and was buried in the garden; +and the little girl went every day to her grave and wept, and was always +good and kind to all about her. And the snow fell and spread a beautiful +white covering over the grave; but by the time the spring came, and the +sun had melted it away again, her father had married another wife. This +new wife had two daughters of her own, that she brought home with her; +they were fair in face but foul at heart, and it was now a sorry time +for the poor little girl. 'What does the good-for-nothing want in the +parlour?' said they; 'they who would eat bread should first earn it; +away with the kitchen-maid!' Then they took away her fine clothes, and +gave her an old grey frock to put on, and laughed at her, and turned her +into the kitchen. + +There she was forced to do hard work; to rise early before daylight, to +bring the water, to make the fire, to cook and to wash. Besides that, +the sisters plagued her in all sorts of ways, and laughed at her. In the +evening when she was tired, she had no bed to lie down on, but was made +to lie by the hearth among the ashes; and as this, of course, made her +always dusty and dirty, they called her Ashputtel. + +It happened once that the father was going to the fair, and asked his +wife's daughters what he should bring them. 'Fine clothes,' said the +first; 'Pearls and diamonds,' cried the second. 'Now, child,' said he +to his own daughter, 'what will you have?' 'The first twig, dear +father, that brushes against your hat when you turn your face to come +homewards,' said she. Then he bought for the first two the fine clothes +and pearls and diamonds they had asked for: and on his way home, as he +rode through a green copse, a hazel twig brushed against him, and almost +pushed off his hat: so he broke it off and brought it away; and when he +got home he gave it to his daughter. Then she took it, and went to +her mother's grave and planted it there; and cried so much that it was +watered with her tears; and there it grew and became a fine tree. Three +times every day she went to it and cried; and soon a little bird came +and built its nest upon the tree, and talked with her, and watched over +her, and brought her whatever she wished for. + +Now it happened that the king of that land held a feast, which was to +last three days; and out of those who came to it his son was to choose +a bride for himself. Ashputtel's two sisters were asked to come; so they +called her up, and said, 'Now, comb our hair, brush our shoes, and tie +our sashes for us, for we are going to dance at the king's feast.' +Then she did as she was told; but when all was done she could not help +crying, for she thought to herself, she should so have liked to have +gone with them to the ball; and at last she begged her mother very hard +to let her go. 'You, Ashputtel!' said she; 'you who have nothing to +wear, no clothes at all, and who cannot even dance--you want to go to +the ball? And when she kept on begging, she said at last, to get rid of +her, 'I will throw this dishful of peas into the ash-heap, and if in +two hours' time you have picked them all out, you shall go to the feast +too.' + +Then she threw the peas down among the ashes, but the little maiden ran +out at the back door into the garden, and cried out: + + 'Hither, hither, through the sky, + Turtle-doves and linnets, fly! + Blackbird, thrush, and chaffinch gay, + Hither, hither, haste away! + One and all come help me, quick! + Haste ye, haste ye!--pick, pick, pick!' + +Then first came two white doves, flying in at the kitchen window; next +came two turtle-doves; and after them came all the little birds under +heaven, chirping and fluttering in: and they flew down into the ashes. +And the little doves stooped their heads down and set to work, pick, +pick, pick; and then the others began to pick, pick, pick: and among +them all they soon picked out all the good grain, and put it into a dish +but left the ashes. Long before the end of the hour the work was quite +done, and all flew out again at the windows. + +Then Ashputtel brought the dish to her mother, overjoyed at the thought +that now she should go to the ball. But the mother said, 'No, no! you +slut, you have no clothes, and cannot dance; you shall not go.' And when +Ashputtel begged very hard to go, she said, 'If you can in one hour's +time pick two of those dishes of peas out of the ashes, you shall go +too.' And thus she thought she should at least get rid of her. So she +shook two dishes of peas into the ashes. + +But the little maiden went out into the garden at the back of the house, +and cried out as before: + + 'Hither, hither, through the sky, + Turtle-doves and linnets, fly! + Blackbird, thrush, and chaffinch gay, + Hither, hither, haste away! + One and all come help me, quick! + Haste ye, haste ye!--pick, pick, pick!' + +Then first came two white doves in at the kitchen window; next came two +turtle-doves; and after them came all the little birds under heaven, +chirping and hopping about. And they flew down into the ashes; and the +little doves put their heads down and set to work, pick, pick, pick; and +then the others began pick, pick, pick; and they put all the good grain +into the dishes, and left all the ashes. Before half an hour's time all +was done, and out they flew again. And then Ashputtel took the dishes to +her mother, rejoicing to think that she should now go to the ball. +But her mother said, 'It is all of no use, you cannot go; you have no +clothes, and cannot dance, and you would only put us to shame': and off +she went with her two daughters to the ball. + +Now when all were gone, and nobody left at home, Ashputtel went +sorrowfully and sat down under the hazel-tree, and cried out: + + 'Shake, shake, hazel-tree, + Gold and silver over me!' + +Then her friend the bird flew out of the tree, and brought a gold and +silver dress for her, and slippers of spangled silk; and she put them +on, and followed her sisters to the feast. But they did not know her, +and thought it must be some strange princess, she looked so fine and +beautiful in her rich clothes; and they never once thought of Ashputtel, +taking it for granted that she was safe at home in the dirt. + +The king's son soon came up to her, and took her by the hand and danced +with her, and no one else: and he never left her hand; but when anyone +else came to ask her to dance, he said, 'This lady is dancing with me.' + +Thus they danced till a late hour of the night; and then she wanted to +go home: and the king's son said, 'I shall go and take care of you to +your home'; for he wanted to see where the beautiful maiden lived. But +she slipped away from him, unawares, and ran off towards home; and as +the prince followed her, she jumped up into the pigeon-house and shut +the door. Then he waited till her father came home, and told him that +the unknown maiden, who had been at the feast, had hid herself in the +pigeon-house. But when they had broken open the door they found no one +within; and as they came back into the house, Ashputtel was lying, as +she always did, in her dirty frock by the ashes, and her dim little +lamp was burning in the chimney. For she had run as quickly as she could +through the pigeon-house and on to the hazel-tree, and had there taken +off her beautiful clothes, and put them beneath the tree, that the bird +might carry them away, and had lain down again amid the ashes in her +little grey frock. + +The next day when the feast was again held, and her father, mother, and +sisters were gone, Ashputtel went to the hazel-tree, and said: + + 'Shake, shake, hazel-tree, + Gold and silver over me!' + +And the bird came and brought a still finer dress than the one she +had worn the day before. And when she came in it to the ball, everyone +wondered at her beauty: but the king's son, who was waiting for her, +took her by the hand, and danced with her; and when anyone asked her to +dance, he said as before, 'This lady is dancing with me.' + +When night came she wanted to go home; and the king's son followed here +as before, that he might see into what house she went: but she sprang +away from him all at once into the garden behind her father's house. +In this garden stood a fine large pear-tree full of ripe fruit; and +Ashputtel, not knowing where to hide herself, jumped up into it without +being seen. Then the king's son lost sight of her, and could not find +out where she was gone, but waited till her father came home, and said +to him, 'The unknown lady who danced with me has slipped away, and I +think she must have sprung into the pear-tree.' The father thought to +himself, 'Can it be Ashputtel?' So he had an axe brought; and they cut +down the tree, but found no one upon it. And when they came back into +the kitchen, there lay Ashputtel among the ashes; for she had slipped +down on the other side of the tree, and carried her beautiful clothes +back to the bird at the hazel-tree, and then put on her little grey +frock. + +The third day, when her father and mother and sisters were gone, she +went again into the garden, and said: + + 'Shake, shake, hazel-tree, + Gold and silver over me!' + +Then her kind friend the bird brought a dress still finer than the +former one, and slippers which were all of gold: so that when she came +to the feast no one knew what to say, for wonder at her beauty: and the +king's son danced with nobody but her; and when anyone else asked her to +dance, he said, 'This lady is _my_ partner, sir.' + +When night came she wanted to go home; and the king's son would go with +her, and said to himself, 'I will not lose her this time'; but, however, +she again slipped away from him, though in such a hurry that she dropped +her left golden slipper upon the stairs. + +The prince took the shoe, and went the next day to the king his father, +and said, 'I will take for my wife the lady that this golden slipper +fits.' Then both the sisters were overjoyed to hear it; for they +had beautiful feet, and had no doubt that they could wear the golden +slipper. The eldest went first into the room where the slipper was, and +wanted to try it on, and the mother stood by. But her great toe could +not go into it, and the shoe was altogether much too small for her. Then +the mother gave her a knife, and said, 'Never mind, cut it off; when you +are queen you will not care about toes; you will not want to walk.' So +the silly girl cut off her great toe, and thus squeezed on the shoe, +and went to the king's son. Then he took her for his bride, and set her +beside him on his horse, and rode away with her homewards. + +But on their way home they had to pass by the hazel-tree that Ashputtel +had planted; and on the branch sat a little dove singing: + + 'Back again! back again! look to the shoe! + The shoe is too small, and not made for you! + Prince! prince! look again for thy bride, + For she's not the true one that sits by thy side.' + +Then the prince got down and looked at her foot; and he saw, by the +blood that streamed from it, what a trick she had played him. So he +turned his horse round, and brought the false bride back to her home, +and said, 'This is not the right bride; let the other sister try and put +on the slipper.' Then she went into the room and got her foot into the +shoe, all but the heel, which was too large. But her mother squeezed it +in till the blood came, and took her to the king's son: and he set her +as his bride by his side on his horse, and rode away with her. + +But when they came to the hazel-tree the little dove sat there still, +and sang: + + 'Back again! back again! look to the shoe! + The shoe is too small, and not made for you! + Prince! prince! look again for thy bride, + For she's not the true one that sits by thy side.' + +Then he looked down, and saw that the blood streamed so much from the +shoe, that her white stockings were quite red. So he turned his horse +and brought her also back again. 'This is not the true bride,' said he +to the father; 'have you no other daughters?' 'No,' said he; 'there is +only a little dirty Ashputtel here, the child of my first wife; I am +sure she cannot be the bride.' The prince told him to send her. But the +mother said, 'No, no, she is much too dirty; she will not dare to show +herself.' However, the prince would have her come; and she first washed +her face and hands, and then went in and curtsied to him, and he reached +her the golden slipper. Then she took her clumsy shoe off her left foot, +and put on the golden slipper; and it fitted her as if it had been made +for her. And when he drew near and looked at her face he knew her, and +said, 'This is the right bride.' But the mother and both the sisters +were frightened, and turned pale with anger as he took Ashputtel on his +horse, and rode away with her. And when they came to the hazel-tree, the +white dove sang: + + 'Home! home! look at the shoe! + Princess! the shoe was made for you! + Prince! prince! take home thy bride, + For she is the true one that sits by thy side!' + +And when the dove had done its song, it came flying, and perched upon +her right shoulder, and so went home with her. + + + + +THE WHITE SNAKE + +A long time ago there lived a king who was famed for his wisdom through +all the land. Nothing was hidden from him, and it seemed as if news of +the most secret things was brought to him through the air. But he had a +strange custom; every day after dinner, when the table was cleared, +and no one else was present, a trusty servant had to bring him one more +dish. It was covered, however, and even the servant did not know what +was in it, neither did anyone know, for the king never took off the +cover to eat of it until he was quite alone. + +This had gone on for a long time, when one day the servant, who took +away the dish, was overcome with such curiosity that he could not help +carrying the dish into his room. When he had carefully locked the door, +he lifted up the cover, and saw a white snake lying on the dish. But +when he saw it he could not deny himself the pleasure of tasting it, +so he cut of a little bit and put it into his mouth. No sooner had it +touched his tongue than he heard a strange whispering of little voices +outside his window. He went and listened, and then noticed that it was +the sparrows who were chattering together, and telling one another of +all kinds of things which they had seen in the fields and woods. Eating +the snake had given him power of understanding the language of animals. + +Now it so happened that on this very day the queen lost her most +beautiful ring, and suspicion of having stolen it fell upon this trusty +servant, who was allowed to go everywhere. The king ordered the man to +be brought before him, and threatened with angry words that unless he +could before the morrow point out the thief, he himself should be looked +upon as guilty and executed. In vain he declared his innocence; he was +dismissed with no better answer. + +In his trouble and fear he went down into the courtyard and took thought +how to help himself out of his trouble. Now some ducks were sitting +together quietly by a brook and taking their rest; and, whilst they +were making their feathers smooth with their bills, they were having a +confidential conversation together. The servant stood by and listened. +They were telling one another of all the places where they had been +waddling about all the morning, and what good food they had found; and +one said in a pitiful tone: 'Something lies heavy on my stomach; as +I was eating in haste I swallowed a ring which lay under the queen's +window.' The servant at once seized her by the neck, carried her to the +kitchen, and said to the cook: 'Here is a fine duck; pray, kill her.' +'Yes,' said the cook, and weighed her in his hand; 'she has spared +no trouble to fatten herself, and has been waiting to be roasted long +enough.' So he cut off her head, and as she was being dressed for the +spit, the queen's ring was found inside her. + +The servant could now easily prove his innocence; and the king, to make +amends for the wrong, allowed him to ask a favour, and promised him +the best place in the court that he could wish for. The servant refused +everything, and only asked for a horse and some money for travelling, as +he had a mind to see the world and go about a little. When his request +was granted he set out on his way, and one day came to a pond, where he +saw three fishes caught in the reeds and gasping for water. Now, though +it is said that fishes are dumb, he heard them lamenting that they must +perish so miserably, and, as he had a kind heart, he got off his +horse and put the three prisoners back into the water. They leapt with +delight, put out their heads, and cried to him: 'We will remember you +and repay you for saving us!' + +He rode on, and after a while it seemed to him that he heard a voice in +the sand at his feet. He listened, and heard an ant-king complain: 'Why +cannot folks, with their clumsy beasts, keep off our bodies? That stupid +horse, with his heavy hoofs, has been treading down my people without +mercy!' So he turned on to a side path and the ant-king cried out to +him: 'We will remember you--one good turn deserves another!' + +The path led him into a wood, and there he saw two old ravens standing +by their nest, and throwing out their young ones. 'Out with you, you +idle, good-for-nothing creatures!' cried they; 'we cannot find food for +you any longer; you are big enough, and can provide for yourselves.' +But the poor young ravens lay upon the ground, flapping their wings, and +crying: 'Oh, what helpless chicks we are! We must shift for ourselves, +and yet we cannot fly! What can we do, but lie here and starve?' So the +good young fellow alighted and killed his horse with his sword, and gave +it to them for food. Then they came hopping up to it, satisfied their +hunger, and cried: 'We will remember you--one good turn deserves +another!' + +And now he had to use his own legs, and when he had walked a long +way, he came to a large city. There was a great noise and crowd in +the streets, and a man rode up on horseback, crying aloud: 'The king's +daughter wants a husband; but whoever seeks her hand must perform a hard +task, and if he does not succeed he will forfeit his life.' Many had +already made the attempt, but in vain; nevertheless when the youth +saw the king's daughter he was so overcome by her great beauty that he +forgot all danger, went before the king, and declared himself a suitor. + +So he was led out to the sea, and a gold ring was thrown into it, before +his eyes; then the king ordered him to fetch this ring up from the +bottom of the sea, and added: 'If you come up again without it you will +be thrown in again and again until you perish amid the waves.' All the +people grieved for the handsome youth; then they went away, leaving him +alone by the sea. + +He stood on the shore and considered what he should do, when suddenly +he saw three fishes come swimming towards him, and they were the very +fishes whose lives he had saved. The one in the middle held a mussel in +its mouth, which it laid on the shore at the youth's feet, and when he +had taken it up and opened it, there lay the gold ring in the shell. +Full of joy he took it to the king and expected that he would grant him +the promised reward. + +But when the proud princess perceived that he was not her equal in +birth, she scorned him, and required him first to perform another +task. She went down into the garden and strewed with her own hands ten +sacksful of millet-seed on the grass; then she said: 'Tomorrow morning +before sunrise these must be picked up, and not a single grain be +wanting.' + +The youth sat down in the garden and considered how it might be possible +to perform this task, but he could think of nothing, and there he sat +sorrowfully awaiting the break of day, when he should be led to death. +But as soon as the first rays of the sun shone into the garden he saw +all the ten sacks standing side by side, quite full, and not a single +grain was missing. The ant-king had come in the night with thousands +and thousands of ants, and the grateful creatures had by great industry +picked up all the millet-seed and gathered them into the sacks. + +Presently the king's daughter herself came down into the garden, and was +amazed to see that the young man had done the task she had given him. +But she could not yet conquer her proud heart, and said: 'Although he +has performed both the tasks, he shall not be my husband until he had +brought me an apple from the Tree of Life.' The youth did not know where +the Tree of Life stood, but he set out, and would have gone on for ever, +as long as his legs would carry him, though he had no hope of finding +it. After he had wandered through three kingdoms, he came one evening to +a wood, and lay down under a tree to sleep. But he heard a rustling in +the branches, and a golden apple fell into his hand. At the same time +three ravens flew down to him, perched themselves upon his knee, and +said: 'We are the three young ravens whom you saved from starving; when +we had grown big, and heard that you were seeking the Golden Apple, +we flew over the sea to the end of the world, where the Tree of Life +stands, and have brought you the apple.' The youth, full of joy, set out +homewards, and took the Golden Apple to the king's beautiful daughter, +who had now no more excuses left to make. They cut the Apple of Life in +two and ate it together; and then her heart became full of love for him, +and they lived in undisturbed happiness to a great age. + + + + +THE WOLF AND THE SEVEN LITTLE KIDS + +There was once upon a time an old goat who had seven little kids, and +loved them with all the love of a mother for her children. One day she +wanted to go into the forest and fetch some food. So she called all +seven to her and said: 'Dear children, I have to go into the forest, +be on your guard against the wolf; if he comes in, he will devour you +all--skin, hair, and everything. The wretch often disguises himself, but +you will know him at once by his rough voice and his black feet.' The +kids said: 'Dear mother, we will take good care of ourselves; you may go +away without any anxiety.' Then the old one bleated, and went on her way +with an easy mind. + +It was not long before someone knocked at the house-door and called: +'Open the door, dear children; your mother is here, and has brought +something back with her for each of you.' But the little kids knew that +it was the wolf, by the rough voice. 'We will not open the door,' cried +they, 'you are not our mother. She has a soft, pleasant voice, but +your voice is rough; you are the wolf!' Then the wolf went away to a +shopkeeper and bought himself a great lump of chalk, ate this and made +his voice soft with it. Then he came back, knocked at the door of the +house, and called: 'Open the door, dear children, your mother is here +and has brought something back with her for each of you.' But the wolf +had laid his black paws against the window, and the children saw them +and cried: 'We will not open the door, our mother has not black feet +like you: you are the wolf!' Then the wolf ran to a baker and said: 'I +have hurt my feet, rub some dough over them for me.' And when the baker +had rubbed his feet over, he ran to the miller and said: 'Strew some +white meal over my feet for me.' The miller thought to himself: 'The +wolf wants to deceive someone,' and refused; but the wolf said: 'If you +will not do it, I will devour you.' Then the miller was afraid, and made +his paws white for him. Truly, this is the way of mankind. + +So now the wretch went for the third time to the house-door, knocked at +it and said: 'Open the door for me, children, your dear little mother +has come home, and has brought every one of you something back from the +forest with her.' The little kids cried: 'First show us your paws that +we may know if you are our dear little mother.' Then he put his paws +in through the window and when the kids saw that they were white, they +believed that all he said was true, and opened the door. But who should +come in but the wolf! They were terrified and wanted to hide themselves. +One sprang under the table, the second into the bed, the third into the +stove, the fourth into the kitchen, the fifth into the cupboard, the +sixth under the washing-bowl, and the seventh into the clock-case. But +the wolf found them all, and used no great ceremony; one after the +other he swallowed them down his throat. The youngest, who was in +the clock-case, was the only one he did not find. When the wolf had +satisfied his appetite he took himself off, laid himself down under a +tree in the green meadow outside, and began to sleep. Soon afterwards +the old goat came home again from the forest. Ah! what a sight she saw +there! The house-door stood wide open. The table, chairs, and benches +were thrown down, the washing-bowl lay broken to pieces, and the quilts +and pillows were pulled off the bed. She sought her children, but they +were nowhere to be found. She called them one after another by name, but +no one answered. At last, when she came to the youngest, a soft voice +cried: 'Dear mother, I am in the clock-case.' She took the kid out, and +it told her that the wolf had come and had eaten all the others. Then +you may imagine how she wept over her poor children. + +At length in her grief she went out, and the youngest kid ran with her. +When they came to the meadow, there lay the wolf by the tree and snored +so loud that the branches shook. She looked at him on every side and +saw that something was moving and struggling in his gorged belly. 'Ah, +heavens,' she said, 'is it possible that my poor children whom he has +swallowed down for his supper, can be still alive?' Then the kid had to +run home and fetch scissors, and a needle and thread, and the goat cut +open the monster's stomach, and hardly had she made one cut, than one +little kid thrust its head out, and when she had cut farther, all six +sprang out one after another, and were all still alive, and had suffered +no injury whatever, for in his greediness the monster had swallowed them +down whole. What rejoicing there was! They embraced their dear mother, +and jumped like a tailor at his wedding. The mother, however, said: 'Now +go and look for some big stones, and we will fill the wicked beast's +stomach with them while he is still asleep.' Then the seven kids dragged +the stones thither with all speed, and put as many of them into this +stomach as they could get in; and the mother sewed him up again in the +greatest haste, so that he was not aware of anything and never once +stirred. + +When the wolf at length had had his fill of sleep, he got on his legs, +and as the stones in his stomach made him very thirsty, he wanted to +go to a well to drink. But when he began to walk and to move about, the +stones in his stomach knocked against each other and rattled. Then cried +he: + + 'What rumbles and tumbles + Against my poor bones? + I thought 'twas six kids, + But it feels like big stones.' + +And when he got to the well and stooped over the water to drink, the +heavy stones made him fall in, and he drowned miserably. When the seven +kids saw that, they came running to the spot and cried aloud: 'The wolf +is dead! The wolf is dead!' and danced for joy round about the well with +their mother. + + + + +THE QUEEN BEE + +Two kings' sons once upon a time went into the world to seek their +fortunes; but they soon fell into a wasteful foolish way of living, so +that they could not return home again. Then their brother, who was a +little insignificant dwarf, went out to seek for his brothers: but when +he had found them they only laughed at him, to think that he, who was so +young and simple, should try to travel through the world, when they, who +were so much wiser, had been unable to get on. However, they all set +out on their journey together, and came at last to an ant-hill. The two +elder brothers would have pulled it down, in order to see how the poor +ants in their fright would run about and carry off their eggs. But the +little dwarf said, 'Let the poor things enjoy themselves, I will not +suffer you to trouble them.' + +So on they went, and came to a lake where many many ducks were swimming +about. The two brothers wanted to catch two, and roast them. But the +dwarf said, 'Let the poor things enjoy themselves, you shall not kill +them.' Next they came to a bees'-nest in a hollow tree, and there was +so much honey that it ran down the trunk; and the two brothers wanted to +light a fire under the tree and kill the bees, so as to get their honey. +But the dwarf held them back, and said, 'Let the pretty insects enjoy +themselves, I cannot let you burn them.' + +At length the three brothers came to a castle: and as they passed by the +stables they saw fine horses standing there, but all were of marble, and +no man was to be seen. Then they went through all the rooms, till they +came to a door on which were three locks: but in the middle of the door +was a wicket, so that they could look into the next room. There they saw +a little grey old man sitting at a table; and they called to him once or +twice, but he did not hear: however, they called a third time, and then +he rose and came out to them. + +He said nothing, but took hold of them and led them to a beautiful +table covered with all sorts of good things: and when they had eaten and +drunk, he showed each of them to a bed-chamber. + +The next morning he came to the eldest and took him to a marble table, +where there were three tablets, containing an account of the means by +which the castle might be disenchanted. The first tablet said: 'In the +wood, under the moss, lie the thousand pearls belonging to the king's +daughter; they must all be found: and if one be missing by set of sun, +he who seeks them will be turned into marble.' + +The eldest brother set out, and sought for the pearls the whole day: +but the evening came, and he had not found the first hundred: so he was +turned into stone as the tablet had foretold. + +The next day the second brother undertook the task; but he succeeded no +better than the first; for he could only find the second hundred of the +pearls; and therefore he too was turned into stone. + +At last came the little dwarf's turn; and he looked in the moss; but it +was so hard to find the pearls, and the job was so tiresome!--so he sat +down upon a stone and cried. And as he sat there, the king of the ants +(whose life he had saved) came to help him, with five thousand ants; and +it was not long before they had found all the pearls and laid them in a +heap. + +The second tablet said: 'The key of the princess's bed-chamber must be +fished up out of the lake.' And as the dwarf came to the brink of it, +he saw the two ducks whose lives he had saved swimming about; and they +dived down and soon brought in the key from the bottom. + +The third task was the hardest. It was to choose out the youngest and +the best of the king's three daughters. Now they were all beautiful, and +all exactly alike: but he was told that the eldest had eaten a piece of +sugar, the next some sweet syrup, and the youngest a spoonful of honey; +so he was to guess which it was that had eaten the honey. + +Then came the queen of the bees, who had been saved by the little dwarf +from the fire, and she tried the lips of all three; but at last she sat +upon the lips of the one that had eaten the honey: and so the dwarf knew +which was the youngest. Thus the spell was broken, and all who had been +turned into stones awoke, and took their proper forms. And the dwarf +married the youngest and the best of the princesses, and was king after +her father's death; but his two brothers married the other two sisters. + + + + +THE ELVES AND THE SHOEMAKER + +There was once a shoemaker, who worked very hard and was very honest: +but still he could not earn enough to live upon; and at last all he +had in the world was gone, save just leather enough to make one pair of +shoes. + +Then he cut his leather out, all ready to make up the next day, meaning +to rise early in the morning to his work. His conscience was clear and +his heart light amidst all his troubles; so he went peaceably to bed, +left all his cares to Heaven, and soon fell asleep. In the morning after +he had said his prayers, he sat himself down to his work; when, to his +great wonder, there stood the shoes all ready made, upon the table. The +good man knew not what to say or think at such an odd thing happening. +He looked at the workmanship; there was not one false stitch in the +whole job; all was so neat and true, that it was quite a masterpiece. + +The same day a customer came in, and the shoes suited him so well that +he willingly paid a price higher than usual for them; and the poor +shoemaker, with the money, bought leather enough to make two pairs more. +In the evening he cut out the work, and went to bed early, that he might +get up and begin betimes next day; but he was saved all the trouble, for +when he got up in the morning the work was done ready to his hand. Soon +in came buyers, who paid him handsomely for his goods, so that he bought +leather enough for four pair more. He cut out the work again overnight +and found it done in the morning, as before; and so it went on for some +time: what was got ready in the evening was always done by daybreak, and +the good man soon became thriving and well off again. + +One evening, about Christmas-time, as he and his wife were sitting over +the fire chatting together, he said to her, 'I should like to sit up and +watch tonight, that we may see who it is that comes and does my work for +me.' The wife liked the thought; so they left a light burning, and hid +themselves in a corner of the room, behind a curtain that was hung up +there, and watched what would happen. + +As soon as it was midnight, there came in two little naked dwarfs; and +they sat themselves upon the shoemaker's bench, took up all the work +that was cut out, and began to ply with their little fingers, stitching +and rapping and tapping away at such a rate, that the shoemaker was all +wonder, and could not take his eyes off them. And on they went, till the +job was quite done, and the shoes stood ready for use upon the table. +This was long before daybreak; and then they bustled away as quick as +lightning. + +The next day the wife said to the shoemaker. 'These little wights have +made us rich, and we ought to be thankful to them, and do them a good +turn if we can. I am quite sorry to see them run about as they do; and +indeed it is not very decent, for they have nothing upon their backs to +keep off the cold. I'll tell you what, I will make each of them a shirt, +and a coat and waistcoat, and a pair of pantaloons into the bargain; and +do you make each of them a little pair of shoes.' + +The thought pleased the good cobbler very much; and one evening, when +all the things were ready, they laid them on the table, instead of the +work that they used to cut out, and then went and hid themselves, to +watch what the little elves would do. + +About midnight in they came, dancing and skipping, hopped round the +room, and then went to sit down to their work as usual; but when they +saw the clothes lying for them, they laughed and chuckled, and seemed +mightily delighted. + +Then they dressed themselves in the twinkling of an eye, and danced and +capered and sprang about, as merry as could be; till at last they danced +out at the door, and away over the green. + +The good couple saw them no more; but everything went well with them +from that time forward, as long as they lived. + + + + +THE JUNIPER-TREE + +Long, long ago, some two thousand years or so, there lived a rich +man with a good and beautiful wife. They loved each other dearly, but +sorrowed much that they had no children. So greatly did they desire +to have one, that the wife prayed for it day and night, but still they +remained childless. + +In front of the house there was a court, in which grew a juniper-tree. +One winter's day the wife stood under the tree to peel some apples, and +as she was peeling them, she cut her finger, and the blood fell on the +snow. 'Ah,' sighed the woman heavily, 'if I had but a child, as red as +blood and as white as snow,' and as she spoke the words, her heart grew +light within her, and it seemed to her that her wish was granted, and +she returned to the house feeling glad and comforted. A month passed, +and the snow had all disappeared; then another month went by, and all +the earth was green. So the months followed one another, and first the +trees budded in the woods, and soon the green branches grew thickly +intertwined, and then the blossoms began to fall. Once again the wife +stood under the juniper-tree, and it was so full of sweet scent that her +heart leaped for joy, and she was so overcome with her happiness, that +she fell on her knees. Presently the fruit became round and firm, and +she was glad and at peace; but when they were fully ripe she picked the +berries and ate eagerly of them, and then she grew sad and ill. A little +while later she called her husband, and said to him, weeping. 'If I +die, bury me under the juniper-tree.' Then she felt comforted and happy +again, and before another month had passed she had a little child, and +when she saw that it was as white as snow and as red as blood, her joy +was so great that she died. + +Her husband buried her under the juniper-tree, and wept bitterly for +her. By degrees, however, his sorrow grew less, and although at times he +still grieved over his loss, he was able to go about as usual, and later +on he married again. + +He now had a little daughter born to him; the child of his first wife +was a boy, who was as red as blood and as white as snow. The mother +loved her daughter very much, and when she looked at her and then looked +at the boy, it pierced her heart to think that he would always stand in +the way of her own child, and she was continually thinking how she could +get the whole of the property for her. This evil thought took possession +of her more and more, and made her behave very unkindly to the boy. She +drove him from place to place with cuffings and buffetings, so that the +poor child went about in fear, and had no peace from the time he left +school to the time he went back. + +One day the little daughter came running to her mother in the +store-room, and said, 'Mother, give me an apple.' 'Yes, my child,' said +the wife, and she gave her a beautiful apple out of the chest; the chest +had a very heavy lid and a large iron lock. + +'Mother,' said the little daughter again, 'may not brother have one +too?' The mother was angry at this, but she answered, 'Yes, when he +comes out of school.' + +Just then she looked out of the window and saw him coming, and it seemed +as if an evil spirit entered into her, for she snatched the apple out +of her little daughter's hand, and said, 'You shall not have one before +your brother.' She threw the apple into the chest and shut it to. The +little boy now came in, and the evil spirit in the wife made her say +kindly to him, 'My son, will you have an apple?' but she gave him a +wicked look. 'Mother,' said the boy, 'how dreadful you look! Yes, give +me an apple.' The thought came to her that she would kill him. 'Come +with me,' she said, and she lifted up the lid of the chest; 'take one +out for yourself.' And as he bent over to do so, the evil spirit urged +her, and crash! down went the lid, and off went the little boy's head. +Then she was overwhelmed with fear at the thought of what she had done. +'If only I can prevent anyone knowing that I did it,' she thought. So +she went upstairs to her room, and took a white handkerchief out of +her top drawer; then she set the boy's head again on his shoulders, and +bound it with the handkerchief so that nothing could be seen, and placed +him on a chair by the door with an apple in his hand. + +Soon after this, little Marleen came up to her mother who was stirring +a pot of boiling water over the fire, and said, 'Mother, brother is +sitting by the door with an apple in his hand, and he looks so pale; +and when I asked him to give me the apple, he did not answer, and that +frightened me.' + +'Go to him again,' said her mother, 'and if he does not answer, give him +a box on the ear.' So little Marleen went, and said, 'Brother, give me +that apple,' but he did not say a word; then she gave him a box on the +ear, and his head rolled off. She was so terrified at this, that she ran +crying and screaming to her mother. 'Oh!' she said, 'I have knocked off +brother's head,' and then she wept and wept, and nothing would stop her. + +'What have you done!' said her mother, 'but no one must know about it, +so you must keep silence; what is done can't be undone; we will make +him into puddings.' And she took the little boy and cut him up, made him +into puddings, and put him in the pot. But Marleen stood looking on, +and wept and wept, and her tears fell into the pot, so that there was no +need of salt. + +Presently the father came home and sat down to his dinner; he asked, +'Where is my son?' The mother said nothing, but gave him a large dish of +black pudding, and Marleen still wept without ceasing. + +The father again asked, 'Where is my son?' + +'Oh,' answered the wife, 'he is gone into the country to his mother's +great uncle; he is going to stay there some time.' + +'What has he gone there for, and he never even said goodbye to me!' + +'Well, he likes being there, and he told me he should be away quite six +weeks; he is well looked after there.' + +'I feel very unhappy about it,' said the husband, 'in case it should not +be all right, and he ought to have said goodbye to me.' + +With this he went on with his dinner, and said, 'Little Marleen, why do +you weep? Brother will soon be back.' Then he asked his wife for more +pudding, and as he ate, he threw the bones under the table. + +Little Marleen went upstairs and took her best silk handkerchief out of +her bottom drawer, and in it she wrapped all the bones from under the +table and carried them outside, and all the time she did nothing but +weep. Then she laid them in the green grass under the juniper-tree, and +she had no sooner done so, then all her sadness seemed to leave her, +and she wept no more. And now the juniper-tree began to move, and the +branches waved backwards and forwards, first away from one another, and +then together again, as it might be someone clapping their hands for +joy. After this a mist came round the tree, and in the midst of it there +was a burning as of fire, and out of the fire there flew a beautiful +bird, that rose high into the air, singing magnificently, and when it +could no more be seen, the juniper-tree stood there as before, and the +silk handkerchief and the bones were gone. + +Little Marleen now felt as lighthearted and happy as if her brother were +still alive, and she went back to the house and sat down cheerfully to +the table and ate. + +The bird flew away and alighted on the house of a goldsmith and began to +sing: + + 'My mother killed her little son; + My father grieved when I was gone; + My sister loved me best of all; + She laid her kerchief over me, + And took my bones that they might lie + Underneath the juniper-tree + Kywitt, Kywitt, what a beautiful bird am I!' + +The goldsmith was in his workshop making a gold chain, when he heard the +song of the bird on his roof. He thought it so beautiful that he got +up and ran out, and as he crossed the threshold he lost one of his +slippers. But he ran on into the middle of the street, with a slipper on +one foot and a sock on the other; he still had on his apron, and still +held the gold chain and the pincers in his hands, and so he stood gazing +up at the bird, while the sun came shining brightly down on the street. + +'Bird,' he said, 'how beautifully you sing! Sing me that song again.' + +'Nay,' said the bird, 'I do not sing twice for nothing. Give that gold +chain, and I will sing it you again.' + +'Here is the chain, take it,' said the goldsmith. 'Only sing me that +again.' + +The bird flew down and took the gold chain in his right claw, and then +he alighted again in front of the goldsmith and sang: + + 'My mother killed her little son; + My father grieved when I was gone; + My sister loved me best of all; + She laid her kerchief over me, + And took my bones that they might lie + Underneath the juniper-tree + Kywitt, Kywitt, what a beautiful bird am I!' + +Then he flew away, and settled on the roof of a shoemaker's house and +sang: + + 'My mother killed her little son; + My father grieved when I was gone; + My sister loved me best of all; + She laid her kerchief over me, + And took my bones that they might lie + Underneath the juniper-tree + Kywitt, Kywitt, what a beautiful bird am I!' + +The shoemaker heard him, and he jumped up and ran out in his +shirt-sleeves, and stood looking up at the bird on the roof with his +hand over his eyes to keep himself from being blinded by the sun. + +'Bird,' he said, 'how beautifully you sing!' Then he called through the +door to his wife: 'Wife, come out; here is a bird, come and look at it +and hear how beautifully it sings.' Then he called his daughter and the +children, then the apprentices, girls and boys, and they all ran up the +street to look at the bird, and saw how splendid it was with its red +and green feathers, and its neck like burnished gold, and eyes like two +bright stars in its head. + +'Bird,' said the shoemaker, 'sing me that song again.' + +'Nay,' answered the bird, 'I do not sing twice for nothing; you must +give me something.' + +'Wife,' said the man, 'go into the garret; on the upper shelf you will +see a pair of red shoes; bring them to me.' The wife went in and fetched +the shoes. + +'There, bird,' said the shoemaker, 'now sing me that song again.' + +The bird flew down and took the red shoes in his left claw, and then he +went back to the roof and sang: + + 'My mother killed her little son; + My father grieved when I was gone; + My sister loved me best of all; + She laid her kerchief over me, + And took my bones that they might lie + Underneath the juniper-tree + Kywitt, Kywitt, what a beautiful bird am I!' + +When he had finished, he flew away. He had the chain in his right claw +and the shoes in his left, and he flew right away to a mill, and the +mill went 'Click clack, click clack, click clack.' Inside the mill were +twenty of the miller's men hewing a stone, and as they went 'Hick hack, +hick hack, hick hack,' the mill went 'Click clack, click clack, click +clack.' + +The bird settled on a lime-tree in front of the mill and sang: + + 'My mother killed her little son; + +then one of the men left off, + + My father grieved when I was gone; + +two more men left off and listened, + + My sister loved me best of all; + +then four more left off, + + She laid her kerchief over me, + And took my bones that they might lie + +now there were only eight at work, + + Underneath + +And now only five, + + the juniper-tree. + +And now only one, + + Kywitt, Kywitt, what a beautiful bird am I!' + +then he looked up and the last one had left off work. + +'Bird,' he said, 'what a beautiful song that is you sing! Let me hear it +too; sing it again.' + +'Nay,' answered the bird, 'I do not sing twice for nothing; give me that +millstone, and I will sing it again.' + +'If it belonged to me alone,' said the man, 'you should have it.' + +'Yes, yes,' said the others: 'if he will sing again, he can have it.' + +The bird came down, and all the twenty millers set to and lifted up the +stone with a beam; then the bird put his head through the hole and took +the stone round his neck like a collar, and flew back with it to the +tree and sang-- + + 'My mother killed her little son; + My father grieved when I was gone; + My sister loved me best of all; + She laid her kerchief over me, + And took my bones that they might lie + Underneath the juniper-tree + Kywitt, Kywitt, what a beautiful bird am I!' + +And when he had finished his song, he spread his wings, and with the +chain in his right claw, the shoes in his left, and the millstone round +his neck, he flew right away to his father's house. + +The father, the mother, and little Marleen were having their dinner. + +'How lighthearted I feel,' said the father, 'so pleased and cheerful.' + +'And I,' said the mother, 'I feel so uneasy, as if a heavy thunderstorm +were coming.' + +But little Marleen sat and wept and wept. + +Then the bird came flying towards the house and settled on the roof. + +'I do feel so happy,' said the father, 'and how beautifully the sun +shines; I feel just as if I were going to see an old friend again.' + +'Ah!' said the wife, 'and I am so full of distress and uneasiness that +my teeth chatter, and I feel as if there were a fire in my veins,' and +she tore open her dress; and all the while little Marleen sat in the +corner and wept, and the plate on her knees was wet with her tears. + +The bird now flew to the juniper-tree and began singing: + + 'My mother killed her little son; + +the mother shut her eyes and her ears, that she might see and hear +nothing, but there was a roaring sound in her ears like that of a +violent storm, and in her eyes a burning and flashing like lightning: + + My father grieved when I was gone; + +'Look, mother,' said the man, 'at the beautiful bird that is singing so +magnificently; and how warm and bright the sun is, and what a delicious +scent of spice in the air!' + + My sister loved me best of all; + +then little Marleen laid her head down on her knees and sobbed. + +'I must go outside and see the bird nearer,' said the man. + +'Ah, do not go!' cried the wife. 'I feel as if the whole house were in +flames!' + +But the man went out and looked at the bird. + + She laid her kerchief over me, + And took my bones that they might lie + Underneath the juniper-tree + Kywitt, Kywitt, what a beautiful bird am I!' + +With that the bird let fall the gold chain, and it fell just round the +man's neck, so that it fitted him exactly. + +He went inside, and said, 'See, what a splendid bird that is; he has +given me this beautiful gold chain, and looks so beautiful himself.' + +But the wife was in such fear and trouble, that she fell on the floor, +and her cap fell from her head. + +Then the bird began again: + + 'My mother killed her little son; + +'Ah me!' cried the wife, 'if I were but a thousand feet beneath the +earth, that I might not hear that song.' + + My father grieved when I was gone; + +then the woman fell down again as if dead. + + My sister loved me best of all; + +'Well,' said little Marleen, 'I will go out too and see if the bird will +give me anything.' + +So she went out. + + She laid her kerchief over me, + And took my bones that they might lie + +and he threw down the shoes to her, + + Underneath the juniper-tree + Kywitt, Kywitt, what a beautiful bird am I!' + +And she now felt quite happy and lighthearted; she put on the shoes and +danced and jumped about in them. 'I was so miserable,' she said, 'when I +came out, but that has all passed away; that is indeed a splendid bird, +and he has given me a pair of red shoes.' + +The wife sprang up, with her hair standing out from her head like flames +of fire. 'Then I will go out too,' she said, 'and see if it will lighten +my misery, for I feel as if the world were coming to an end.' + +But as she crossed the threshold, crash! the bird threw the millstone +down on her head, and she was crushed to death. + +The father and little Marleen heard the sound and ran out, but they only +saw mist and flame and fire rising from the spot, and when these had +passed, there stood the little brother, and he took the father and +little Marleen by the hand; then they all three rejoiced, and went +inside together and sat down to their dinners and ate. + + + + +THE TURNIP + +There were two brothers who were both soldiers; the one was rich and +the other poor. The poor man thought he would try to better himself; so, +pulling off his red coat, he became a gardener, and dug his ground well, +and sowed turnips. + +When the seed came up, there was one plant bigger than all the rest; and +it kept getting larger and larger, and seemed as if it would never cease +growing; so that it might have been called the prince of turnips for +there never was such a one seen before, and never will again. At last it +was so big that it filled a cart, and two oxen could hardly draw it; and +the gardener knew not what in the world to do with it, nor whether it +would be a blessing or a curse to him. One day he said to himself, 'What +shall I do with it? if I sell it, it will bring no more than another; +and for eating, the little turnips are better than this; the best thing +perhaps is to carry it and give it to the king as a mark of respect.' + +Then he yoked his oxen, and drew the turnip to the court, and gave it +to the king. 'What a wonderful thing!' said the king; 'I have seen many +strange things, but such a monster as this I never saw. Where did you +get the seed? or is it only your good luck? If so, you are a true child +of fortune.' 'Ah, no!' answered the gardener, 'I am no child of fortune; +I am a poor soldier, who never could get enough to live upon; so I +laid aside my red coat, and set to work, tilling the ground. I have a +brother, who is rich, and your majesty knows him well, and all the world +knows him; but because I am poor, everybody forgets me.' + +The king then took pity on him, and said, 'You shall be poor no +longer. I will give you so much that you shall be even richer than your +brother.' Then he gave him gold and lands and flocks, and made him so +rich that his brother's fortune could not at all be compared with his. + +When the brother heard of all this, and how a turnip had made the +gardener so rich, he envied him sorely, and bethought himself how he +could contrive to get the same good fortune for himself. However, he +determined to manage more cleverly than his brother, and got together a +rich present of gold and fine horses for the king; and thought he must +have a much larger gift in return; for if his brother had received so +much for only a turnip, what must his present be worth? + +The king took the gift very graciously, and said he knew not what to +give in return more valuable and wonderful than the great turnip; so +the soldier was forced to put it into a cart, and drag it home with him. +When he reached home, he knew not upon whom to vent his rage and spite; +and at length wicked thoughts came into his head, and he resolved to +kill his brother. + +So he hired some villains to murder him; and having shown them where to +lie in ambush, he went to his brother, and said, 'Dear brother, I have +found a hidden treasure; let us go and dig it up, and share it between +us.' The other had no suspicions of his roguery: so they went out +together, and as they were travelling along, the murderers rushed out +upon him, bound him, and were going to hang him on a tree. + +But whilst they were getting all ready, they heard the trampling of a +horse at a distance, which so frightened them that they pushed their +prisoner neck and shoulders together into a sack, and swung him up by a +cord to the tree, where they left him dangling, and ran away. Meantime +he worked and worked away, till he made a hole large enough to put out +his head. + +When the horseman came up, he proved to be a student, a merry fellow, +who was journeying along on his nag, and singing as he went. As soon as +the man in the sack saw him passing under the tree, he cried out, 'Good +morning! good morning to thee, my friend!' The student looked about +everywhere; and seeing no one, and not knowing where the voice came +from, cried out, 'Who calls me?' + +Then the man in the tree answered, 'Lift up thine eyes, for behold here +I sit in the sack of wisdom; here have I, in a short time, learned great +and wondrous things. Compared to this seat, all the learning of the +schools is as empty air. A little longer, and I shall know all that man +can know, and shall come forth wiser than the wisest of mankind. Here +I discern the signs and motions of the heavens and the stars; the laws +that control the winds; the number of the sands on the seashore; the +healing of the sick; the virtues of all simples, of birds, and of +precious stones. Wert thou but once here, my friend, though wouldst feel +and own the power of knowledge. + +The student listened to all this and wondered much; at last he said, +'Blessed be the day and hour when I found you; cannot you contrive to +let me into the sack for a little while?' Then the other answered, as if +very unwillingly, 'A little space I may allow thee to sit here, if thou +wilt reward me well and entreat me kindly; but thou must tarry yet an +hour below, till I have learnt some little matters that are yet unknown +to me.' + +So the student sat himself down and waited a while; but the time hung +heavy upon him, and he begged earnestly that he might ascend forthwith, +for his thirst for knowledge was great. Then the other pretended to give +way, and said, 'Thou must let the sack of wisdom descend, by untying +yonder cord, and then thou shalt enter.' So the student let him down, +opened the sack, and set him free. 'Now then,' cried he, 'let me ascend +quickly.' As he began to put himself into the sack heels first, 'Wait a +while,' said the gardener, 'that is not the way.' Then he pushed him +in head first, tied up the sack, and soon swung up the searcher after +wisdom dangling in the air. 'How is it with thee, friend?' said he, +'dost thou not feel that wisdom comes unto thee? Rest there in peace, +till thou art a wiser man than thou wert.' + +So saying, he trotted off on the student's nag, and left the poor fellow +to gather wisdom till somebody should come and let him down. + + + + +CLEVER HANS + +The mother of Hans said: 'Whither away, Hans?' Hans answered: 'To +Gretel.' 'Behave well, Hans.' 'Oh, I'll behave well. Goodbye, mother.' +'Goodbye, Hans.' Hans comes to Gretel. 'Good day, Gretel.' 'Good day, +Hans. What do you bring that is good?' 'I bring nothing, I want to have +something given me.' Gretel presents Hans with a needle, Hans says: +'Goodbye, Gretel.' 'Goodbye, Hans.' + +Hans takes the needle, sticks it into a hay-cart, and follows the cart +home. 'Good evening, mother.' 'Good evening, Hans. Where have you been?' +'With Gretel.' 'What did you take her?' 'Took nothing; had something +given me.' 'What did Gretel give you?' 'Gave me a needle.' 'Where is the +needle, Hans?' 'Stuck in the hay-cart.' 'That was ill done, Hans. You +should have stuck the needle in your sleeve.' 'Never mind, I'll do +better next time.' + +'Whither away, Hans?' 'To Gretel, mother.' 'Behave well, Hans.' 'Oh, +I'll behave well. Goodbye, mother.' 'Goodbye, Hans.' Hans comes to +Gretel. 'Good day, Gretel.' 'Good day, Hans. What do you bring that is +good?' 'I bring nothing. I want to have something given to me.' Gretel +presents Hans with a knife. 'Goodbye, Gretel.' 'Goodbye, Hans.' Hans +takes the knife, sticks it in his sleeve, and goes home. 'Good evening, +mother.' 'Good evening, Hans. Where have you been?' 'With Gretel.' What +did you take her?' 'Took her nothing, she gave me something.' 'What did +Gretel give you?' 'Gave me a knife.' 'Where is the knife, Hans?' 'Stuck +in my sleeve.' 'That's ill done, Hans, you should have put the knife in +your pocket.' 'Never mind, will do better next time.' + +'Whither away, Hans?' 'To Gretel, mother.' 'Behave well, Hans.' 'Oh, +I'll behave well. Goodbye, mother.' 'Goodbye, Hans.' Hans comes to +Gretel. 'Good day, Gretel.' 'Good day, Hans. What good thing do you +bring?' 'I bring nothing, I want something given me.' Gretel presents +Hans with a young goat. 'Goodbye, Gretel.' 'Goodbye, Hans.' Hans takes +the goat, ties its legs, and puts it in his pocket. When he gets home it +is suffocated. 'Good evening, mother.' 'Good evening, Hans. Where have +you been?' 'With Gretel.' 'What did you take her?' 'Took nothing, she +gave me something.' 'What did Gretel give you?' 'She gave me a goat.' +'Where is the goat, Hans?' 'Put it in my pocket.' 'That was ill done, +Hans, you should have put a rope round the goat's neck.' 'Never mind, +will do better next time.' + +'Whither away, Hans?' 'To Gretel, mother.' 'Behave well, Hans.' 'Oh, +I'll behave well. Goodbye, mother.' 'Goodbye, Hans.' Hans comes to +Gretel. 'Good day, Gretel.' 'Good day, Hans. What good thing do you +bring?' 'I bring nothing, I want something given me.' Gretel presents +Hans with a piece of bacon. 'Goodbye, Gretel.' 'Goodbye, Hans.' + +Hans takes the bacon, ties it to a rope, and drags it away behind him. +The dogs come and devour the bacon. When he gets home, he has the rope +in his hand, and there is no longer anything hanging on to it. 'Good +evening, mother.' 'Good evening, Hans. Where have you been?' 'With +Gretel.' 'What did you take her?' 'I took her nothing, she gave me +something.' 'What did Gretel give you?' 'Gave me a bit of bacon.' 'Where +is the bacon, Hans?' 'I tied it to a rope, brought it home, dogs took +it.' 'That was ill done, Hans, you should have carried the bacon on your +head.' 'Never mind, will do better next time.' + +'Whither away, Hans?' 'To Gretel, mother.' 'Behave well, Hans.' 'I'll +behave well. Goodbye, mother.' 'Goodbye, Hans.' Hans comes to Gretel. +'Good day, Gretel.' 'Good day, Hans, What good thing do you bring?' 'I +bring nothing, but would have something given.' Gretel presents Hans +with a calf. 'Goodbye, Gretel.' 'Goodbye, Hans.' + +Hans takes the calf, puts it on his head, and the calf kicks his face. +'Good evening, mother.' 'Good evening, Hans. Where have you been?' 'With +Gretel.' 'What did you take her?' 'I took nothing, but had something +given me.' 'What did Gretel give you?' 'A calf.' 'Where have you the +calf, Hans?' 'I set it on my head and it kicked my face.' 'That was +ill done, Hans, you should have led the calf, and put it in the stall.' +'Never mind, will do better next time.' + +'Whither away, Hans?' 'To Gretel, mother.' 'Behave well, Hans.' 'I'll +behave well. Goodbye, mother.' 'Goodbye, Hans.' + +Hans comes to Gretel. 'Good day, Gretel.' 'Good day, Hans. What good +thing do you bring?' 'I bring nothing, but would have something given.' +Gretel says to Hans: 'I will go with you.' + +Hans takes Gretel, ties her to a rope, leads her to the rack, and binds +her fast. Then Hans goes to his mother. 'Good evening, mother.' 'Good +evening, Hans. Where have you been?' 'With Gretel.' 'What did you take +her?' 'I took her nothing.' 'What did Gretel give you?' 'She gave me +nothing, she came with me.' 'Where have you left Gretel?' 'I led her by +the rope, tied her to the rack, and scattered some grass for her.' 'That +was ill done, Hans, you should have cast friendly eyes on her.' 'Never +mind, will do better.' + +Hans went into the stable, cut out all the calves' and sheep's eyes, +and threw them in Gretel's face. Then Gretel became angry, tore herself +loose and ran away, and was no longer the bride of Hans. + + + + +THE THREE LANGUAGES + +An aged count once lived in Switzerland, who had an only son, but he +was stupid, and could learn nothing. Then said the father: 'Hark you, +my son, try as I will I can get nothing into your head. You must go from +hence, I will give you into the care of a celebrated master, who shall +see what he can do with you.' The youth was sent into a strange town, +and remained a whole year with the master. At the end of this time, +he came home again, and his father asked: 'Now, my son, what have you +learnt?' 'Father, I have learnt what the dogs say when they bark.' 'Lord +have mercy on us!' cried the father; 'is that all you have learnt? I +will send you into another town, to another master.' The youth was taken +thither, and stayed a year with this master likewise. When he came back +the father again asked: 'My son, what have you learnt?' He answered: +'Father, I have learnt what the birds say.' Then the father fell into a +rage and said: 'Oh, you lost man, you have spent the precious time and +learnt nothing; are you not ashamed to appear before my eyes? I will +send you to a third master, but if you learn nothing this time also, I +will no longer be your father.' The youth remained a whole year with the +third master also, and when he came home again, and his father inquired: +'My son, what have you learnt?' he answered: 'Dear father, I have this +year learnt what the frogs croak.' Then the father fell into the most +furious anger, sprang up, called his people thither, and said: 'This man +is no longer my son, I drive him forth, and command you to take him +out into the forest, and kill him.' They took him forth, but when they +should have killed him, they could not do it for pity, and let him go, +and they cut the eyes and tongue out of a deer that they might carry +them to the old man as a token. + +The youth wandered on, and after some time came to a fortress where he +begged for a night's lodging. 'Yes,' said the lord of the castle, 'if +you will pass the night down there in the old tower, go thither; but I +warn you, it is at the peril of your life, for it is full of wild dogs, +which bark and howl without stopping, and at certain hours a man has to +be given to them, whom they at once devour.' The whole district was in +sorrow and dismay because of them, and yet no one could do anything to +stop this. The youth, however, was without fear, and said: 'Just let me +go down to the barking dogs, and give me something that I can throw to +them; they will do nothing to harm me.' As he himself would have it so, +they gave him some food for the wild animals, and led him down to the +tower. When he went inside, the dogs did not bark at him, but wagged +their tails quite amicably around him, ate what he set before them, and +did not hurt one hair of his head. Next morning, to the astonishment of +everyone, he came out again safe and unharmed, and said to the lord of +the castle: 'The dogs have revealed to me, in their own language, why +they dwell there, and bring evil on the land. They are bewitched, and +are obliged to watch over a great treasure which is below in the tower, +and they can have no rest until it is taken away, and I have likewise +learnt, from their discourse, how that is to be done.' Then all who +heard this rejoiced, and the lord of the castle said he would adopt him +as a son if he accomplished it successfully. He went down again, and +as he knew what he had to do, he did it thoroughly, and brought a chest +full of gold out with him. The howling of the wild dogs was henceforth +heard no more; they had disappeared, and the country was freed from the +trouble. + +After some time he took it in his head that he would travel to Rome. On +the way he passed by a marsh, in which a number of frogs were sitting +croaking. He listened to them, and when he became aware of what they +were saying, he grew very thoughtful and sad. At last he arrived in +Rome, where the Pope had just died, and there was great doubt among +the cardinals as to whom they should appoint as his successor. They at +length agreed that the person should be chosen as pope who should be +distinguished by some divine and miraculous token. And just as that was +decided on, the young count entered into the church, and suddenly two +snow-white doves flew on his shoulders and remained sitting there. The +ecclesiastics recognized therein the token from above, and asked him on +the spot if he would be pope. He was undecided, and knew not if he were +worthy of this, but the doves counselled him to do it, and at length he +said yes. Then was he anointed and consecrated, and thus was fulfilled +what he had heard from the frogs on his way, which had so affected him, +that he was to be his Holiness the Pope. Then he had to sing a mass, and +did not know one word of it, but the two doves sat continually on his +shoulders, and said it all in his ear. + + + + +THE FOX AND THE CAT + +It happened that the cat met the fox in a forest, and as she thought to +herself: 'He is clever and full of experience, and much esteemed in the +world,' she spoke to him in a friendly way. 'Good day, dear Mr Fox, +how are you? How is all with you? How are you getting on in these hard +times?' The fox, full of all kinds of arrogance, looked at the cat from +head to foot, and for a long time did not know whether he would give +any answer or not. At last he said: 'Oh, you wretched beard-cleaner, you +piebald fool, you hungry mouse-hunter, what can you be thinking of? Have +you the cheek to ask how I am getting on? What have you learnt? How +many arts do you understand?' 'I understand but one,' replied the +cat, modestly. 'What art is that?' asked the fox. 'When the hounds are +following me, I can spring into a tree and save myself.' 'Is that all?' +said the fox. 'I am master of a hundred arts, and have into the bargain +a sackful of cunning. You make me sorry for you; come with me, I will +teach you how people get away from the hounds.' Just then came a hunter +with four dogs. The cat sprang nimbly up a tree, and sat down at the top +of it, where the branches and foliage quite concealed her. 'Open your +sack, Mr Fox, open your sack,' cried the cat to him, but the dogs had +already seized him, and were holding him fast. 'Ah, Mr Fox,' cried the +cat. 'You with your hundred arts are left in the lurch! Had you been +able to climb like me, you would not have lost your life.' + + + + +THE FOUR CLEVER BROTHERS + +'Dear children,' said a poor man to his four sons, 'I have nothing to +give you; you must go out into the wide world and try your luck. Begin +by learning some craft or another, and see how you can get on.' So the +four brothers took their walking-sticks in their hands, and their little +bundles on their shoulders, and after bidding their father goodbye, went +all out at the gate together. When they had got on some way they came +to four crossways, each leading to a different country. Then the eldest +said, 'Here we must part; but this day four years we will come back +to this spot, and in the meantime each must try what he can do for +himself.' + +So each brother went his way; and as the eldest was hastening on a man +met him, and asked him where he was going, and what he wanted. 'I am +going to try my luck in the world, and should like to begin by learning +some art or trade,' answered he. 'Then,' said the man, 'go with me, and +I will teach you to become the cunningest thief that ever was.' 'No,' +said the other, 'that is not an honest calling, and what can one look +to earn by it in the end but the gallows?' 'Oh!' said the man, 'you need +not fear the gallows; for I will only teach you to steal what will be +fair game: I meddle with nothing but what no one else can get or care +anything about, and where no one can find you out.' So the young man +agreed to follow his trade, and he soon showed himself so clever, that +nothing could escape him that he had once set his mind upon. + +The second brother also met a man, who, when he found out what he was +setting out upon, asked him what craft he meant to follow. 'I do not +know yet,' said he. 'Then come with me, and be a star-gazer. It is a +noble art, for nothing can be hidden from you, when once you understand +the stars.' The plan pleased him much, and he soon became such a skilful +star-gazer, that when he had served out his time, and wanted to leave +his master, he gave him a glass, and said, 'With this you can see all +that is passing in the sky and on earth, and nothing can be hidden from +you.' + +The third brother met a huntsman, who took him with him, and taught him +so well all that belonged to hunting, that he became very clever in the +craft of the woods; and when he left his master he gave him a bow, and +said, 'Whatever you shoot at with this bow you will be sure to hit.' + +The youngest brother likewise met a man who asked him what he wished to +do. 'Would not you like,' said he, 'to be a tailor?' 'Oh, no!' said +the young man; 'sitting cross-legged from morning to night, working +backwards and forwards with a needle and goose, will never suit me.' +'Oh!' answered the man, 'that is not my sort of tailoring; come with me, +and you will learn quite another kind of craft from that.' Not knowing +what better to do, he came into the plan, and learnt tailoring from the +beginning; and when he left his master, he gave him a needle, and said, +'You can sew anything with this, be it as soft as an egg or as hard as +steel; and the joint will be so fine that no seam will be seen.' + +After the space of four years, at the time agreed upon, the four +brothers met at the four cross-roads; and having welcomed each other, +set off towards their father's home, where they told him all that had +happened to them, and how each had learned some craft. + +Then, one day, as they were sitting before the house under a very high +tree, the father said, 'I should like to try what each of you can do in +this way.' So he looked up, and said to the second son, 'At the top of +this tree there is a chaffinch's nest; tell me how many eggs there are +in it.' The star-gazer took his glass, looked up, and said, 'Five.' +'Now,' said the father to the eldest son, 'take away the eggs without +letting the bird that is sitting upon them and hatching them know +anything of what you are doing.' So the cunning thief climbed up the +tree, and brought away to his father the five eggs from under the bird; +and it never saw or felt what he was doing, but kept sitting on at its +ease. Then the father took the eggs, and put one on each corner of the +table, and the fifth in the middle, and said to the huntsman, 'Cut all +the eggs in two pieces at one shot.' The huntsman took up his bow, and +at one shot struck all the five eggs as his father wished. + +'Now comes your turn,' said he to the young tailor; 'sew the eggs and +the young birds in them together again, so neatly that the shot shall +have done them no harm.' Then the tailor took his needle, and sewed the +eggs as he was told; and when he had done, the thief was sent to take +them back to the nest, and put them under the bird without its knowing +it. Then she went on sitting, and hatched them: and in a few days they +crawled out, and had only a little red streak across their necks, where +the tailor had sewn them together. + +'Well done, sons!' said the old man; 'you have made good use of your +time, and learnt something worth the knowing; but I am sure I do not +know which ought to have the prize. Oh, that a time might soon come for +you to turn your skill to some account!' + +Not long after this there was a great bustle in the country; for the +king's daughter had been carried off by a mighty dragon, and the king +mourned over his loss day and night, and made it known that whoever +brought her back to him should have her for a wife. Then the four +brothers said to each other, 'Here is a chance for us; let us try +what we can do.' And they agreed to see whether they could not set the +princess free. 'I will soon find out where she is, however,' said the +star-gazer, as he looked through his glass; and he soon cried out, 'I +see her afar off, sitting upon a rock in the sea, and I can spy the +dragon close by, guarding her.' Then he went to the king, and asked for +a ship for himself and his brothers; and they sailed together over the +sea, till they came to the right place. There they found the princess +sitting, as the star-gazer had said, on the rock; and the dragon was +lying asleep, with his head upon her lap. 'I dare not shoot at him,' +said the huntsman, 'for I should kill the beautiful young lady also.' +'Then I will try my skill,' said the thief, and went and stole her away +from under the dragon, so quietly and gently that the beast did not know +it, but went on snoring. + +Then away they hastened with her full of joy in their boat towards the +ship; but soon came the dragon roaring behind them through the air; for +he awoke and missed the princess. But when he got over the boat, and +wanted to pounce upon them and carry off the princess, the huntsman took +up his bow and shot him straight through the heart so that he fell down +dead. They were still not safe; for he was such a great beast that in +his fall he overset the boat, and they had to swim in the open sea +upon a few planks. So the tailor took his needle, and with a few large +stitches put some of the planks together; and he sat down upon these, +and sailed about and gathered up all pieces of the boat; and then tacked +them together so quickly that the boat was soon ready, and they then +reached the ship and got home safe. + +When they had brought home the princess to her father, there was great +rejoicing; and he said to the four brothers, 'One of you shall marry +her, but you must settle amongst yourselves which it is to be.' Then +there arose a quarrel between them; and the star-gazer said, 'If I had +not found the princess out, all your skill would have been of no use; +therefore she ought to be mine.' 'Your seeing her would have been of +no use,' said the thief, 'if I had not taken her away from the dragon; +therefore she ought to be mine.' 'No, she is mine,' said the huntsman; +'for if I had not killed the dragon, he would, after all, have torn you +and the princess into pieces.' 'And if I had not sewn the boat together +again,' said the tailor, 'you would all have been drowned, therefore she +is mine.' Then the king put in a word, and said, 'Each of you is right; +and as all cannot have the young lady, the best way is for neither of +you to have her: for the truth is, there is somebody she likes a great +deal better. But to make up for your loss, I will give each of you, as a +reward for his skill, half a kingdom.' So the brothers agreed that this +plan would be much better than either quarrelling or marrying a lady who +had no mind to have them. And the king then gave to each half a kingdom, +as he had said; and they lived very happily the rest of their days, and +took good care of their father; and somebody took better care of the +young lady, than to let either the dragon or one of the craftsmen have +her again. + + + + +LILY AND THE LION + +A merchant, who had three daughters, was once setting out upon a +journey; but before he went he asked each daughter what gift he should +bring back for her. The eldest wished for pearls; the second for jewels; +but the third, who was called Lily, said, 'Dear father, bring me a +rose.' Now it was no easy task to find a rose, for it was the middle +of winter; yet as she was his prettiest daughter, and was very fond of +flowers, her father said he would try what he could do. So he kissed all +three, and bid them goodbye. + +And when the time came for him to go home, he had bought pearls and +jewels for the two eldest, but he had sought everywhere in vain for the +rose; and when he went into any garden and asked for such a thing, the +people laughed at him, and asked him whether he thought roses grew in +snow. This grieved him very much, for Lily was his dearest child; and as +he was journeying home, thinking what he should bring her, he came to a +fine castle; and around the castle was a garden, in one half of which it +seemed to be summer-time and in the other half winter. On one side the +finest flowers were in full bloom, and on the other everything looked +dreary and buried in the snow. 'A lucky hit!' said he, as he called to +his servant, and told him to go to a beautiful bed of roses that was +there, and bring him away one of the finest flowers. + +This done, they were riding away well pleased, when up sprang a fierce +lion, and roared out, 'Whoever has stolen my roses shall be eaten up +alive!' Then the man said, 'I knew not that the garden belonged to you; +can nothing save my life?' 'No!' said the lion, 'nothing, unless you +undertake to give me whatever meets you on your return home; if you +agree to this, I will give you your life, and the rose too for your +daughter.' But the man was unwilling to do so and said, 'It may be my +youngest daughter, who loves me most, and always runs to meet me when +I go home.' Then the servant was greatly frightened, and said, 'It may +perhaps be only a cat or a dog.' And at last the man yielded with a +heavy heart, and took the rose; and said he would give the lion whatever +should meet him first on his return. + +And as he came near home, it was Lily, his youngest and dearest +daughter, that met him; she came running, and kissed him, and welcomed +him home; and when she saw that he had brought her the rose, she was +still more glad. But her father began to be very sorrowful, and to weep, +saying, 'Alas, my dearest child! I have bought this flower at a high +price, for I have said I would give you to a wild lion; and when he has +you, he will tear you in pieces, and eat you.' Then he told her all that +had happened, and said she should not go, let what would happen. + +But she comforted him, and said, 'Dear father, the word you have given +must be kept; I will go to the lion, and soothe him: perhaps he will let +me come safe home again.' + +The next morning she asked the way she was to go, and took leave of her +father, and went forth with a bold heart into the wood. But the lion was +an enchanted prince. By day he and all his court were lions, but in the +evening they took their right forms again. And when Lily came to the +castle, he welcomed her so courteously that she agreed to marry him. The +wedding-feast was held, and they lived happily together a long time. The +prince was only to be seen as soon as evening came, and then he held his +court; but every morning he left his bride, and went away by himself, +she knew not whither, till the night came again. + +After some time he said to her, 'Tomorrow there will be a great feast in +your father's house, for your eldest sister is to be married; and if +you wish to go and visit her my lions shall lead you thither.' Then she +rejoiced much at the thoughts of seeing her father once more, and set +out with the lions; and everyone was overjoyed to see her, for they had +thought her dead long since. But she told them how happy she was, and +stayed till the feast was over, and then went back to the wood. + +Her second sister was soon after married, and when Lily was asked to +go to the wedding, she said to the prince, 'I will not go alone this +time--you must go with me.' But he would not, and said that it would be +a very hazardous thing; for if the least ray of the torch-light should +fall upon him his enchantment would become still worse, for he should be +changed into a dove, and be forced to wander about the world for seven +long years. However, she gave him no rest, and said she would take care +no light should fall upon him. So at last they set out together, and +took with them their little child; and she chose a large hall with thick +walls for him to sit in while the wedding-torches were lighted; but, +unluckily, no one saw that there was a crack in the door. Then the +wedding was held with great pomp, but as the train came from the church, +and passed with the torches before the hall, a very small ray of light +fell upon the prince. In a moment he disappeared, and when his wife came +in and looked for him, she found only a white dove; and it said to her, +'Seven years must I fly up and down over the face of the earth, but +every now and then I will let fall a white feather, that will show you +the way I am going; follow it, and at last you may overtake and set me +free.' + +This said, he flew out at the door, and poor Lily followed; and every +now and then a white feather fell, and showed her the way she was to +journey. Thus she went roving on through the wide world, and looked +neither to the right hand nor to the left, nor took any rest, for seven +years. Then she began to be glad, and thought to herself that the time +was fast coming when all her troubles should end; yet repose was still +far off, for one day as she was travelling on she missed the white +feather, and when she lifted up her eyes she could nowhere see the dove. +'Now,' thought she to herself, 'no aid of man can be of use to me.' So +she went to the sun and said, 'Thou shinest everywhere, on the hill's +top and the valley's depth--hast thou anywhere seen my white dove?' +'No,' said the sun, 'I have not seen it; but I will give thee a +casket--open it when thy hour of need comes.' + +So she thanked the sun, and went on her way till eventide; and when +the moon arose, she cried unto it, and said, 'Thou shinest through the +night, over field and grove--hast thou nowhere seen my white dove?' +'No,' said the moon, 'I cannot help thee but I will give thee an +egg--break it when need comes.' + +Then she thanked the moon, and went on till the night-wind blew; and she +raised up her voice to it, and said, 'Thou blowest through every tree +and under every leaf--hast thou not seen my white dove?' 'No,' said the +night-wind, 'but I will ask three other winds; perhaps they have seen +it.' Then the east wind and the west wind came, and said they too had +not seen it, but the south wind said, 'I have seen the white dove--he +has fled to the Red Sea, and is changed once more into a lion, for the +seven years are passed away, and there he is fighting with a dragon; +and the dragon is an enchanted princess, who seeks to separate him from +you.' Then the night-wind said, 'I will give thee counsel. Go to the +Red Sea; on the right shore stand many rods--count them, and when thou +comest to the eleventh, break it off, and smite the dragon with it; and +so the lion will have the victory, and both of them will appear to you +in their own forms. Then look round and thou wilt see a griffin, winged +like bird, sitting by the Red Sea; jump on to his back with thy beloved +one as quickly as possible, and he will carry you over the waters to +your home. I will also give thee this nut,' continued the night-wind. +'When you are half-way over, throw it down, and out of the waters will +immediately spring up a high nut-tree on which the griffin will be able +to rest, otherwise he would not have the strength to bear you the whole +way; if, therefore, thou dost forget to throw down the nut, he will let +you both fall into the sea.' + +So our poor wanderer went forth, and found all as the night-wind had +said; and she plucked the eleventh rod, and smote the dragon, and the +lion forthwith became a prince, and the dragon a princess again. But +no sooner was the princess released from the spell, than she seized +the prince by the arm and sprang on to the griffin's back, and went off +carrying the prince away with her. + +Thus the unhappy traveller was again forsaken and forlorn; but she +took heart and said, 'As far as the wind blows, and so long as the cock +crows, I will journey on, till I find him once again.' She went on for +a long, long way, till at length she came to the castle whither the +princess had carried the prince; and there was a feast got ready, and +she heard that the wedding was about to be held. 'Heaven aid me now!' +said she; and she took the casket that the sun had given her, and found +that within it lay a dress as dazzling as the sun itself. So she put it +on, and went into the palace, and all the people gazed upon her; and +the dress pleased the bride so much that she asked whether it was to be +sold. 'Not for gold and silver.' said she, 'but for flesh and blood.' +The princess asked what she meant, and she said, 'Let me speak with the +bridegroom this night in his chamber, and I will give thee the dress.' +At last the princess agreed, but she told her chamberlain to give the +prince a sleeping draught, that he might not hear or see her. When +evening came, and the prince had fallen asleep, she was led into +his chamber, and she sat herself down at his feet, and said: 'I have +followed thee seven years. I have been to the sun, the moon, and the +night-wind, to seek thee, and at last I have helped thee to overcome +the dragon. Wilt thou then forget me quite?' But the prince all the time +slept so soundly, that her voice only passed over him, and seemed like +the whistling of the wind among the fir-trees. + +Then poor Lily was led away, and forced to give up the golden dress; and +when she saw that there was no help for her, she went out into a meadow, +and sat herself down and wept. But as she sat she bethought herself of +the egg that the moon had given her; and when she broke it, there ran +out a hen and twelve chickens of pure gold, that played about, and then +nestled under the old one's wings, so as to form the most beautiful +sight in the world. And she rose up and drove them before her, till the +bride saw them from her window, and was so pleased that she came forth +and asked her if she would sell the brood. 'Not for gold or silver, but +for flesh and blood: let me again this evening speak with the bridegroom +in his chamber, and I will give thee the whole brood.' + +Then the princess thought to betray her as before, and agreed to +what she asked: but when the prince went to his chamber he asked +the chamberlain why the wind had whistled so in the night. And the +chamberlain told him all--how he had given him a sleeping draught, and +how a poor maiden had come and spoken to him in his chamber, and was +to come again that night. Then the prince took care to throw away the +sleeping draught; and when Lily came and began again to tell him what +woes had befallen her, and how faithful and true to him she had been, +he knew his beloved wife's voice, and sprang up, and said, 'You have +awakened me as from a dream, for the strange princess had thrown a spell +around me, so that I had altogether forgotten you; but Heaven hath sent +you to me in a lucky hour.' + +And they stole away out of the palace by night unawares, and seated +themselves on the griffin, who flew back with them over the Red Sea. +When they were half-way across Lily let the nut fall into the water, +and immediately a large nut-tree arose from the sea, whereon the griffin +rested for a while, and then carried them safely home. There they found +their child, now grown up to be comely and fair; and after all their +troubles they lived happily together to the end of their days. + + + + +THE FOX AND THE HORSE + +A farmer had a horse that had been an excellent faithful servant to +him: but he was now grown too old to work; so the farmer would give him +nothing more to eat, and said, 'I want you no longer, so take yourself +off out of my stable; I shall not take you back again until you are +stronger than a lion.' Then he opened the door and turned him adrift. + +The poor horse was very melancholy, and wandered up and down in the +wood, seeking some little shelter from the cold wind and rain. Presently +a fox met him: 'What's the matter, my friend?' said he, 'why do you hang +down your head and look so lonely and woe-begone?' 'Ah!' replied the +horse, 'justice and avarice never dwell in one house; my master has +forgotten all that I have done for him so many years, and because I +can no longer work he has turned me adrift, and says unless I become +stronger than a lion he will not take me back again; what chance can I +have of that? he knows I have none, or he would not talk so.' + +However, the fox bid him be of good cheer, and said, 'I will help you; +lie down there, stretch yourself out quite stiff, and pretend to be +dead.' The horse did as he was told, and the fox went straight to the +lion who lived in a cave close by, and said to him, 'A little way off +lies a dead horse; come with me and you may make an excellent meal of +his carcase.' The lion was greatly pleased, and set off immediately; and +when they came to the horse, the fox said, 'You will not be able to eat +him comfortably here; I'll tell you what--I will tie you fast to +his tail, and then you can draw him to your den, and eat him at your +leisure.' + +This advice pleased the lion, so he laid himself down quietly for the +fox to make him fast to the horse. But the fox managed to tie his legs +together and bound all so hard and fast that with all his strength he +could not set himself free. When the work was done, the fox clapped the +horse on the shoulder, and said, 'Jip! Dobbin! Jip!' Then up he sprang, +and moved off, dragging the lion behind him. The beast began to roar +and bellow, till all the birds of the wood flew away for fright; but the +horse let him sing on, and made his way quietly over the fields to his +master's house. + +'Here he is, master,' said he, 'I have got the better of him': and when +the farmer saw his old servant, his heart relented, and he said. 'Thou +shalt stay in thy stable and be well taken care of.' And so the poor old +horse had plenty to eat, and lived--till he died. + + + + +THE BLUE LIGHT + +There was once upon a time a soldier who for many years had served the +king faithfully, but when the war came to an end could serve no longer +because of the many wounds which he had received. The king said to him: +'You may return to your home, I need you no longer, and you will not +receive any more money, for he only receives wages who renders me +service for them.' Then the soldier did not know how to earn a living, +went away greatly troubled, and walked the whole day, until in the +evening he entered a forest. When darkness came on, he saw a light, +which he went up to, and came to a house wherein lived a witch. 'Do give +me one night's lodging, and a little to eat and drink,' said he to +her, 'or I shall starve.' 'Oho!' she answered, 'who gives anything to a +run-away soldier? Yet will I be compassionate, and take you in, if you +will do what I wish.' 'What do you wish?' said the soldier. 'That you +should dig all round my garden for me, tomorrow.' The soldier consented, +and next day laboured with all his strength, but could not finish it by +the evening. 'I see well enough,' said the witch, 'that you can do no +more today, but I will keep you yet another night, in payment for +which you must tomorrow chop me a load of wood, and chop it small.' The +soldier spent the whole day in doing it, and in the evening the witch +proposed that he should stay one night more. 'Tomorrow, you shall only +do me a very trifling piece of work. Behind my house, there is an old +dry well, into which my light has fallen, it burns blue, and never goes +out, and you shall bring it up again.' Next day the old woman took him +to the well, and let him down in a basket. He found the blue light, and +made her a signal to draw him up again. She did draw him up, but when he +came near the edge, she stretched down her hand and wanted to take the +blue light away from him. 'No,' said he, perceiving her evil intention, +'I will not give you the light until I am standing with both feet upon +the ground.' The witch fell into a passion, let him fall again into the +well, and went away. + +The poor soldier fell without injury on the moist ground, and the blue +light went on burning, but of what use was that to him? He saw very well +that he could not escape death. He sat for a while very sorrowfully, +then suddenly he felt in his pocket and found his tobacco pipe, which +was still half full. 'This shall be my last pleasure,' thought he, +pulled it out, lit it at the blue light and began to smoke. When the +smoke had circled about the cavern, suddenly a little black dwarf stood +before him, and said: 'Lord, what are your commands?' 'What my commands +are?' replied the soldier, quite astonished. 'I must do everything you +bid me,' said the little man. 'Good,' said the soldier; 'then in the +first place help me out of this well.' The little man took him by the +hand, and led him through an underground passage, but he did not forget +to take the blue light with him. On the way the dwarf showed him the +treasures which the witch had collected and hidden there, and the +soldier took as much gold as he could carry. When he was above, he said +to the little man: 'Now go and bind the old witch, and carry her before +the judge.' In a short time she came by like the wind, riding on a wild +tom-cat and screaming frightfully. Nor was it long before the little man +reappeared. 'It is all done,' said he, 'and the witch is already hanging +on the gallows. What further commands has my lord?' inquired the dwarf. +'At this moment, none,' answered the soldier; 'you can return home, only +be at hand immediately, if I summon you.' 'Nothing more is needed than +that you should light your pipe at the blue light, and I will appear +before you at once.' Thereupon he vanished from his sight. + +The soldier returned to the town from which he came. He went to the +best inn, ordered himself handsome clothes, and then bade the landlord +furnish him a room as handsome as possible. When it was ready and the +soldier had taken possession of it, he summoned the little black manikin +and said: 'I have served the king faithfully, but he has dismissed me, +and left me to hunger, and now I want to take my revenge.' 'What am I to +do?' asked the little man. 'Late at night, when the king's daughter is +in bed, bring her here in her sleep, she shall do servant's work for +me.' The manikin said: 'That is an easy thing for me to do, but a very +dangerous thing for you, for if it is discovered, you will fare ill.' +When twelve o'clock had struck, the door sprang open, and the manikin +carried in the princess. 'Aha! are you there?' cried the soldier, 'get +to your work at once! Fetch the broom and sweep the chamber.' When +she had done this, he ordered her to come to his chair, and then he +stretched out his feet and said: 'Pull off my boots,' and then he +threw them in her face, and made her pick them up again, and clean +and brighten them. She, however, did everything he bade her, without +opposition, silently and with half-shut eyes. When the first cock +crowed, the manikin carried her back to the royal palace, and laid her +in her bed. + +Next morning when the princess arose she went to her father, and told +him that she had had a very strange dream. 'I was carried through the +streets with the rapidity of lightning,' said she, 'and taken into a +soldier's room, and I had to wait upon him like a servant, sweep his +room, clean his boots, and do all kinds of menial work. It was only a +dream, and yet I am just as tired as if I really had done everything.' +'The dream may have been true,' said the king. 'I will give you a piece +of advice. Fill your pocket full of peas, and make a small hole in the +pocket, and then if you are carried away again, they will fall out and +leave a track in the streets.' But unseen by the king, the manikin was +standing beside him when he said that, and heard all. At night when +the sleeping princess was again carried through the streets, some peas +certainly did fall out of her pocket, but they made no track, for the +crafty manikin had just before scattered peas in every street there +was. And again the princess was compelled to do servant's work until +cock-crow. + +Next morning the king sent his people out to seek the track, but it was +all in vain, for in every street poor children were sitting, picking up +peas, and saying: 'It must have rained peas, last night.' 'We must think +of something else,' said the king; 'keep your shoes on when you go to +bed, and before you come back from the place where you are taken, hide +one of them there, I will soon contrive to find it.' The black manikin +heard this plot, and at night when the soldier again ordered him to +bring the princess, revealed it to him, and told him that he knew of no +expedient to counteract this stratagem, and that if the shoe were found +in the soldier's house it would go badly with him. 'Do what I bid you,' +replied the soldier, and again this third night the princess was obliged +to work like a servant, but before she went away, she hid her shoe under +the bed. + +Next morning the king had the entire town searched for his daughter's +shoe. It was found at the soldier's, and the soldier himself, who at the +entreaty of the dwarf had gone outside the gate, was soon brought back, +and thrown into prison. In his flight he had forgotten the most valuable +things he had, the blue light and the gold, and had only one ducat in +his pocket. And now loaded with chains, he was standing at the window of +his dungeon, when he chanced to see one of his comrades passing by. The +soldier tapped at the pane of glass, and when this man came up, said to +him: 'Be so kind as to fetch me the small bundle I have left lying in +the inn, and I will give you a ducat for doing it.' His comrade ran +thither and brought him what he wanted. As soon as the soldier was alone +again, he lighted his pipe and summoned the black manikin. 'Have no +fear,' said the latter to his master. 'Go wheresoever they take you, and +let them do what they will, only take the blue light with you.' Next day +the soldier was tried, and though he had done nothing wicked, the judge +condemned him to death. When he was led forth to die, he begged a last +favour of the king. 'What is it?' asked the king. 'That I may smoke one +more pipe on my way.' 'You may smoke three,' answered the king, 'but do +not imagine that I will spare your life.' Then the soldier pulled out +his pipe and lighted it at the blue light, and as soon as a few wreaths +of smoke had ascended, the manikin was there with a small cudgel in his +hand, and said: 'What does my lord command?' 'Strike down to earth that +false judge there, and his constable, and spare not the king who has +treated me so ill.' Then the manikin fell on them like lightning, +darting this way and that way, and whosoever was so much as touched by +his cudgel fell to earth, and did not venture to stir again. The king +was terrified; he threw himself on the soldier's mercy, and merely to +be allowed to live at all, gave him his kingdom for his own, and his +daughter to wife. + + + + +THE RAVEN + +There was once a queen who had a little daughter, still too young to run +alone. One day the child was very troublesome, and the mother could not +quiet it, do what she would. She grew impatient, and seeing the ravens +flying round the castle, she opened the window, and said: 'I wish you +were a raven and would fly away, then I should have a little peace.' +Scarcely were the words out of her mouth, when the child in her arms was +turned into a raven, and flew away from her through the open window. The +bird took its flight to a dark wood and remained there for a long time, +and meanwhile the parents could hear nothing of their child. + +Long after this, a man was making his way through the wood when he heard +a raven calling, and he followed the sound of the voice. As he drew +near, the raven said, 'I am by birth a king's daughter, but am now under +the spell of some enchantment; you can, however, set me free.' 'What +am I to do?' he asked. She replied, 'Go farther into the wood until you +come to a house, wherein lives an old woman; she will offer you food and +drink, but you must not take of either; if you do, you will fall into +a deep sleep, and will not be able to help me. In the garden behind the +house is a large tan-heap, and on that you must stand and watch for me. +I shall drive there in my carriage at two o'clock in the afternoon for +three successive days; the first day it will be drawn by four white, the +second by four chestnut, and the last by four black horses; but if you +fail to keep awake and I find you sleeping, I shall not be set free.' + +The man promised to do all that she wished, but the raven said, 'Alas! I +know even now that you will take something from the woman and be unable +to save me.' The man assured her again that he would on no account touch +a thing to eat or drink. + +When he came to the house and went inside, the old woman met him, and +said, 'Poor man! how tired you are! Come in and rest and let me give you +something to eat and drink.' + +'No,' answered the man, 'I will neither eat not drink.' + +But she would not leave him alone, and urged him saying, 'If you will +not eat anything, at least you might take a draught of wine; one drink +counts for nothing,' and at last he allowed himself to be persuaded, and +drank. + +As it drew towards the appointed hour, he went outside into the garden +and mounted the tan-heap to await the raven. Suddenly a feeling of +fatigue came over him, and unable to resist it, he lay down for a little +while, fully determined, however, to keep awake; but in another minute +his eyes closed of their own accord, and he fell into such a deep sleep, +that all the noises in the world would not have awakened him. At two +o'clock the raven came driving along, drawn by her four white horses; +but even before she reached the spot, she said to herself, sighing, 'I +know he has fallen asleep.' When she entered the garden, there she found +him as she had feared, lying on the tan-heap, fast asleep. She got out +of her carriage and went to him; she called him and shook him, but it +was all in vain, he still continued sleeping. + +The next day at noon, the old woman came to him again with food and +drink which he at first refused. At last, overcome by her persistent +entreaties that he would take something, he lifted the glass and drank +again. + +Towards two o'clock he went into the garden and on to the tan-heap to +watch for the raven. He had not been there long before he began to feel +so tired that his limbs seemed hardly able to support him, and he could +not stand upright any longer; so again he lay down and fell fast asleep. +As the raven drove along her four chestnut horses, she said sorrowfully +to herself, 'I know he has fallen asleep.' She went as before to look +for him, but he slept, and it was impossible to awaken him. + +The following day the old woman said to him, 'What is this? You are not +eating or drinking anything, do you want to kill yourself?' + +He answered, 'I may not and will not either eat or drink.' + +But she put down the dish of food and the glass of wine in front of him, +and when he smelt the wine, he was unable to resist the temptation, and +took a deep draught. + +When the hour came round again he went as usual on to the tan-heap in +the garden to await the king's daughter, but he felt even more overcome +with weariness than on the two previous days, and throwing himself down, +he slept like a log. At two o'clock the raven could be seen approaching, +and this time her coachman and everything about her, as well as her +horses, were black. + +She was sadder than ever as she drove along, and said mournfully, 'I +know he has fallen asleep, and will not be able to set me free.' She +found him sleeping heavily, and all her efforts to awaken him were of no +avail. Then she placed beside him a loaf, and some meat, and a flask +of wine, of such a kind, that however much he took of them, they would +never grow less. After that she drew a gold ring, on which her name was +engraved, off her finger, and put it upon one of his. Finally, she laid +a letter near him, in which, after giving him particulars of the food +and drink she had left for him, she finished with the following words: +'I see that as long as you remain here you will never be able to set me +free; if, however, you still wish to do so, come to the golden castle +of Stromberg; this is well within your power to accomplish.' She then +returned to her carriage and drove to the golden castle of Stromberg. + +When the man awoke and found that he had been sleeping, he was grieved +at heart, and said, 'She has no doubt been here and driven away again, +and it is now too late for me to save her.' Then his eyes fell on the +things which were lying beside him; he read the letter, and knew from it +all that had happened. He rose up without delay, eager to start on his +way and to reach the castle of Stromberg, but he had no idea in which +direction he ought to go. He travelled about a long time in search of it +and came at last to a dark forest, through which he went on walking for +fourteen days and still could not find a way out. Once more the night +came on, and worn out he lay down under a bush and fell asleep. Again +the next day he pursued his way through the forest, and that evening, +thinking to rest again, he lay down as before, but he heard such a +howling and wailing that he found it impossible to sleep. He waited till +it was darker and people had begun to light up their houses, and then +seeing a little glimmer ahead of him, he went towards it. + +He found that the light came from a house which looked smaller than +it really was, from the contrast of its height with that of an immense +giant who stood in front of it. He thought to himself, 'If the giant +sees me going in, my life will not be worth much.' However, after a +while he summoned up courage and went forward. When the giant saw him, +he called out, 'It is lucky for that you have come, for I have not had +anything to eat for a long time. I can have you now for my supper.' 'I +would rather you let that alone,' said the man, 'for I do not willingly +give myself up to be eaten; if you are wanting food I have enough to +satisfy your hunger.' 'If that is so,' replied the giant, 'I will leave +you in peace; I only thought of eating you because I had nothing else.' + +So they went indoors together and sat down, and the man brought out the +bread, meat, and wine, which although he had eaten and drunk of them, +were still unconsumed. The giant was pleased with the good cheer, and +ate and drank to his heart's content. When he had finished his supper +the man asked him if he could direct him to the castle of Stromberg. +The giant said, 'I will look on my map; on it are marked all the towns, +villages, and houses.' So he fetched his map, and looked for the castle, +but could not find it. 'Never mind,' he said, 'I have larger maps +upstairs in the cupboard, we will look on those,' but they searched in +vain, for the castle was not marked even on these. The man now thought +he should like to continue his journey, but the giant begged him to +remain for a day or two longer until the return of his brother, who was +away in search of provisions. When the brother came home, they asked him +about the castle of Stromberg, and he told them he would look on his own +maps as soon as he had eaten and appeased his hunger. Accordingly, when +he had finished his supper, they all went up together to his room and +looked through his maps, but the castle was not to be found. Then he +fetched other older maps, and they went on looking for the castle until +at last they found it, but it was many thousand miles away. 'How shall I +be able to get there?' asked the man. 'I have two hours to spare,' said +the giant, 'and I will carry you into the neighbourhood of the castle; I +must then return to look after the child who is in our care.' + +The giant, thereupon, carried the man to within about a hundred leagues +of the castle, where he left him, saying, 'You will be able to walk the +remainder of the way yourself.' The man journeyed on day and night +till he reached the golden castle of Stromberg. He found it situated, +however, on a glass mountain, and looking up from the foot he saw the +enchanted maiden drive round her castle and then go inside. He was +overjoyed to see her, and longed to get to the top of the mountain, but +the sides were so slippery that every time he attempted to climb he +fell back again. When he saw that it was impossible to reach her, he was +greatly grieved, and said to himself, 'I will remain here and wait for +her,' so he built himself a little hut, and there he sat and watched for +a whole year, and every day he saw the king's daughter driving round her +castle, but still was unable to get nearer to her. + +Looking out from his hut one day he saw three robbers fighting and he +called out to them, 'God be with you.' They stopped when they heard the +call, but looking round and seeing nobody, they went on again with their +fighting, which now became more furious. 'God be with you,' he cried +again, and again they paused and looked about, but seeing no one went +back to their fighting. A third time he called out, 'God be with you,' +and then thinking he should like to know the cause of dispute between +the three men, he went out and asked them why they were fighting so +angrily with one another. One of them said that he had found a stick, +and that he had but to strike it against any door through which he +wished to pass, and it immediately flew open. Another told him that he +had found a cloak which rendered its wearer invisible; and the third had +caught a horse which would carry its rider over any obstacle, and even +up the glass mountain. They had been unable to decide whether they +would keep together and have the things in common, or whether they would +separate. On hearing this, the man said, 'I will give you something in +exchange for those three things; not money, for that I have not got, +but something that is of far more value. I must first, however, prove +whether all you have told me about your three things is true.' The +robbers, therefore, made him get on the horse, and handed him the stick +and the cloak, and when he had put this round him he was no longer +visible. Then he fell upon them with the stick and beat them one after +another, crying, 'There, you idle vagabonds, you have got what you +deserve; are you satisfied now!' + +After this he rode up the glass mountain. When he reached the gate of +the castle, he found it closed, but he gave it a blow with his stick, +and it flew wide open at once and he passed through. He mounted the +steps and entered the room where the maiden was sitting, with a golden +goblet full of wine in front of her. She could not see him for he still +wore his cloak. He took the ring which she had given him off his finger, +and threw it into the goblet, so that it rang as it touched the bottom. +'That is my own ring,' she exclaimed, 'and if that is so the man must +also be here who is coming to set me free.' + +She sought for him about the castle, but could find him nowhere. +Meanwhile he had gone outside again and mounted his horse and thrown off +the cloak. When therefore she came to the castle gate she saw him, and +cried aloud for joy. Then he dismounted and took her in his arms; and +she kissed him, and said, 'Now you have indeed set me free, and tomorrow +we will celebrate our marriage.' + + + + +THE GOLDEN GOOSE + +There was a man who had three sons, the youngest of whom was called +Dummling,[*] and was despised, mocked, and sneered at on every occasion. + +It happened that the eldest wanted to go into the forest to hew wood, +and before he went his mother gave him a beautiful sweet cake and a +bottle of wine in order that he might not suffer from hunger or thirst. + +When he entered the forest he met a little grey-haired old man who bade +him good day, and said: 'Do give me a piece of cake out of your pocket, +and let me have a draught of your wine; I am so hungry and thirsty.' But +the clever son answered: 'If I give you my cake and wine, I shall have +none for myself; be off with you,' and he left the little man standing +and went on. + +But when he began to hew down a tree, it was not long before he made a +false stroke, and the axe cut him in the arm, so that he had to go home +and have it bound up. And this was the little grey man's doing. + +After this the second son went into the forest, and his mother gave him, +like the eldest, a cake and a bottle of wine. The little old grey man +met him likewise, and asked him for a piece of cake and a drink of wine. +But the second son, too, said sensibly enough: 'What I give you will be +taken away from myself; be off!' and he left the little man standing and +went on. His punishment, however, was not delayed; when he had made a +few blows at the tree he struck himself in the leg, so that he had to be +carried home. + +Then Dummling said: 'Father, do let me go and cut wood.' The father +answered: 'Your brothers have hurt themselves with it, leave it alone, +you do not understand anything about it.' But Dummling begged so long +that at last he said: 'Just go then, you will get wiser by hurting +yourself.' His mother gave him a cake made with water and baked in the +cinders, and with it a bottle of sour beer. + +When he came to the forest the little old grey man met him likewise, +and greeting him, said: 'Give me a piece of your cake and a drink out +of your bottle; I am so hungry and thirsty.' Dummling answered: 'I have +only cinder-cake and sour beer; if that pleases you, we will sit +down and eat.' So they sat down, and when Dummling pulled out his +cinder-cake, it was a fine sweet cake, and the sour beer had become good +wine. So they ate and drank, and after that the little man said: 'Since +you have a good heart, and are willing to divide what you have, I will +give you good luck. There stands an old tree, cut it down, and you will +find something at the roots.' Then the little man took leave of him. + +Dummling went and cut down the tree, and when it fell there was a goose +sitting in the roots with feathers of pure gold. He lifted her up, and +taking her with him, went to an inn where he thought he would stay the +night. Now the host had three daughters, who saw the goose and were +curious to know what such a wonderful bird might be, and would have +liked to have one of its golden feathers. + +The eldest thought: 'I shall soon find an opportunity of pulling out a +feather,' and as soon as Dummling had gone out she seized the goose by +the wing, but her finger and hand remained sticking fast to it. + +The second came soon afterwards, thinking only of how she might get a +feather for herself, but she had scarcely touched her sister than she +was held fast. + +At last the third also came with the like intent, and the others +screamed out: 'Keep away; for goodness' sake keep away!' But she did +not understand why she was to keep away. 'The others are there,' she +thought, 'I may as well be there too,' and ran to them; but as soon as +she had touched her sister, she remained sticking fast to her. So they +had to spend the night with the goose. + +The next morning Dummling took the goose under his arm and set out, +without troubling himself about the three girls who were hanging on to +it. They were obliged to run after him continually, now left, now right, +wherever his legs took him. + +In the middle of the fields the parson met them, and when he saw the +procession he said: 'For shame, you good-for-nothing girls, why are you +running across the fields after this young man? Is that seemly?' At the +same time he seized the youngest by the hand in order to pull her away, +but as soon as he touched her he likewise stuck fast, and was himself +obliged to run behind. + +Before long the sexton came by and saw his master, the parson, running +behind three girls. He was astonished at this and called out: 'Hi! +your reverence, whither away so quickly? Do not forget that we have a +christening today!' and running after him he took him by the sleeve, but +was also held fast to it. + +Whilst the five were trotting thus one behind the other, two labourers +came with their hoes from the fields; the parson called out to them +and begged that they would set him and the sexton free. But they had +scarcely touched the sexton when they were held fast, and now there were +seven of them running behind Dummling and the goose. + +Soon afterwards he came to a city, where a king ruled who had a daughter +who was so serious that no one could make her laugh. So he had put forth +a decree that whosoever should be able to make her laugh should marry +her. When Dummling heard this, he went with his goose and all her train +before the king's daughter, and as soon as she saw the seven people +running on and on, one behind the other, she began to laugh quite +loudly, and as if she would never stop. Thereupon Dummling asked to have +her for his wife; but the king did not like the son-in-law, and made all +manner of excuses and said he must first produce a man who could drink +a cellarful of wine. Dummling thought of the little grey man, who could +certainly help him; so he went into the forest, and in the same place +where he had felled the tree, he saw a man sitting, who had a very +sorrowful face. Dummling asked him what he was taking to heart so +sorely, and he answered: 'I have such a great thirst and cannot quench +it; cold water I cannot stand, a barrel of wine I have just emptied, but +that to me is like a drop on a hot stone!' + +'There, I can help you,' said Dummling, 'just come with me and you shall +be satisfied.' + +He led him into the king's cellar, and the man bent over the huge +barrels, and drank and drank till his loins hurt, and before the day was +out he had emptied all the barrels. Then Dummling asked once more +for his bride, but the king was vexed that such an ugly fellow, whom +everyone called Dummling, should take away his daughter, and he made a +new condition; he must first find a man who could eat a whole mountain +of bread. Dummling did not think long, but went straight into the +forest, where in the same place there sat a man who was tying up his +body with a strap, and making an awful face, and saying: 'I have eaten a +whole ovenful of rolls, but what good is that when one has such a hunger +as I? My stomach remains empty, and I must tie myself up if I am not to +die of hunger.' + +At this Dummling was glad, and said: 'Get up and come with me; you shall +eat yourself full.' He led him to the king's palace where all the +flour in the whole Kingdom was collected, and from it he caused a huge +mountain of bread to be baked. The man from the forest stood before it, +began to eat, and by the end of one day the whole mountain had vanished. +Then Dummling for the third time asked for his bride; but the king again +sought a way out, and ordered a ship which could sail on land and on +water. 'As soon as you come sailing back in it,' said he, 'you shall +have my daughter for wife.' + +Dummling went straight into the forest, and there sat the little grey +man to whom he had given his cake. When he heard what Dummling wanted, +he said: 'Since you have given me to eat and to drink, I will give you +the ship; and I do all this because you once were kind to me.' Then he +gave him the ship which could sail on land and water, and when the king +saw that, he could no longer prevent him from having his daughter. The +wedding was celebrated, and after the king's death, Dummling inherited +his kingdom and lived for a long time contentedly with his wife. + + [*] Simpleton + + + + +THE WATER OF LIFE + +Long before you or I were born, there reigned, in a country a great way +off, a king who had three sons. This king once fell very ill--so ill +that nobody thought he could live. His sons were very much grieved +at their father's sickness; and as they were walking together very +mournfully in the garden of the palace, a little old man met them and +asked what was the matter. They told him that their father was very ill, +and that they were afraid nothing could save him. 'I know what would,' +said the little old man; 'it is the Water of Life. If he could have a +draught of it he would be well again; but it is very hard to get.' Then +the eldest son said, 'I will soon find it': and he went to the sick +king, and begged that he might go in search of the Water of Life, as +it was the only thing that could save him. 'No,' said the king. 'I had +rather die than place you in such great danger as you must meet with in +your journey.' But he begged so hard that the king let him go; and the +prince thought to himself, 'If I bring my father this water, he will +make me sole heir to his kingdom.' + +Then he set out: and when he had gone on his way some time he came to a +deep valley, overhung with rocks and woods; and as he looked around, he +saw standing above him on one of the rocks a little ugly dwarf, with a +sugarloaf cap and a scarlet cloak; and the dwarf called to him and said, +'Prince, whither so fast?' 'What is that to thee, you ugly imp?' said +the prince haughtily, and rode on. + +But the dwarf was enraged at his behaviour, and laid a fairy spell +of ill-luck upon him; so that as he rode on the mountain pass became +narrower and narrower, and at last the way was so straitened that he +could not go to step forward: and when he thought to have turned his +horse round and go back the way he came, he heard a loud laugh ringing +round him, and found that the path was closed behind him, so that he was +shut in all round. He next tried to get off his horse and make his way +on foot, but again the laugh rang in his ears, and he found himself +unable to move a step, and thus he was forced to abide spellbound. + +Meantime the old king was lingering on in daily hope of his son's +return, till at last the second son said, 'Father, I will go in search +of the Water of Life.' For he thought to himself, 'My brother is surely +dead, and the kingdom will fall to me if I find the water.' The king was +at first very unwilling to let him go, but at last yielded to his wish. +So he set out and followed the same road which his brother had done, +and met with the same elf, who stopped him at the same spot in the +mountains, saying, as before, 'Prince, prince, whither so fast?' 'Mind +your own affairs, busybody!' said the prince scornfully, and rode on. + +But the dwarf put the same spell upon him as he put on his elder +brother, and he, too, was at last obliged to take up his abode in the +heart of the mountains. Thus it is with proud silly people, who think +themselves above everyone else, and are too proud to ask or take advice. + +When the second prince had thus been gone a long time, the youngest son +said he would go and search for the Water of Life, and trusted he should +soon be able to make his father well again. So he set out, and the dwarf +met him too at the same spot in the valley, among the mountains, and +said, 'Prince, whither so fast?' And the prince said, 'I am going in +search of the Water of Life, because my father is ill, and like to die: +can you help me? Pray be kind, and aid me if you can!' 'Do you know +where it is to be found?' asked the dwarf. 'No,' said the prince, 'I do +not. Pray tell me if you know.' 'Then as you have spoken to me kindly, +and are wise enough to seek for advice, I will tell you how and where to +go. The water you seek springs from a well in an enchanted castle; and, +that you may be able to reach it in safety, I will give you an iron wand +and two little loaves of bread; strike the iron door of the castle three +times with the wand, and it will open: two hungry lions will be lying +down inside gaping for their prey, but if you throw them the bread they +will let you pass; then hasten on to the well, and take some of the +Water of Life before the clock strikes twelve; for if you tarry longer +the door will shut upon you for ever.' + +Then the prince thanked his little friend with the scarlet cloak for his +friendly aid, and took the wand and the bread, and went travelling on +and on, over sea and over land, till he came to his journey's end, and +found everything to be as the dwarf had told him. The door flew open at +the third stroke of the wand, and when the lions were quieted he went on +through the castle and came at length to a beautiful hall. Around it he +saw several knights sitting in a trance; then he pulled off their rings +and put them on his own fingers. In another room he saw on a table a +sword and a loaf of bread, which he also took. Further on he came to a +room where a beautiful young lady sat upon a couch; and she welcomed him +joyfully, and said, if he would set her free from the spell that bound +her, the kingdom should be his, if he would come back in a year and +marry her. Then she told him that the well that held the Water of Life +was in the palace gardens; and bade him make haste, and draw what he +wanted before the clock struck twelve. + +He walked on; and as he walked through beautiful gardens he came to a +delightful shady spot in which stood a couch; and he thought to himself, +as he felt tired, that he would rest himself for a while, and gaze on +the lovely scenes around him. So he laid himself down, and sleep +fell upon him unawares, so that he did not wake up till the clock was +striking a quarter to twelve. Then he sprang from the couch dreadfully +frightened, ran to the well, filled a cup that was standing by him full +of water, and hastened to get away in time. Just as he was going out of +the iron door it struck twelve, and the door fell so quickly upon him +that it snapped off a piece of his heel. + +When he found himself safe, he was overjoyed to think that he had got +the Water of Life; and as he was going on his way homewards, he passed +by the little dwarf, who, when he saw the sword and the loaf, said, 'You +have made a noble prize; with the sword you can at a blow slay whole +armies, and the bread will never fail you.' Then the prince thought +to himself, 'I cannot go home to my father without my brothers'; so he +said, 'My dear friend, cannot you tell me where my two brothers are, who +set out in search of the Water of Life before me, and never came back?' +'I have shut them up by a charm between two mountains,' said the dwarf, +'because they were proud and ill-behaved, and scorned to ask advice.' +The prince begged so hard for his brothers, that the dwarf at last set +them free, though unwillingly, saying, 'Beware of them, for they have +bad hearts.' Their brother, however, was greatly rejoiced to see them, +and told them all that had happened to him; how he had found the Water +of Life, and had taken a cup full of it; and how he had set a beautiful +princess free from a spell that bound her; and how she had engaged to +wait a whole year, and then to marry him, and to give him the kingdom. + +Then they all three rode on together, and on their way home came to a +country that was laid waste by war and a dreadful famine, so that it was +feared all must die for want. But the prince gave the king of the land +the bread, and all his kingdom ate of it. And he lent the king the +wonderful sword, and he slew the enemy's army with it; and thus the +kingdom was once more in peace and plenty. In the same manner he +befriended two other countries through which they passed on their way. + +When they came to the sea, they got into a ship and during their voyage +the two eldest said to themselves, 'Our brother has got the water which +we could not find, therefore our father will forsake us and give him the +kingdom, which is our right'; so they were full of envy and revenge, and +agreed together how they could ruin him. Then they waited till he was +fast asleep, and poured the Water of Life out of the cup, and took it +for themselves, giving him bitter sea-water instead. + +When they came to their journey's end, the youngest son brought his cup +to the sick king, that he might drink and be healed. Scarcely, however, +had he tasted the bitter sea-water when he became worse even than he was +before; and then both the elder sons came in, and blamed the youngest +for what they had done; and said that he wanted to poison their father, +but that they had found the Water of Life, and had brought it with them. +He no sooner began to drink of what they brought him, than he felt his +sickness leave him, and was as strong and well as in his younger days. +Then they went to their brother, and laughed at him, and said, 'Well, +brother, you found the Water of Life, did you? You have had the trouble +and we shall have the reward. Pray, with all your cleverness, why did +not you manage to keep your eyes open? Next year one of us will take +away your beautiful princess, if you do not take care. You had better +say nothing about this to our father, for he does not believe a word you +say; and if you tell tales, you shall lose your life into the bargain: +but be quiet, and we will let you off.' + +The old king was still very angry with his youngest son, and thought +that he really meant to have taken away his life; so he called his court +together, and asked what should be done, and all agreed that he ought to +be put to death. The prince knew nothing of what was going on, till one +day, when the king's chief huntsmen went a-hunting with him, and they +were alone in the wood together, the huntsman looked so sorrowful that +the prince said, 'My friend, what is the matter with you?' 'I cannot and +dare not tell you,' said he. But the prince begged very hard, and said, +'Only tell me what it is, and do not think I shall be angry, for I will +forgive you.' 'Alas!' said the huntsman; 'the king has ordered me to +shoot you.' The prince started at this, and said, 'Let me live, and I +will change dresses with you; you shall take my royal coat to show to my +father, and do you give me your shabby one.' 'With all my heart,' said +the huntsman; 'I am sure I shall be glad to save you, for I could not +have shot you.' Then he took the prince's coat, and gave him the shabby +one, and went away through the wood. + +Some time after, three grand embassies came to the old king's court, +with rich gifts of gold and precious stones for his youngest son; now +all these were sent from the three kings to whom he had lent his sword +and loaf of bread, in order to rid them of their enemy and feed their +people. This touched the old king's heart, and he thought his son might +still be guiltless, and said to his court, 'O that my son were still +alive! how it grieves me that I had him killed!' 'He is still alive,' +said the huntsman; 'and I am glad that I had pity on him, but let him +go in peace, and brought home his royal coat.' At this the king was +overwhelmed with joy, and made it known throughout all his kingdom, that +if his son would come back to his court he would forgive him. + +Meanwhile the princess was eagerly waiting till her deliverer should +come back; and had a road made leading up to her palace all of shining +gold; and told her courtiers that whoever came on horseback, and rode +straight up to the gate upon it, was her true lover; and that they must +let him in: but whoever rode on one side of it, they must be sure was +not the right one; and that they must send him away at once. + +The time soon came, when the eldest brother thought that he would make +haste to go to the princess, and say that he was the one who had set +her free, and that he should have her for his wife, and the kingdom with +her. As he came before the palace and saw the golden road, he stopped to +look at it, and he thought to himself, 'It is a pity to ride upon this +beautiful road'; so he turned aside and rode on the right-hand side of +it. But when he came to the gate, the guards, who had seen the road +he took, said to him, he could not be what he said he was, and must go +about his business. + +The second prince set out soon afterwards on the same errand; and when +he came to the golden road, and his horse had set one foot upon it, +he stopped to look at it, and thought it very beautiful, and said to +himself, 'What a pity it is that anything should tread here!' Then he +too turned aside and rode on the left side of it. But when he came to +the gate the guards said he was not the true prince, and that he too +must go away about his business; and away he went. + +Now when the full year was come round, the third brother left the forest +in which he had lain hid for fear of his father's anger, and set out in +search of his betrothed bride. So he journeyed on, thinking of her all +the way, and rode so quickly that he did not even see what the road was +made of, but went with his horse straight over it; and as he came to the +gate it flew open, and the princess welcomed him with joy, and said +he was her deliverer, and should now be her husband and lord of the +kingdom. When the first joy at their meeting was over, the princess told +him she had heard of his father having forgiven him, and of his wish to +have him home again: so, before his wedding with the princess, he went +to visit his father, taking her with him. Then he told him everything; +how his brothers had cheated and robbed him, and yet that he had borne +all those wrongs for the love of his father. And the old king was very +angry, and wanted to punish his wicked sons; but they made their escape, +and got into a ship and sailed away over the wide sea, and where they +went to nobody knew and nobody cared. + +And now the old king gathered together his court, and asked all his +kingdom to come and celebrate the wedding of his son and the princess. +And young and old, noble and squire, gentle and simple, came at once +on the summons; and among the rest came the friendly dwarf, with the +sugarloaf hat, and a new scarlet cloak. + + And the wedding was held, and the merry bells run. + And all the good people they danced and they sung, + And feasted and frolick'd I can't tell how long. + + + + +THE TWELVE HUNTSMEN + +There was once a king's son who had a bride whom he loved very much. And +when he was sitting beside her and very happy, news came that his father +lay sick unto death, and desired to see him once again before his end. +Then he said to his beloved: 'I must now go and leave you, I give you +a ring as a remembrance of me. When I am king, I will return and fetch +you.' So he rode away, and when he reached his father, the latter was +dangerously ill, and near his death. He said to him: 'Dear son, I wished +to see you once again before my end, promise me to marry as I wish,' and +he named a certain king's daughter who was to be his wife. The son was +in such trouble that he did not think what he was doing, and said: 'Yes, +dear father, your will shall be done,' and thereupon the king shut his +eyes, and died. + +When therefore the son had been proclaimed king, and the time of +mourning was over, he was forced to keep the promise which he had given +his father, and caused the king's daughter to be asked in marriage, and +she was promised to him. His first betrothed heard of this, and fretted +so much about his faithfulness that she nearly died. Then her father +said to her: 'Dearest child, why are you so sad? You shall have +whatsoever you will.' She thought for a moment and said: 'Dear father, +I wish for eleven girls exactly like myself in face, figure, and size.' +The father said: 'If it be possible, your desire shall be fulfilled,' +and he caused a search to be made in his whole kingdom, until eleven +young maidens were found who exactly resembled his daughter in face, +figure, and size. + +When they came to the king's daughter, she had twelve suits of +huntsmen's clothes made, all alike, and the eleven maidens had to put +on the huntsmen's clothes, and she herself put on the twelfth suit. +Thereupon she took her leave of her father, and rode away with them, +and rode to the court of her former betrothed, whom she loved so dearly. +Then she asked if he required any huntsmen, and if he would take all of +them into his service. The king looked at her and did not know her, but +as they were such handsome fellows, he said: 'Yes,' and that he would +willingly take them, and now they were the king's twelve huntsmen. + +The king, however, had a lion which was a wondrous animal, for he knew +all concealed and secret things. It came to pass that one evening he +said to the king: 'You think you have twelve huntsmen?' 'Yes,' said the +king, 'they are twelve huntsmen.' The lion continued: 'You are mistaken, +they are twelve girls.' The king said: 'That cannot be true! How +will you prove that to me?' 'Oh, just let some peas be strewn in the +ante-chamber,' answered the lion, 'and then you will soon see. Men have +a firm step, and when they walk over peas none of them stir, but girls +trip and skip, and drag their feet, and the peas roll about.' The king +was well pleased with the counsel, and caused the peas to be strewn. + +There was, however, a servant of the king's who favoured the huntsmen, +and when he heard that they were going to be put to this test he went to +them and repeated everything, and said: 'The lion wants to make the king +believe that you are girls.' Then the king's daughter thanked him, and +said to her maidens: 'Show some strength, and step firmly on the peas.' +So next morning when the king had the twelve huntsmen called before +him, and they came into the ante-chamber where the peas were lying, they +stepped so firmly on them, and had such a strong, sure walk, that not +one of the peas either rolled or stirred. Then they went away again, +and the king said to the lion: 'You have lied to me, they walk just like +men.' The lion said: 'They have been informed that they were going to +be put to the test, and have assumed some strength. Just let twelve +spinning-wheels be brought into the ante-chamber, and they will go to +them and be pleased with them, and that is what no man would do.' +The king liked the advice, and had the spinning-wheels placed in the +ante-chamber. + +But the servant, who was well disposed to the huntsmen, went to them, +and disclosed the project. So when they were alone the king's daughter +said to her eleven girls: 'Show some constraint, and do not look round +at the spinning-wheels.' And next morning when the king had his twelve +huntsmen summoned, they went through the ante-chamber, and never once +looked at the spinning-wheels. Then the king again said to the lion: +'You have deceived me, they are men, for they have not looked at the +spinning-wheels.' The lion replied: 'They have restrained themselves.' +The king, however, would no longer believe the lion. + +The twelve huntsmen always followed the king to the chase, and his +liking for them continually increased. Now it came to pass that +once when they were out hunting, news came that the king's bride was +approaching. When the true bride heard that, it hurt her so much that +her heart was almost broken, and she fell fainting to the ground. The +king thought something had happened to his dear huntsman, ran up to him, +wanted to help him, and drew his glove off. Then he saw the ring which +he had given to his first bride, and when he looked in her face he +recognized her. Then his heart was so touched that he kissed her, and +when she opened her eyes he said: 'You are mine, and I am yours, and +no one in the world can alter that.' He sent a messenger to the other +bride, and entreated her to return to her own kingdom, for he had a wife +already, and someone who had just found an old key did not require a new +one. Thereupon the wedding was celebrated, and the lion was again taken +into favour, because, after all, he had told the truth. + + + + +THE KING OF THE GOLDEN MOUNTAIN + +There was once a merchant who had only one child, a son, that was very +young, and barely able to run alone. He had two richly laden ships then +making a voyage upon the seas, in which he had embarked all his wealth, +in the hope of making great gains, when the news came that both were +lost. Thus from being a rich man he became all at once so very poor that +nothing was left to him but one small plot of land; and there he often +went in an evening to take his walk, and ease his mind of a little of +his trouble. + +One day, as he was roaming along in a brown study, thinking with no +great comfort on what he had been and what he now was, and was like +to be, all on a sudden there stood before him a little, rough-looking, +black dwarf. 'Prithee, friend, why so sorrowful?' said he to the +merchant; 'what is it you take so deeply to heart?' 'If you would do me +any good I would willingly tell you,' said the merchant. 'Who knows but +I may?' said the little man: 'tell me what ails you, and perhaps you +will find I may be of some use.' Then the merchant told him how all his +wealth was gone to the bottom of the sea, and how he had nothing left +but that little plot of land. 'Oh, trouble not yourself about that,' +said the dwarf; 'only undertake to bring me here, twelve years hence, +whatever meets you first on your going home, and I will give you as much +as you please.' The merchant thought this was no great thing to ask; +that it would most likely be his dog or his cat, or something of that +sort, but forgot his little boy Heinel; so he agreed to the bargain, and +signed and sealed the bond to do what was asked of him. + +But as he drew near home, his little boy was so glad to see him that he +crept behind him, and laid fast hold of his legs, and looked up in +his face and laughed. Then the father started, trembling with fear and +horror, and saw what it was that he had bound himself to do; but as no +gold was come, he made himself easy by thinking that it was only a joke +that the dwarf was playing him, and that, at any rate, when the money +came, he should see the bearer, and would not take it in. + +About a month afterwards he went upstairs into a lumber-room to look +for some old iron, that he might sell it and raise a little money; and +there, instead of his iron, he saw a large pile of gold lying on the +floor. At the sight of this he was overjoyed, and forgetting all about +his son, went into trade again, and became a richer merchant than +before. + +Meantime little Heinel grew up, and as the end of the twelve years drew +near the merchant began to call to mind his bond, and became very sad +and thoughtful; so that care and sorrow were written upon his face. The +boy one day asked what was the matter, but his father would not tell for +some time; at last, however, he said that he had, without knowing it, +sold him for gold to a little, ugly-looking, black dwarf, and that the +twelve years were coming round when he must keep his word. Then Heinel +said, 'Father, give yourself very little trouble about that; I shall be +too much for the little man.' + +When the time came, the father and son went out together to the place +agreed upon: and the son drew a circle on the ground, and set himself +and his father in the middle of it. The little black dwarf soon came, +and walked round and round about the circle, but could not find any way +to get into it, and he either could not, or dared not, jump over it. At +last the boy said to him. 'Have you anything to say to us, my friend, or +what do you want?' Now Heinel had found a friend in a good fairy, that +was fond of him, and had told him what to do; for this fairy knew what +good luck was in store for him. 'Have you brought me what you said you +would?' said the dwarf to the merchant. The old man held his tongue, but +Heinel said again, 'What do you want here?' The dwarf said, 'I come to +talk with your father, not with you.' 'You have cheated and taken in my +father,' said the son; 'pray give him up his bond at once.' 'Fair and +softly,' said the little old man; 'right is right; I have paid my money, +and your father has had it, and spent it; so be so good as to let me +have what I paid it for.' 'You must have my consent to that first,' said +Heinel, 'so please to step in here, and let us talk it over.' The old +man grinned, and showed his teeth, as if he should have been very glad +to get into the circle if he could. Then at last, after a long talk, +they came to terms. Heinel agreed that his father must give him up, and +that so far the dwarf should have his way: but, on the other hand, the +fairy had told Heinel what fortune was in store for him, if he followed +his own course; and he did not choose to be given up to his hump-backed +friend, who seemed so anxious for his company. + +So, to make a sort of drawn battle of the matter, it was settled that +Heinel should be put into an open boat, that lay on the sea-shore hard +by; that the father should push him off with his own hand, and that he +should thus be set adrift, and left to the bad or good luck of wind and +weather. Then he took leave of his father, and set himself in the boat, +but before it got far off a wave struck it, and it fell with one side +low in the water, so the merchant thought that poor Heinel was lost, and +went home very sorrowful, while the dwarf went his way, thinking that at +any rate he had had his revenge. + +The boat, however, did not sink, for the good fairy took care of her +friend, and soon raised the boat up again, and it went safely on. The +young man sat safe within, till at length it ran ashore upon an unknown +land. As he jumped upon the shore he saw before him a beautiful castle +but empty and dreary within, for it was enchanted. 'Here,' said he to +himself, 'must I find the prize the good fairy told me of.' So he once +more searched the whole palace through, till at last he found a white +snake, lying coiled up on a cushion in one of the chambers. + +Now the white snake was an enchanted princess; and she was very glad +to see him, and said, 'Are you at last come to set me free? Twelve +long years have I waited here for the fairy to bring you hither as she +promised, for you alone can save me. This night twelve men will come: +their faces will be black, and they will be dressed in chain armour. +They will ask what you do here, but give no answer; and let them do +what they will--beat, whip, pinch, prick, or torment you--bear all; only +speak not a word, and at twelve o'clock they must go away. The second +night twelve others will come: and the third night twenty-four, who +will even cut off your head; but at the twelfth hour of that night their +power is gone, and I shall be free, and will come and bring you the +Water of Life, and will wash you with it, and bring you back to life +and health.' And all came to pass as she had said; Heinel bore all, and +spoke not a word; and the third night the princess came, and fell on his +neck and kissed him. Joy and gladness burst forth throughout the castle, +the wedding was celebrated, and he was crowned king of the Golden +Mountain. + +They lived together very happily, and the queen had a son. And thus +eight years had passed over their heads, when the king thought of his +father; and he began to long to see him once again. But the queen was +against his going, and said, 'I know well that misfortunes will come +upon us if you go.' However, he gave her no rest till she agreed. At his +going away she gave him a wishing-ring, and said, 'Take this ring, and +put it on your finger; whatever you wish it will bring you; only promise +never to make use of it to bring me hence to your father's house.' Then +he said he would do what she asked, and put the ring on his finger, and +wished himself near the town where his father lived. + +Heinel found himself at the gates in a moment; but the guards would +not let him go in, because he was so strangely clad. So he went up to a +neighbouring hill, where a shepherd dwelt, and borrowed his old frock, +and thus passed unknown into the town. When he came to his father's +house, he said he was his son; but the merchant would not believe him, +and said he had had but one son, his poor Heinel, who he knew was long +since dead: and as he was only dressed like a poor shepherd, he would +not even give him anything to eat. The king, however, still vowed that +he was his son, and said, 'Is there no mark by which you would know me +if I am really your son?' 'Yes,' said his mother, 'our Heinel had a mark +like a raspberry on his right arm.' Then he showed them the mark, and +they knew that what he had said was true. + +He next told them how he was king of the Golden Mountain, and was +married to a princess, and had a son seven years old. But the merchant +said, 'that can never be true; he must be a fine king truly who travels +about in a shepherd's frock!' At this the son was vexed; and forgetting +his word, turned his ring, and wished for his queen and son. In an +instant they stood before him; but the queen wept, and said he had +broken his word, and bad luck would follow. He did all he could to +soothe her, and she at last seemed to be appeased; but she was not so in +truth, and was only thinking how she should punish him. + +One day he took her to walk with him out of the town, and showed her +the spot where the boat was set adrift upon the wide waters. Then he sat +himself down, and said, 'I am very much tired; sit by me, I will rest my +head in your lap, and sleep a while.' As soon as he had fallen asleep, +however, she drew the ring from his finger, and crept softly away, and +wished herself and her son at home in their kingdom. And when he awoke +he found himself alone, and saw that the ring was gone from his finger. +'I can never go back to my father's house,' said he; 'they would say I +am a sorcerer: I will journey forth into the world, till I come again to +my kingdom.' + +So saying he set out and travelled till he came to a hill, where three +giants were sharing their father's goods; and as they saw him pass they +cried out and said, 'Little men have sharp wits; he shall part the goods +between us.' Now there was a sword that cut off an enemy's head whenever +the wearer gave the words, 'Heads off!'; a cloak that made the owner +invisible, or gave him any form he pleased; and a pair of boots that +carried the wearer wherever he wished. Heinel said they must first let +him try these wonderful things, then he might know how to set a value +upon them. Then they gave him the cloak, and he wished himself a fly, +and in a moment he was a fly. 'The cloak is very well,' said he: 'now +give me the sword.' 'No,' said they; 'not unless you undertake not to +say, "Heads off!" for if you do we are all dead men.' So they gave it +him, charging him to try it on a tree. He next asked for the boots also; +and the moment he had all three in his power, he wished himself at +the Golden Mountain; and there he was at once. So the giants were left +behind with no goods to share or quarrel about. + +As Heinel came near his castle he heard the sound of merry music; and +the people around told him that his queen was about to marry another +husband. Then he threw his cloak around him, and passed through the +castle hall, and placed himself by the side of the queen, where no one +saw him. But when anything to eat was put upon her plate, he took it +away and ate it himself; and when a glass of wine was handed to her, he +took it and drank it; and thus, though they kept on giving her meat and +drink, her plate and cup were always empty. + +Upon this, fear and remorse came over her, and she went into her chamber +alone, and sat there weeping; and he followed her there. 'Alas!' said +she to herself, 'was I not once set free? Why then does this enchantment +still seem to bind me?' + +'False and fickle one!' said he. 'One indeed came who set thee free, and +he is now near thee again; but how have you used him? Ought he to +have had such treatment from thee?' Then he went out and sent away the +company, and said the wedding was at an end, for that he was come back +to the kingdom. But the princes, peers, and great men mocked at him. +However, he would enter into no parley with them, but only asked them +if they would go in peace or not. Then they turned upon him and tried +to seize him; but he drew his sword. 'Heads Off!' cried he; and with the +word the traitors' heads fell before him, and Heinel was once more king +of the Golden Mountain. + + + + +DOCTOR KNOWALL + +There was once upon a time a poor peasant called Crabb, who drove with +two oxen a load of wood to the town, and sold it to a doctor for two +talers. When the money was being counted out to him, it so happened that +the doctor was sitting at table, and when the peasant saw how well he +ate and drank, his heart desired what he saw, and would willingly +have been a doctor too. So he remained standing a while, and at length +inquired if he too could not be a doctor. 'Oh, yes,' said the doctor, +'that is soon managed.' 'What must I do?' asked the peasant. 'In the +first place buy yourself an A B C book of the kind which has a cock on +the frontispiece; in the second, turn your cart and your two oxen into +money, and get yourself some clothes, and whatsoever else pertains to +medicine; thirdly, have a sign painted for yourself with the words: "I +am Doctor Knowall," and have that nailed up above your house-door.' The +peasant did everything that he had been told to do. When he had doctored +people awhile, but not long, a rich and great lord had some money +stolen. Then he was told about Doctor Knowall who lived in such and such +a village, and must know what had become of the money. So the lord had +the horses harnessed to his carriage, drove out to the village, and +asked Crabb if he were Doctor Knowall. Yes, he was, he said. Then he was +to go with him and bring back the stolen money. 'Oh, yes, but Grete, my +wife, must go too.' The lord was willing, and let both of them have a +seat in the carriage, and they all drove away together. When they came +to the nobleman's castle, the table was spread, and Crabb was told to +sit down and eat. 'Yes, but my wife, Grete, too,' said he, and he seated +himself with her at the table. And when the first servant came with a +dish of delicate fare, the peasant nudged his wife, and said: 'Grete, +that was the first,' meaning that was the servant who brought the first +dish. The servant, however, thought he intended by that to say: 'That is +the first thief,' and as he actually was so, he was terrified, and said +to his comrade outside: 'The doctor knows all: we shall fare ill, he +said I was the first.' The second did not want to go in at all, but was +forced. So when he went in with his dish, the peasant nudged his wife, +and said: 'Grete, that is the second.' This servant was equally alarmed, +and he got out as fast as he could. The third fared no better, for the +peasant again said: 'Grete, that is the third.' The fourth had to carry +in a dish that was covered, and the lord told the doctor that he was to +show his skill, and guess what was beneath the cover. Actually, there +were crabs. The doctor looked at the dish, had no idea what to say, and +cried: 'Ah, poor Crabb.' When the lord heard that, he cried: 'There! he +knows it; he must also know who has the money!' + +On this the servants looked terribly uneasy, and made a sign to the +doctor that they wished him to step outside for a moment. When therefore +he went out, all four of them confessed to him that they had stolen +the money, and said that they would willingly restore it and give him a +heavy sum into the bargain, if he would not denounce them, for if he +did they would be hanged. They led him to the spot where the money was +concealed. With this the doctor was satisfied, and returned to the hall, +sat down to the table, and said: 'My lord, now will I search in my book +where the gold is hidden.' The fifth servant, however, crept into the +stove to hear if the doctor knew still more. But the doctor sat still +and opened his A B C book, turned the pages backwards and forwards, and +looked for the cock. As he could not find it immediately he said: 'I +know you are there, so you had better come out!' Then the fellow in the +stove thought that the doctor meant him, and full of terror, sprang out, +crying: 'That man knows everything!' Then Doctor Knowall showed the lord +where the money was, but did not say who had stolen it, and received +from both sides much money in reward, and became a renowned man. + + + + +THE SEVEN RAVENS + +There was once a man who had seven sons, and last of all one daughter. +Although the little girl was very pretty, she was so weak and small that +they thought she could not live; but they said she should at once be +christened. + +So the father sent one of his sons in haste to the spring to get some +water, but the other six ran with him. Each wanted to be first at +drawing the water, and so they were in such a hurry that all let their +pitchers fall into the well, and they stood very foolishly looking at +one another, and did not know what to do, for none dared go home. In the +meantime the father was uneasy, and could not tell what made the +young men stay so long. 'Surely,' said he, 'the whole seven must have +forgotten themselves over some game of play'; and when he had waited +still longer and they yet did not come, he flew into a rage and wished +them all turned into ravens. Scarcely had he spoken these words when he +heard a croaking over his head, and looked up and saw seven ravens as +black as coal flying round and round. Sorry as he was to see his wish +so fulfilled, he did not know how what was done could be undone, and +comforted himself as well as he could for the loss of his seven sons +with his dear little daughter, who soon became stronger and every day +more beautiful. + +For a long time she did not know that she had ever had any brothers; for +her father and mother took care not to speak of them before her: but one +day by chance she heard the people about her speak of them. 'Yes,' said +they, 'she is beautiful indeed, but still 'tis a pity that her brothers +should have been lost for her sake.' Then she was much grieved, and went +to her father and mother, and asked if she had any brothers, and what +had become of them. So they dared no longer hide the truth from her, but +said it was the will of Heaven, and that her birth was only the innocent +cause of it; but the little girl mourned sadly about it every day, and +thought herself bound to do all she could to bring her brothers back; +and she had neither rest nor ease, till at length one day she stole +away, and set out into the wide world to find her brothers, wherever +they might be, and free them, whatever it might cost her. + +She took nothing with her but a little ring which her father and mother +had given her, a loaf of bread in case she should be hungry, a little +pitcher of water in case she should be thirsty, and a little stool +to rest upon when she should be weary. Thus she went on and on, and +journeyed till she came to the world's end; then she came to the sun, +but the sun looked much too hot and fiery; so she ran away quickly to +the moon, but the moon was cold and chilly, and said, 'I smell flesh +and blood this way!' so she took herself away in a hurry and came to the +stars, and the stars were friendly and kind to her, and each star sat +upon his own little stool; but the morning star rose up and gave her a +little piece of wood, and said, 'If you have not this little piece of +wood, you cannot unlock the castle that stands on the glass-mountain, +and there your brothers live.' The little girl took the piece of wood, +rolled it up in a little cloth, and went on again until she came to the +glass-mountain, and found the door shut. Then she felt for the little +piece of wood; but when she unwrapped the cloth it was not there, and +she saw she had lost the gift of the good stars. What was to be done? +She wanted to save her brothers, and had no key of the castle of the +glass-mountain; so this faithful little sister took a knife out of her +pocket and cut off her little finger, that was just the size of the +piece of wood she had lost, and put it in the door and opened it. + +As she went in, a little dwarf came up to her, and said, 'What are you +seeking for?' 'I seek for my brothers, the seven ravens,' answered she. +Then the dwarf said, 'My masters are not at home; but if you will wait +till they come, pray step in.' Now the little dwarf was getting their +dinner ready, and he brought their food upon seven little plates, and +their drink in seven little glasses, and set them upon the table, and +out of each little plate their sister ate a small piece, and out of each +little glass she drank a small drop; but she let the ring that she had +brought with her fall into the last glass. + +On a sudden she heard a fluttering and croaking in the air, and the +dwarf said, 'Here come my masters.' When they came in, they wanted to +eat and drink, and looked for their little plates and glasses. Then said +one after the other, + +'Who has eaten from my little plate? And who has been drinking out of my +little glass?' + + 'Caw! Caw! well I ween + Mortal lips have this way been.' + +When the seventh came to the bottom of his glass, and found there the +ring, he looked at it, and knew that it was his father's and mother's, +and said, 'O that our little sister would but come! then we should be +free.' When the little girl heard this (for she stood behind the door +all the time and listened), she ran forward, and in an instant all +the ravens took their right form again; and all hugged and kissed each +other, and went merrily home. + + + + +THE WEDDING OF MRS FOX + + +FIRST STORY + +There was once upon a time an old fox with nine tails, who believed that +his wife was not faithful to him, and wished to put her to the test. He +stretched himself out under the bench, did not move a limb, and behaved +as if he were stone dead. Mrs Fox went up to her room, shut herself in, +and her maid, Miss Cat, sat by the fire, and did the cooking. When it +became known that the old fox was dead, suitors presented themselves. +The maid heard someone standing at the house-door, knocking. She went +and opened it, and it was a young fox, who said: + + 'What may you be about, Miss Cat? + Do you sleep or do you wake?' + +She answered: + + 'I am not sleeping, I am waking, + Would you know what I am making? + I am boiling warm beer with butter, + Will you be my guest for supper?' + +'No, thank you, miss,' said the fox, 'what is Mrs Fox doing?' The maid +replied: + + 'She is sitting in her room, + Moaning in her gloom, + Weeping her little eyes quite red, + Because old Mr Fox is dead.' + +'Do just tell her, miss, that a young fox is here, who would like to woo +her.' 'Certainly, young sir.' + + The cat goes up the stairs trip, trap, + The door she knocks at tap, tap, tap, + 'Mistress Fox, are you inside?' + 'Oh, yes, my little cat,' she cried. + 'A wooer he stands at the door out there.' + 'What does he look like, my dear?' + +'Has he nine as beautiful tails as the late Mr Fox?' 'Oh, no,' answered +the cat, 'he has only one.' 'Then I will not have him.' + +Miss Cat went downstairs and sent the wooer away. Soon afterwards there +was another knock, and another fox was at the door who wished to woo Mrs +Fox. He had two tails, but he did not fare better than the first. After +this still more came, each with one tail more than the other, but they +were all turned away, until at last one came who had nine tails, like +old Mr Fox. When the widow heard that, she said joyfully to the cat: + + 'Now open the gates and doors all wide, + And carry old Mr Fox outside.' + +But just as the wedding was going to be solemnized, old Mr Fox stirred +under the bench, and cudgelled all the rabble, and drove them and Mrs +Fox out of the house. + + +SECOND STORY + +When old Mr Fox was dead, the wolf came as a suitor, and knocked at the +door, and the cat who was servant to Mrs Fox, opened it for him. The +wolf greeted her, and said: + + 'Good day, Mrs Cat of Kehrewit, + How comes it that alone you sit? + What are you making good?' + +The cat replied: + + 'In milk I'm breaking bread so sweet, + Will you be my guest, and eat?' + +'No, thank you, Mrs Cat,' answered the wolf. 'Is Mrs Fox not at home?' + +The cat said: + + 'She sits upstairs in her room, + Bewailing her sorrowful doom, + Bewailing her trouble so sore, + For old Mr Fox is no more.' + +The wolf answered: + + 'If she's in want of a husband now, + Then will it please her to step below?' + The cat runs quickly up the stair, + And lets her tail fly here and there, + Until she comes to the parlour door. + With her five gold rings at the door she knocks: + 'Are you within, good Mistress Fox? + If you're in want of a husband now, + Then will it please you to step below? + +Mrs Fox asked: 'Has the gentleman red stockings on, and has he a pointed +mouth?' 'No,' answered the cat. 'Then he won't do for me.' + +When the wolf was gone, came a dog, a stag, a hare, a bear, a lion, and +all the beasts of the forest, one after the other. But one of the good +qualities which old Mr Fox had possessed, was always lacking, and the +cat had continually to send the suitors away. At length came a young +fox. Then Mrs Fox said: 'Has the gentleman red stockings on, and has a +little pointed mouth?' 'Yes,' said the cat, 'he has.' 'Then let him come +upstairs,' said Mrs Fox, and ordered the servant to prepare the wedding +feast. + + 'Sweep me the room as clean as you can, + Up with the window, fling out my old man! + For many a fine fat mouse he brought, + Yet of his wife he never thought, + But ate up every one he caught.' + +Then the wedding was solemnized with young Mr Fox, and there was much +rejoicing and dancing; and if they have not left off, they are dancing +still. + + + + +THE SALAD + +As a merry young huntsman was once going briskly along through a wood, +there came up a little old woman, and said to him, 'Good day, good day; +you seem merry enough, but I am hungry and thirsty; do pray give me +something to eat.' The huntsman took pity on her, and put his hand in +his pocket and gave her what he had. Then he wanted to go his way; but +she took hold of him, and said, 'Listen, my friend, to what I am going +to tell you; I will reward you for your kindness; go your way, and after +a little time you will come to a tree where you will see nine birds +sitting on a cloak. Shoot into the midst of them, and one will fall down +dead: the cloak will fall too; take it, it is a wishing-cloak, and when +you wear it you will find yourself at any place where you may wish to +be. Cut open the dead bird, take out its heart and keep it, and you will +find a piece of gold under your pillow every morning when you rise. It +is the bird's heart that will bring you this good luck.' + +The huntsman thanked her, and thought to himself, 'If all this does +happen, it will be a fine thing for me.' When he had gone a hundred +steps or so, he heard a screaming and chirping in the branches over him, +and looked up and saw a flock of birds pulling a cloak with their bills +and feet; screaming, fighting, and tugging at each other as if +each wished to have it himself. 'Well,' said the huntsman, 'this is +wonderful; this happens just as the old woman said'; then he shot into +the midst of them so that their feathers flew all about. Off went the +flock chattering away; but one fell down dead, and the cloak with it. +Then the huntsman did as the old woman told him, cut open the bird, took +out the heart, and carried the cloak home with him. + +The next morning when he awoke he lifted up his pillow, and there lay +the piece of gold glittering underneath; the same happened next day, and +indeed every day when he arose. He heaped up a great deal of gold, and +at last thought to himself, 'Of what use is this gold to me whilst I am +at home? I will go out into the world and look about me.' + +Then he took leave of his friends, and hung his bag and bow about his +neck, and went his way. It so happened that his road one day led through +a thick wood, at the end of which was a large castle in a green meadow, +and at one of the windows stood an old woman with a very beautiful young +lady by her side looking about them. Now the old woman was a witch, and +said to the young lady, 'There is a young man coming out of the wood who +carries a wonderful prize; we must get it away from him, my dear child, +for it is more fit for us than for him. He has a bird's heart that +brings a piece of gold under his pillow every morning.' Meantime the +huntsman came nearer and looked at the lady, and said to himself, 'I +have been travelling so long that I should like to go into this castle +and rest myself, for I have money enough to pay for anything I want'; +but the real reason was, that he wanted to see more of the beautiful +lady. Then he went into the house, and was welcomed kindly; and it was +not long before he was so much in love that he thought of nothing else +but looking at the lady's eyes, and doing everything that she wished. +Then the old woman said, 'Now is the time for getting the bird's heart.' +So the lady stole it away, and he never found any more gold under his +pillow, for it lay now under the young lady's, and the old woman took it +away every morning; but he was so much in love that he never missed his +prize. + +'Well,' said the old witch, 'we have got the bird's heart, but not the +wishing-cloak yet, and that we must also get.' 'Let us leave him that,' +said the young lady; 'he has already lost his wealth.' Then the witch +was very angry, and said, 'Such a cloak is a very rare and wonderful +thing, and I must and will have it.' So she did as the old woman told +her, and set herself at the window, and looked about the country and +seemed very sorrowful; then the huntsman said, 'What makes you so sad?' +'Alas! dear sir,' said she, 'yonder lies the granite rock where all the +costly diamonds grow, and I want so much to go there, that whenever I +think of it I cannot help being sorrowful, for who can reach it? only +the birds and the flies--man cannot.' 'If that's all your grief,' said +the huntsman, 'I'll take you there with all my heart'; so he drew her under +his cloak, and the moment he wished to be on the granite mountain they +were both there. The diamonds glittered so on all sides that they were +delighted with the sight and picked up the finest. But the old witch +made a deep sleep come upon him, and he said to the young lady, 'Let us +sit down and rest ourselves a little, I am so tired that I cannot stand +any longer.' So they sat down, and he laid his head in her lap and +fell asleep; and whilst he was sleeping on she took the cloak from +his shoulders, hung it on her own, picked up the diamonds, and wished +herself home again. + +When he awoke and found that his lady had tricked him, and left him +alone on the wild rock, he said, 'Alas! what roguery there is in the +world!' and there he sat in great grief and fear, not knowing what to +do. Now this rock belonged to fierce giants who lived upon it; and as +he saw three of them striding about, he thought to himself, 'I can only +save myself by feigning to be asleep'; so he laid himself down as if he +were in a sound sleep. When the giants came up to him, the first pushed +him with his foot, and said, 'What worm is this that lies here curled +up?' 'Tread upon him and kill him,' said the second. 'It's not worth the +trouble,' said the third; 'let him live, he'll go climbing higher up the +mountain, and some cloud will come rolling and carry him away.' And they +passed on. But the huntsman had heard all they said; and as soon as they +were gone, he climbed to the top of the mountain, and when he had sat +there a short time a cloud came rolling around him, and caught him in a +whirlwind and bore him along for some time, till it settled in a garden, +and he fell quite gently to the ground amongst the greens and cabbages. + +Then he looked around him, and said, 'I wish I had something to eat, if +not I shall be worse off than before; for here I see neither apples +nor pears, nor any kind of fruits, nothing but vegetables.' At last he +thought to himself, 'I can eat salad, it will refresh and strengthen +me.' So he picked out a fine head and ate of it; but scarcely had he +swallowed two bites when he felt himself quite changed, and saw with +horror that he was turned into an ass. However, he still felt very +hungry, and the salad tasted very nice; so he ate on till he came +to another kind of salad, and scarcely had he tasted it when he felt +another change come over him, and soon saw that he was lucky enough to +have found his old shape again. + +Then he laid himself down and slept off a little of his weariness; and +when he awoke the next morning he broke off a head both of the good and +the bad salad, and thought to himself, 'This will help me to my fortune +again, and enable me to pay off some folks for their treachery.' So he +went away to try and find the castle of his friends; and after wandering +about a few days he luckily found it. Then he stained his face all over +brown, so that even his mother would not have known him, and went into +the castle and asked for a lodging; 'I am so tired,' said he, 'that I +can go no farther.' 'Countryman,' said the witch, 'who are you? and what +is your business?' 'I am,' said he, 'a messenger sent by the king to +find the finest salad that grows under the sun. I have been lucky +enough to find it, and have brought it with me; but the heat of the sun +scorches so that it begins to wither, and I don't know that I can carry +it farther.' + +When the witch and the young lady heard of his beautiful salad, they +longed to taste it, and said, 'Dear countryman, let us just taste it.' +'To be sure,' answered he; 'I have two heads of it with me, and will +give you one'; so he opened his bag and gave them the bad. Then the +witch herself took it into the kitchen to be dressed; and when it was +ready she could not wait till it was carried up, but took a few leaves +immediately and put them in her mouth, and scarcely were they swallowed +when she lost her own form and ran braying down into the court in the +form of an ass. Now the servant-maid came into the kitchen, and seeing +the salad ready, was going to carry it up; but on the way she too felt a +wish to taste it as the old woman had done, and ate some leaves; so she +also was turned into an ass and ran after the other, letting the dish +with the salad fall on the ground. The messenger sat all this time with +the beautiful young lady, and as nobody came with the salad and she +longed to taste it, she said, 'I don't know where the salad can be.' +Then he thought something must have happened, and said, 'I will go +into the kitchen and see.' And as he went he saw two asses in the court +running about, and the salad lying on the ground. 'All right!' said +he; 'those two have had their share.' Then he took up the rest of +the leaves, laid them on the dish and brought them to the young lady, +saying, 'I bring you the dish myself that you may not wait any longer.' +So she ate of it, and like the others ran off into the court braying +away. + +Then the huntsman washed his face and went into the court that they +might know him. 'Now you shall be paid for your roguery,' said he; and +tied them all three to a rope and took them along with him till he +came to a mill and knocked at the window. 'What's the matter?' said the +miller. 'I have three tiresome beasts here,' said the other; 'if you +will take them, give them food and room, and treat them as I tell you, +I will pay you whatever you ask.' 'With all my heart,' said the miller; +'but how shall I treat them?' Then the huntsman said, 'Give the old +one stripes three times a day and hay once; give the next (who was +the servant-maid) stripes once a day and hay three times; and give +the youngest (who was the beautiful lady) hay three times a day and +no stripes': for he could not find it in his heart to have her beaten. +After this he went back to the castle, where he found everything he +wanted. + +Some days after, the miller came to him and told him that the old ass +was dead; 'The other two,' said he, 'are alive and eat, but are so +sorrowful that they cannot last long.' Then the huntsman pitied them, +and told the miller to drive them back to him, and when they came, he +gave them some of the good salad to eat. And the beautiful young lady +fell upon her knees before him, and said, 'O dearest huntsman! forgive +me all the ill I have done you; my mother forced me to it, it was +against my will, for I always loved you very much. Your wishing-cloak +hangs up in the closet, and as for the bird's heart, I will give it you +too.' But he said, 'Keep it, it will be just the same thing, for I mean +to make you my wife.' So they were married, and lived together very +happily till they died. + + + + +THE STORY OF THE YOUTH WHO WENT FORTH TO LEARN WHAT FEAR WAS + +A certain father had two sons, the elder of who was smart and sensible, +and could do everything, but the younger was stupid and could neither +learn nor understand anything, and when people saw him they said: +'There's a fellow who will give his father some trouble!' When anything +had to be done, it was always the elder who was forced to do it; but +if his father bade him fetch anything when it was late, or in the +night-time, and the way led through the churchyard, or any other dismal +place, he answered: 'Oh, no father, I'll not go there, it makes me +shudder!' for he was afraid. Or when stories were told by the fire at +night which made the flesh creep, the listeners sometimes said: 'Oh, +it makes us shudder!' The younger sat in a corner and listened with +the rest of them, and could not imagine what they could mean. 'They are +always saying: "It makes me shudder, it makes me shudder!" It does not +make me shudder,' thought he. 'That, too, must be an art of which I +understand nothing!' + +Now it came to pass that his father said to him one day: 'Hearken to me, +you fellow in the corner there, you are growing tall and strong, and you +too must learn something by which you can earn your bread. Look how your +brother works, but you do not even earn your salt.' 'Well, father,' he +replied, 'I am quite willing to learn something--indeed, if it could but +be managed, I should like to learn how to shudder. I don't understand +that at all yet.' The elder brother smiled when he heard that, and +thought to himself: 'Goodness, what a blockhead that brother of mine is! +He will never be good for anything as long as he lives! He who wants to +be a sickle must bend himself betimes.' + +The father sighed, and answered him: 'You shall soon learn what it is to +shudder, but you will not earn your bread by that.' + +Soon after this the sexton came to the house on a visit, and the father +bewailed his trouble, and told him how his younger son was so backward +in every respect that he knew nothing and learnt nothing. 'Just think,' +said he, 'when I asked him how he was going to earn his bread, he +actually wanted to learn to shudder.' 'If that be all,' replied the +sexton, 'he can learn that with me. Send him to me, and I will soon +polish him.' The father was glad to do it, for he thought: 'It will +train the boy a little.' The sexton therefore took him into his house, +and he had to ring the church bell. After a day or two, the sexton awoke +him at midnight, and bade him arise and go up into the church tower and +ring the bell. 'You shall soon learn what shuddering is,' thought he, +and secretly went there before him; and when the boy was at the top of +the tower and turned round, and was just going to take hold of the bell +rope, he saw a white figure standing on the stairs opposite the sounding +hole. 'Who is there?' cried he, but the figure made no reply, and did +not move or stir. 'Give an answer,' cried the boy, 'or take yourself +off, you have no business here at night.' + +The sexton, however, remained standing motionless that the boy might +think he was a ghost. The boy cried a second time: 'What do you want +here?--speak if you are an honest fellow, or I will throw you down the +steps!' The sexton thought: 'He can't mean to be as bad as his words,' +uttered no sound and stood as if he were made of stone. Then the boy +called to him for the third time, and as that was also to no purpose, +he ran against him and pushed the ghost down the stairs, so that it fell +down the ten steps and remained lying there in a corner. Thereupon he +rang the bell, went home, and without saying a word went to bed, and +fell asleep. The sexton's wife waited a long time for her husband, but +he did not come back. At length she became uneasy, and wakened the boy, +and asked: 'Do you know where my husband is? He climbed up the tower +before you did.' 'No, I don't know,' replied the boy, 'but someone was +standing by the sounding hole on the other side of the steps, and as he +would neither gave an answer nor go away, I took him for a scoundrel, +and threw him downstairs. Just go there and you will see if it was he. +I should be sorry if it were.' The woman ran away and found her husband, +who was lying moaning in the corner, and had broken his leg. + +She carried him down, and then with loud screams she hastened to the +boy's father, 'Your boy,' cried she, 'has been the cause of a great +misfortune! He has thrown my husband down the steps so that he broke his +leg. Take the good-for-nothing fellow out of our house.' The father was +terrified, and ran thither and scolded the boy. 'What wicked tricks +are these?' said he. 'The devil must have put them into your head.' +'Father,' he replied, 'do listen to me. I am quite innocent. He was +standing there by night like one intent on doing evil. I did not know +who it was, and I entreated him three times either to speak or to go +away.' 'Ah,' said the father, 'I have nothing but unhappiness with you. +Go out of my sight. I will see you no more.' + +'Yes, father, right willingly, wait only until it is day. Then will I +go forth and learn how to shudder, and then I shall, at any rate, +understand one art which will support me.' 'Learn what you will,' spoke +the father, 'it is all the same to me. Here are fifty talers for you. +Take these and go into the wide world, and tell no one from whence you +come, and who is your father, for I have reason to be ashamed of you.' +'Yes, father, it shall be as you will. If you desire nothing more than +that, I can easily keep it in mind.' + +When the day dawned, therefore, the boy put his fifty talers into his +pocket, and went forth on the great highway, and continually said to +himself: 'If I could but shudder! If I could but shudder!' Then a man +approached who heard this conversation which the youth was holding with +himself, and when they had walked a little farther to where they could +see the gallows, the man said to him: 'Look, there is the tree where +seven men have married the ropemaker's daughter, and are now learning +how to fly. Sit down beneath it, and wait till night comes, and you will +soon learn how to shudder.' 'If that is all that is wanted,' answered +the youth, 'it is easily done; but if I learn how to shudder as fast as +that, you shall have my fifty talers. Just come back to me early in the +morning.' Then the youth went to the gallows, sat down beneath it, and +waited till evening came. And as he was cold, he lighted himself a fire, +but at midnight the wind blew so sharply that in spite of his fire, he +could not get warm. And as the wind knocked the hanged men against each +other, and they moved backwards and forwards, he thought to himself: +'If you shiver below by the fire, how those up above must freeze and +suffer!' And as he felt pity for them, he raised the ladder, and climbed +up, unbound one of them after the other, and brought down all seven. +Then he stoked the fire, blew it, and set them all round it to warm +themselves. But they sat there and did not stir, and the fire caught +their clothes. So he said: 'Take care, or I will hang you up again.' The +dead men, however, did not hear, but were quite silent, and let their +rags go on burning. At this he grew angry, and said: 'If you will not +take care, I cannot help you, I will not be burnt with you,' and he hung +them up again each in his turn. Then he sat down by his fire and fell +asleep, and the next morning the man came to him and wanted to have +the fifty talers, and said: 'Well do you know how to shudder?' 'No,' +answered he, 'how should I know? Those fellows up there did not open +their mouths, and were so stupid that they let the few old rags which +they had on their bodies get burnt.' Then the man saw that he would not +get the fifty talers that day, and went away saying: 'Such a youth has +never come my way before.' + +The youth likewise went his way, and once more began to mutter to +himself: 'Ah, if I could but shudder! Ah, if I could but shudder!' A +waggoner who was striding behind him heard this and asked: 'Who are +you?' 'I don't know,' answered the youth. Then the waggoner asked: 'From +whence do you come?' 'I know not.' 'Who is your father?' 'That I may +not tell you.' 'What is it that you are always muttering between your +teeth?' 'Ah,' replied the youth, 'I do so wish I could shudder, but +no one can teach me how.' 'Enough of your foolish chatter,' said the +waggoner. 'Come, go with me, I will see about a place for you.' The +youth went with the waggoner, and in the evening they arrived at an inn +where they wished to pass the night. Then at the entrance of the parlour +the youth again said quite loudly: 'If I could but shudder! If I could +but shudder!' The host who heard this, laughed and said: 'If that is +your desire, there ought to be a good opportunity for you here.' 'Ah, +be silent,' said the hostess, 'so many prying persons have already lost +their lives, it would be a pity and a shame if such beautiful eyes as +these should never see the daylight again.' + +But the youth said: 'However difficult it may be, I will learn it. For +this purpose indeed have I journeyed forth.' He let the host have +no rest, until the latter told him, that not far from thence stood a +haunted castle where anyone could very easily learn what shuddering was, +if he would but watch in it for three nights. The king had promised that +he who would venture should have his daughter to wife, and she was the +most beautiful maiden the sun shone on. Likewise in the castle lay great +treasures, which were guarded by evil spirits, and these treasures would +then be freed, and would make a poor man rich enough. Already many men +had gone into the castle, but as yet none had come out again. Then the +youth went next morning to the king, and said: 'If it be allowed, I will +willingly watch three nights in the haunted castle.' + +The king looked at him, and as the youth pleased him, he said: 'You may +ask for three things to take into the castle with you, but they must +be things without life.' Then he answered: 'Then I ask for a fire, a +turning lathe, and a cutting-board with the knife.' + +The king had these things carried into the castle for him during the +day. When night was drawing near, the youth went up and made himself +a bright fire in one of the rooms, placed the cutting-board and knife +beside it, and seated himself by the turning-lathe. 'Ah, if I could +but shudder!' said he, 'but I shall not learn it here either.' Towards +midnight he was about to poke his fire, and as he was blowing it, +something cried suddenly from one corner: 'Au, miau! how cold we are!' +'You fools!' cried he, 'what are you crying about? If you are cold, come +and take a seat by the fire and warm yourselves.' And when he had said +that, two great black cats came with one tremendous leap and sat down +on each side of him, and looked savagely at him with their fiery +eyes. After a short time, when they had warmed themselves, they said: +'Comrade, shall we have a game of cards?' 'Why not?' he replied, 'but +just show me your paws.' Then they stretched out their claws. 'Oh,' said +he, 'what long nails you have! Wait, I must first cut them for you.' +Thereupon he seized them by the throats, put them on the cutting-board +and screwed their feet fast. 'I have looked at your fingers,' said he, +'and my fancy for card-playing has gone,' and he struck them dead and +threw them out into the water. But when he had made away with these two, +and was about to sit down again by his fire, out from every hole and +corner came black cats and black dogs with red-hot chains, and more +and more of them came until he could no longer move, and they yelled +horribly, and got on his fire, pulled it to pieces, and tried to put +it out. He watched them for a while quietly, but at last when they were +going too far, he seized his cutting-knife, and cried: 'Away with you, +vermin,' and began to cut them down. Some of them ran away, the others +he killed, and threw out into the fish-pond. When he came back he fanned +the embers of his fire again and warmed himself. And as he thus sat, his +eyes would keep open no longer, and he felt a desire to sleep. Then he +looked round and saw a great bed in the corner. 'That is the very thing +for me,' said he, and got into it. When he was just going to shut his +eyes, however, the bed began to move of its own accord, and went over +the whole of the castle. 'That's right,' said he, 'but go faster.' Then +the bed rolled on as if six horses were harnessed to it, up and down, +over thresholds and stairs, but suddenly hop, hop, it turned over upside +down, and lay on him like a mountain. But he threw quilts and pillows up +in the air, got out and said: 'Now anyone who likes, may drive,' and +lay down by his fire, and slept till it was day. In the morning the king +came, and when he saw him lying there on the ground, he thought the evil +spirits had killed him and he was dead. Then said he: 'After all it is a +pity,--for so handsome a man.' The youth heard it, got up, and said: 'It +has not come to that yet.' Then the king was astonished, but very glad, +and asked how he had fared. 'Very well indeed,' answered he; 'one +night is past, the two others will pass likewise.' Then he went to the +innkeeper, who opened his eyes very wide, and said: 'I never expected to +see you alive again! Have you learnt how to shudder yet?' 'No,' said he, +'it is all in vain. If someone would but tell me!' + +The second night he again went up into the old castle, sat down by the +fire, and once more began his old song: 'If I could but shudder!' When +midnight came, an uproar and noise of tumbling about was heard; at +first it was low, but it grew louder and louder. Then it was quiet for +a while, and at length with a loud scream, half a man came down the +chimney and fell before him. 'Hullo!' cried he, 'another half belongs +to this. This is not enough!' Then the uproar began again, there was a +roaring and howling, and the other half fell down likewise. 'Wait,' said +he, 'I will just stoke up the fire a little for you.' When he had done +that and looked round again, the two pieces were joined together, and a +hideous man was sitting in his place. 'That is no part of our bargain,' +said the youth, 'the bench is mine.' The man wanted to push him away; +the youth, however, would not allow that, but thrust him off with all +his strength, and seated himself again in his own place. Then still more +men fell down, one after the other; they brought nine dead men's legs +and two skulls, and set them up and played at nine-pins with them. The +youth also wanted to play and said: 'Listen you, can I join you?' 'Yes, +if you have any money.' 'Money enough,' replied he, 'but your balls are +not quite round.' Then he took the skulls and put them in the lathe and +turned them till they were round. 'There, now they will roll better!' +said he. 'Hurrah! now we'll have fun!' He played with them and lost some +of his money, but when it struck twelve, everything vanished from his +sight. He lay down and quietly fell asleep. Next morning the king came +to inquire after him. 'How has it fared with you this time?' asked he. +'I have been playing at nine-pins,' he answered, 'and have lost a couple +of farthings.' 'Have you not shuddered then?' 'What?' said he, 'I have +had a wonderful time! If I did but know what it was to shudder!' + +The third night he sat down again on his bench and said quite sadly: +'If I could but shudder.' When it grew late, six tall men came in and +brought a coffin. Then he said: 'Ha, ha, that is certainly my little +cousin, who died only a few days ago,' and he beckoned with his finger, +and cried: 'Come, little cousin, come.' They placed the coffin on the +ground, but he went to it and took the lid off, and a dead man lay +therein. He felt his face, but it was cold as ice. 'Wait,' said he, 'I +will warm you a little,' and went to the fire and warmed his hand and +laid it on the dead man's face, but he remained cold. Then he took him +out, and sat down by the fire and laid him on his breast and rubbed his +arms that the blood might circulate again. As this also did no good, he +thought to himself: 'When two people lie in bed together, they warm each +other,' and carried him to the bed, covered him over and lay down by +him. After a short time the dead man became warm too, and began to move. +Then said the youth, 'See, little cousin, have I not warmed you?' The +dead man, however, got up and cried: 'Now will I strangle you.' + +'What!' said he, 'is that the way you thank me? You shall at once go +into your coffin again,' and he took him up, threw him into it, and shut +the lid. Then came the six men and carried him away again. 'I cannot +manage to shudder,' said he. 'I shall never learn it here as long as I +live.' + +Then a man entered who was taller than all others, and looked terrible. +He was old, however, and had a long white beard. 'You wretch,' cried he, +'you shall soon learn what it is to shudder, for you shall die.' 'Not so +fast,' replied the youth. 'If I am to die, I shall have to have a say +in it.' 'I will soon seize you,' said the fiend. 'Softly, softly, do not +talk so big. I am as strong as you are, and perhaps even stronger.' +'We shall see,' said the old man. 'If you are stronger, I will let you +go--come, we will try.' Then he led him by dark passages to a smith's +forge, took an axe, and with one blow struck an anvil into the ground. +'I can do better than that,' said the youth, and went to the other +anvil. The old man placed himself near and wanted to look on, and his +white beard hung down. Then the youth seized the axe, split the anvil +with one blow, and in it caught the old man's beard. 'Now I have you,' +said the youth. 'Now it is your turn to die.' Then he seized an iron bar +and beat the old man till he moaned and entreated him to stop, when he +would give him great riches. The youth drew out the axe and let him go. +The old man led him back into the castle, and in a cellar showed him +three chests full of gold. 'Of these,' said he, 'one part is for the +poor, the other for the king, the third yours.' In the meantime it +struck twelve, and the spirit disappeared, so that the youth stood in +darkness. 'I shall still be able to find my way out,' said he, and felt +about, found the way into the room, and slept there by his fire. +Next morning the king came and said: 'Now you must have learnt what +shuddering is?' 'No,' he answered; 'what can it be? My dead cousin was +here, and a bearded man came and showed me a great deal of money down +below, but no one told me what it was to shudder.' 'Then,' said the +king, 'you have saved the castle, and shall marry my daughter.' 'That +is all very well,' said he, 'but still I do not know what it is to +shudder!' + +Then the gold was brought up and the wedding celebrated; but howsoever +much the young king loved his wife, and however happy he was, he still +said always: 'If I could but shudder--if I could but shudder.' And this +at last angered her. Her waiting-maid said: 'I will find a cure for him; +he shall soon learn what it is to shudder.' She went out to the stream +which flowed through the garden, and had a whole bucketful of gudgeons +brought to her. At night when the young king was sleeping, his wife was +to draw the clothes off him and empty the bucket full of cold water +with the gudgeons in it over him, so that the little fishes would +sprawl about him. Then he woke up and cried: 'Oh, what makes me shudder +so?--what makes me shudder so, dear wife? Ah! now I know what it is to +shudder!' + + + + +KING GRISLY-BEARD + +A great king of a land far away in the East had a daughter who was very +beautiful, but so proud, and haughty, and conceited, that none of the +princes who came to ask her in marriage was good enough for her, and she +only made sport of them. + +Once upon a time the king held a great feast, and asked thither all +her suitors; and they all sat in a row, ranged according to their +rank--kings, and princes, and dukes, and earls, and counts, and barons, +and knights. Then the princess came in, and as she passed by them she +had something spiteful to say to every one. The first was too fat: 'He's +as round as a tub,' said she. The next was too tall: 'What a maypole!' +said she. The next was too short: 'What a dumpling!' said she. The +fourth was too pale, and she called him 'Wallface.' The fifth was too +red, so she called him 'Coxcomb.' The sixth was not straight enough; +so she said he was like a green stick, that had been laid to dry over +a baker's oven. And thus she had some joke to crack upon every one: but +she laughed more than all at a good king who was there. 'Look at +him,' said she; 'his beard is like an old mop; he shall be called +Grisly-beard.' So the king got the nickname of Grisly-beard. + +But the old king was very angry when he saw how his daughter behaved, +and how she ill-treated all his guests; and he vowed that, willing or +unwilling, she should marry the first man, be he prince or beggar, that +came to the door. + +Two days after there came by a travelling fiddler, who began to play +under the window and beg alms; and when the king heard him, he said, +'Let him come in.' So they brought in a dirty-looking fellow; and when +he had sung before the king and the princess, he begged a boon. Then the +king said, 'You have sung so well, that I will give you my daughter for +your wife.' The princess begged and prayed; but the king said, 'I have +sworn to give you to the first comer, and I will keep my word.' So words +and tears were of no avail; the parson was sent for, and she was married +to the fiddler. When this was over the king said, 'Now get ready to +go--you must not stay here--you must travel on with your husband.' + +Then the fiddler went his way, and took her with him, and they soon came +to a great wood. 'Pray,' said she, 'whose is this wood?' 'It belongs +to King Grisly-beard,' answered he; 'hadst thou taken him, all had been +thine.' 'Ah! unlucky wretch that I am!' sighed she; 'would that I had +married King Grisly-beard!' Next they came to some fine meadows. 'Whose +are these beautiful green meadows?' said she. 'They belong to King +Grisly-beard, hadst thou taken him, they had all been thine.' 'Ah! +unlucky wretch that I am!' said she; 'would that I had married King +Grisly-beard!' + +Then they came to a great city. 'Whose is this noble city?' said she. +'It belongs to King Grisly-beard; hadst thou taken him, it had all been +thine.' 'Ah! wretch that I am!' sighed she; 'why did I not marry King +Grisly-beard?' 'That is no business of mine,' said the fiddler: 'why +should you wish for another husband? Am not I good enough for you?' + +At last they came to a small cottage. 'What a paltry place!' said she; +'to whom does that little dirty hole belong?' Then the fiddler said, +'That is your and my house, where we are to live.' 'Where are your +servants?' cried she. 'What do we want with servants?' said he; 'you +must do for yourself whatever is to be done. Now make the fire, and put +on water and cook my supper, for I am very tired.' But the princess knew +nothing of making fires and cooking, and the fiddler was forced to help +her. When they had eaten a very scanty meal they went to bed; but the +fiddler called her up very early in the morning to clean the house. Thus +they lived for two days: and when they had eaten up all there was in the +cottage, the man said, 'Wife, we can't go on thus, spending money and +earning nothing. You must learn to weave baskets.' Then he went out and +cut willows, and brought them home, and she began to weave; but it made +her fingers very sore. 'I see this work won't do,' said he: 'try and +spin; perhaps you will do that better.' So she sat down and tried to +spin; but the threads cut her tender fingers till the blood ran. 'See +now,' said the fiddler, 'you are good for nothing; you can do no work: +what a bargain I have got! However, I'll try and set up a trade in pots +and pans, and you shall stand in the market and sell them.' 'Alas!' +sighed she, 'if any of my father's court should pass by and see me +standing in the market, how they will laugh at me!' + +But her husband did not care for that, and said she must work, if she +did not wish to die of hunger. At first the trade went well; for many +people, seeing such a beautiful woman, went to buy her wares, and paid +their money without thinking of taking away the goods. They lived on +this as long as it lasted; and then her husband bought a fresh lot of +ware, and she sat herself down with it in the corner of the market; but +a drunken soldier soon came by, and rode his horse against her stall, +and broke all her goods into a thousand pieces. Then she began to cry, +and knew not what to do. 'Ah! what will become of me?' said she; 'what +will my husband say?' So she ran home and told him all. 'Who would +have thought you would have been so silly,' said he, 'as to put an +earthenware stall in the corner of the market, where everybody passes? +but let us have no more crying; I see you are not fit for this sort of +work, so I have been to the king's palace, and asked if they did not +want a kitchen-maid; and they say they will take you, and there you will +have plenty to eat.' + +Thus the princess became a kitchen-maid, and helped the cook to do all +the dirtiest work; but she was allowed to carry home some of the meat +that was left, and on this they lived. + +She had not been there long before she heard that the king's eldest son +was passing by, going to be married; and she went to one of the windows +and looked out. Everything was ready, and all the pomp and brightness of +the court was there. Then she bitterly grieved for the pride and folly +which had brought her so low. And the servants gave her some of the rich +meats, which she put into her basket to take home. + +All on a sudden, as she was going out, in came the king's son in golden +clothes; and when he saw a beautiful woman at the door, he took her +by the hand, and said she should be his partner in the dance; but she +trembled for fear, for she saw that it was King Grisly-beard, who was +making sport of her. However, he kept fast hold, and led her in; and the +cover of the basket came off, so that the meats in it fell about. Then +everybody laughed and jeered at her; and she was so abashed, that she +wished herself a thousand feet deep in the earth. She sprang to the +door to run away; but on the steps King Grisly-beard overtook her, and +brought her back and said, 'Fear me not! I am the fiddler who has lived +with you in the hut. I brought you there because I really loved you. I +am also the soldier that overset your stall. I have done all this only +to cure you of your silly pride, and to show you the folly of your +ill-treatment of me. Now all is over: you have learnt wisdom, and it is +time to hold our marriage feast.' + +Then the chamberlains came and brought her the most beautiful robes; and +her father and his whole court were there already, and welcomed her home +on her marriage. Joy was in every face and every heart. The feast was +grand; they danced and sang; all were merry; and I only wish that you +and I had been of the party. + + + + +IRON HANS + +There was once upon a time a king who had a great forest near his +palace, full of all kinds of wild animals. One day he sent out a +huntsman to shoot him a roe, but he did not come back. 'Perhaps some +accident has befallen him,' said the king, and the next day he sent out +two more huntsmen who were to search for him, but they too stayed away. +Then on the third day, he sent for all his huntsmen, and said: 'Scour +the whole forest through, and do not give up until you have found all +three.' But of these also, none came home again, none were seen again. +From that time forth, no one would any longer venture into the forest, +and it lay there in deep stillness and solitude, and nothing was seen +of it, but sometimes an eagle or a hawk flying over it. This lasted for +many years, when an unknown huntsman announced himself to the king as +seeking a situation, and offered to go into the dangerous forest. The +king, however, would not give his consent, and said: 'It is not safe in +there; I fear it would fare with you no better than with the others, +and you would never come out again.' The huntsman replied: 'Lord, I will +venture it at my own risk, of fear I know nothing.' + +The huntsman therefore betook himself with his dog to the forest. It was +not long before the dog fell in with some game on the way, and wanted to +pursue it; but hardly had the dog run two steps when it stood before a +deep pool, could go no farther, and a naked arm stretched itself out of +the water, seized it, and drew it under. When the huntsman saw that, he +went back and fetched three men to come with buckets and bale out the +water. When they could see to the bottom there lay a wild man whose body +was brown like rusty iron, and whose hair hung over his face down to his +knees. They bound him with cords, and led him away to the castle. There +was great astonishment over the wild man; the king, however, had him put +in an iron cage in his courtyard, and forbade the door to be opened +on pain of death, and the queen herself was to take the key into her +keeping. And from this time forth everyone could again go into the +forest with safety. + +The king had a son of eight years, who was once playing in the +courtyard, and while he was playing, his golden ball fell into the cage. +The boy ran thither and said: 'Give me my ball out.' 'Not till you have +opened the door for me,' answered the man. 'No,' said the boy, 'I will +not do that; the king has forbidden it,' and ran away. The next day he +again went and asked for his ball; the wild man said: 'Open my door,' +but the boy would not. On the third day the king had ridden out hunting, +and the boy went once more and said: 'I cannot open the door even if I +wished, for I have not the key.' Then the wild man said: 'It lies under +your mother's pillow, you can get it there.' The boy, who wanted to have +his ball back, cast all thought to the winds, and brought the key. The +door opened with difficulty, and the boy pinched his fingers. When it +was open the wild man stepped out, gave him the golden ball, and hurried +away. The boy had become afraid; he called and cried after him: 'Oh, +wild man, do not go away, or I shall be beaten!' The wild man turned +back, took him up, set him on his shoulder, and went with hasty steps +into the forest. When the king came home, he observed the empty cage, +and asked the queen how that had happened. She knew nothing about it, +and sought the key, but it was gone. She called the boy, but no one +answered. The king sent out people to seek for him in the fields, but +they did not find him. Then he could easily guess what had happened, and +much grief reigned in the royal court. + +When the wild man had once more reached the dark forest, he took the boy +down from his shoulder, and said to him: 'You will never see your father +and mother again, but I will keep you with me, for you have set me free, +and I have compassion on you. If you do all I bid you, you shall fare +well. Of treasure and gold have I enough, and more than anyone in the +world.' He made a bed of moss for the boy on which he slept, and the +next morning the man took him to a well, and said: 'Behold, the gold +well is as bright and clear as crystal, you shall sit beside it, and +take care that nothing falls into it, or it will be polluted. I will +come every evening to see if you have obeyed my order.' The boy placed +himself by the brink of the well, and often saw a golden fish or a +golden snake show itself therein, and took care that nothing fell in. +As he was thus sitting, his finger hurt him so violently that he +involuntarily put it in the water. He drew it quickly out again, but saw +that it was quite gilded, and whatsoever pains he took to wash the gold +off again, all was to no purpose. In the evening Iron Hans came back, +looked at the boy, and said: 'What has happened to the well?' 'Nothing +nothing,' he answered, and held his finger behind his back, that the +man might not see it. But he said: 'You have dipped your finger into +the water, this time it may pass, but take care you do not again let +anything go in.' By daybreak the boy was already sitting by the well and +watching it. His finger hurt him again and he passed it over his head, +and then unhappily a hair fell down into the well. He took it quickly +out, but it was already quite gilded. Iron Hans came, and already knew +what had happened. 'You have let a hair fall into the well,' said he. +'I will allow you to watch by it once more, but if this happens for the +third time then the well is polluted and you can no longer remain with +me.' + +On the third day, the boy sat by the well, and did not stir his finger, +however much it hurt him. But the time was long to him, and he looked at +the reflection of his face on the surface of the water. And as he +still bent down more and more while he was doing so, and trying to look +straight into the eyes, his long hair fell down from his shoulders into +the water. He raised himself up quickly, but the whole of the hair of +his head was already golden and shone like the sun. You can imagine how +terrified the poor boy was! He took his pocket-handkerchief and tied it +round his head, in order that the man might not see it. When he came he +already knew everything, and said: 'Take the handkerchief off.' Then the +golden hair streamed forth, and let the boy excuse himself as he might, +it was of no use. 'You have not stood the trial and can stay here no +longer. Go forth into the world, there you will learn what poverty is. +But as you have not a bad heart, and as I mean well by you, there is +one thing I will grant you; if you fall into any difficulty, come to the +forest and cry: "Iron Hans," and then I will come and help you. My +power is great, greater than you think, and I have gold and silver in +abundance.' + +Then the king's son left the forest, and walked by beaten and unbeaten +paths ever onwards until at length he reached a great city. There he +looked for work, but could find none, and he learnt nothing by which he +could help himself. At length he went to the palace, and asked if they +would take him in. The people about court did not at all know what use +they could make of him, but they liked him, and told him to stay. At +length the cook took him into his service, and said he might carry wood +and water, and rake the cinders together. Once when it so happened that +no one else was at hand, the cook ordered him to carry the food to the +royal table, but as he did not like to let his golden hair be seen, he +kept his little cap on. Such a thing as that had never yet come under +the king's notice, and he said: 'When you come to the royal table you +must take your hat off.' He answered: 'Ah, Lord, I cannot; I have a bad +sore place on my head.' Then the king had the cook called before him +and scolded him, and asked how he could take such a boy as that into his +service; and that he was to send him away at once. The cook, however, +had pity on him, and exchanged him for the gardener's boy. + +And now the boy had to plant and water the garden, hoe and dig, and bear +the wind and bad weather. Once in summer when he was working alone in +the garden, the day was so warm he took his little cap off that the air +might cool him. As the sun shone on his hair it glittered and flashed so +that the rays fell into the bedroom of the king's daughter, and up she +sprang to see what that could be. Then she saw the boy, and cried to +him: 'Boy, bring me a wreath of flowers.' He put his cap on with all +haste, and gathered wild field-flowers and bound them together. When he +was ascending the stairs with them, the gardener met him, and said: 'How +can you take the king's daughter a garland of such common flowers? Go +quickly, and get another, and seek out the prettiest and rarest.' 'Oh, +no,' replied the boy, 'the wild ones have more scent, and will please +her better.' When he got into the room, the king's daughter said: 'Take +your cap off, it is not seemly to keep it on in my presence.' He again +said: 'I may not, I have a sore head.' She, however, caught at his +cap and pulled it off, and then his golden hair rolled down on his +shoulders, and it was splendid to behold. He wanted to run out, but she +held him by the arm, and gave him a handful of ducats. With these he +departed, but he cared nothing for the gold pieces. He took them to the +gardener, and said: 'I present them to your children, they can play with +them.' The following day the king's daughter again called to him that he +was to bring her a wreath of field-flowers, and then he went in with it, +she instantly snatched at his cap, and wanted to take it away from him, +but he held it fast with both hands. She again gave him a handful of +ducats, but he would not keep them, and gave them to the gardener for +playthings for his children. On the third day things went just the +same; she could not get his cap away from him, and he would not have her +money. + +Not long afterwards, the country was overrun by war. The king gathered +together his people, and did not know whether or not he could offer any +opposition to the enemy, who was superior in strength and had a mighty +army. Then said the gardener's boy: 'I am grown up, and will go to the +wars also, only give me a horse.' The others laughed, and said: 'Seek +one for yourself when we are gone, we will leave one behind us in the +stable for you.' When they had gone forth, he went into the stable, and +led the horse out; it was lame of one foot, and limped hobblety jib, +hobblety jib; nevertheless he mounted it, and rode away to the dark +forest. When he came to the outskirts, he called 'Iron Hans' three +times so loudly that it echoed through the trees. Thereupon the wild man +appeared immediately, and said: 'What do you desire?' 'I want a strong +steed, for I am going to the wars.' 'That you shall have, and still more +than you ask for.' Then the wild man went back into the forest, and it +was not long before a stable-boy came out of it, who led a horse that +snorted with its nostrils, and could hardly be restrained, and behind +them followed a great troop of warriors entirely equipped in iron, and +their swords flashed in the sun. The youth made over his three-legged +horse to the stable-boy, mounted the other, and rode at the head of the +soldiers. When he got near the battlefield a great part of the king's +men had already fallen, and little was wanting to make the rest give +way. Then the youth galloped thither with his iron soldiers, broke like +a hurricane over the enemy, and beat down all who opposed him. They +began to flee, but the youth pursued, and never stopped, until there +was not a single man left. Instead of returning to the king, however, he +conducted his troop by byways back to the forest, and called forth Iron +Hans. 'What do you desire?' asked the wild man. 'Take back your horse +and your troops, and give me my three-legged horse again.' All that he +asked was done, and soon he was riding on his three-legged horse. When +the king returned to his palace, his daughter went to meet him, and +wished him joy of his victory. 'I am not the one who carried away the +victory,' said he, 'but a strange knight who came to my assistance with +his soldiers.' The daughter wanted to hear who the strange knight was, +but the king did not know, and said: 'He followed the enemy, and I did +not see him again.' She inquired of the gardener where his boy was, but +he smiled, and said: 'He has just come home on his three-legged horse, +and the others have been mocking him, and crying: "Here comes our +hobblety jib back again!" They asked, too: "Under what hedge have you +been lying sleeping all the time?" So he said: "I did the best of all, +and it would have gone badly without me." And then he was still more +ridiculed.' + +The king said to his daughter: 'I will proclaim a great feast that shall +last for three days, and you shall throw a golden apple. Perhaps the +unknown man will show himself.' When the feast was announced, the youth +went out to the forest, and called Iron Hans. 'What do you desire?' +asked he. 'That I may catch the king's daughter's golden apple.' 'It is +as safe as if you had it already,' said Iron Hans. 'You shall likewise +have a suit of red armour for the occasion, and ride on a spirited +chestnut-horse.' When the day came, the youth galloped to the spot, took +his place amongst the knights, and was recognized by no one. The king's +daughter came forward, and threw a golden apple to the knights, but none +of them caught it but he, only as soon as he had it he galloped away. + +On the second day Iron Hans equipped him as a white knight, and gave him +a white horse. Again he was the only one who caught the apple, and +he did not linger an instant, but galloped off with it. The king grew +angry, and said: 'That is not allowed; he must appear before me and tell +his name.' He gave the order that if the knight who caught the apple, +should go away again they should pursue him, and if he would not come +back willingly, they were to cut him down and stab him. + +On the third day, he received from Iron Hans a suit of black armour and +a black horse, and again he caught the apple. But when he was riding off +with it, the king's attendants pursued him, and one of them got so near +him that he wounded the youth's leg with the point of his sword. The +youth nevertheless escaped from them, but his horse leapt so violently +that the helmet fell from the youth's head, and they could see that he +had golden hair. They rode back and announced this to the king. + +The following day the king's daughter asked the gardener about his +boy. 'He is at work in the garden; the queer creature has been at the +festival too, and only came home yesterday evening; he has likewise +shown my children three golden apples which he has won.' + +The king had him summoned into his presence, and he came and again had +his little cap on his head. But the king's daughter went up to him and +took it off, and then his golden hair fell down over his shoulders, and +he was so handsome that all were amazed. 'Are you the knight who came +every day to the festival, always in different colours, and who caught +the three golden apples?' asked the king. 'Yes,' answered he, 'and here +the apples are,' and he took them out of his pocket, and returned them +to the king. 'If you desire further proof, you may see the wound which +your people gave me when they followed me. But I am likewise the knight +who helped you to your victory over your enemies.' 'If you can perform +such deeds as that, you are no gardener's boy; tell me, who is your +father?' 'My father is a mighty king, and gold have I in plenty as great +as I require.' 'I well see,' said the king, 'that I owe my thanks to +you; can I do anything to please you?' 'Yes,' answered he, 'that indeed +you can. Give me your daughter to wife.' The maiden laughed, and said: +'He does not stand much on ceremony, but I have already seen by his +golden hair that he was no gardener's boy,' and then she went and +kissed him. His father and mother came to the wedding, and were in great +delight, for they had given up all hope of ever seeing their dear +son again. And as they were sitting at the marriage-feast, the music +suddenly stopped, the doors opened, and a stately king came in with a +great retinue. He went up to the youth, embraced him and said: 'I am +Iron Hans, and was by enchantment a wild man, but you have set me free; +all the treasures which I possess, shall be your property.' + + + + +CAT-SKIN + +There was once a king, whose queen had hair of the purest gold, and was +so beautiful that her match was not to be met with on the whole face of +the earth. But this beautiful queen fell ill, and when she felt that her +end drew near she called the king to her and said, 'Promise me that you +will never marry again, unless you meet with a wife who is as beautiful +as I am, and who has golden hair like mine.' Then when the king in his +grief promised all she asked, she shut her eyes and died. But the king +was not to be comforted, and for a long time never thought of taking +another wife. At last, however, his wise men said, 'this will not do; +the king must marry again, that we may have a queen.' So messengers were +sent far and wide, to seek for a bride as beautiful as the late queen. +But there was no princess in the world so beautiful; and if there had +been, still there was not one to be found who had golden hair. So the +messengers came home, and had had all their trouble for nothing. + +Now the king had a daughter, who was just as beautiful as her mother, +and had the same golden hair. And when she was grown up, the king looked +at her and saw that she was just like this late queen: then he said to +his courtiers, 'May I not marry my daughter? She is the very image of my +dead wife: unless I have her, I shall not find any bride upon the whole +earth, and you say there must be a queen.' When the courtiers heard this +they were shocked, and said, 'Heaven forbid that a father should marry +his daughter! Out of so great a sin no good can come.' And his daughter +was also shocked, but hoped the king would soon give up such thoughts; +so she said to him, 'Before I marry anyone I must have three dresses: +one must be of gold, like the sun; another must be of shining silver, +like the moon; and a third must be dazzling as the stars: besides this, +I want a mantle of a thousand different kinds of fur put together, to +which every beast in the kingdom must give a part of his skin.' And thus +she thought he would think of the matter no more. But the king made the +most skilful workmen in his kingdom weave the three dresses: one golden, +like the sun; another silvery, like the moon; and a third sparkling, +like the stars: and his hunters were told to hunt out all the beasts in +his kingdom, and to take the finest fur out of their skins: and thus a +mantle of a thousand furs was made. + +When all were ready, the king sent them to her; but she got up in the +night when all were asleep, and took three of her trinkets, a golden +ring, a golden necklace, and a golden brooch, and packed the three +dresses--of the sun, the moon, and the stars--up in a nutshell, and +wrapped herself up in the mantle made of all sorts of fur, and besmeared +her face and hands with soot. Then she threw herself upon Heaven for +help in her need, and went away, and journeyed on the whole night, till +at last she came to a large wood. As she was very tired, she sat herself +down in the hollow of a tree and soon fell asleep: and there she slept +on till it was midday. + +Now as the king to whom the wood belonged was hunting in it, his dogs +came to the tree, and began to snuff about, and run round and round, and +bark. 'Look sharp!' said the king to the huntsmen, 'and see what sort +of game lies there.' And the huntsmen went up to the tree, and when they +came back again said, 'In the hollow tree there lies a most wonderful +beast, such as we never saw before; its skin seems to be of a thousand +kinds of fur, but there it lies fast asleep.' 'See,' said the king, 'if +you can catch it alive, and we will take it with us.' So the huntsmen +took it up, and the maiden awoke and was greatly frightened, and said, +'I am a poor child that has neither father nor mother left; have pity on +me and take me with you.' Then they said, 'Yes, Miss Cat-skin, you will +do for the kitchen; you can sweep up the ashes, and do things of that +sort.' So they put her into the coach, and took her home to the king's +palace. Then they showed her a little corner under the staircase, where +no light of day ever peeped in, and said, 'Cat-skin, you may lie and +sleep there.' And she was sent into the kitchen, and made to fetch wood +and water, to blow the fire, pluck the poultry, pick the herbs, sift the +ashes, and do all the dirty work. + +Thus Cat-skin lived for a long time very sorrowfully. 'Ah! pretty +princess!' thought she, 'what will now become of thee?' But it happened +one day that a feast was to be held in the king's castle, so she said to +the cook, 'May I go up a little while and see what is going on? I will +take care and stand behind the door.' And the cook said, 'Yes, you may +go, but be back again in half an hour's time, to rake out the ashes.' +Then she took her little lamp, and went into her cabin, and took off the +fur skin, and washed the soot from off her face and hands, so that her +beauty shone forth like the sun from behind the clouds. She next opened +her nutshell, and brought out of it the dress that shone like the sun, +and so went to the feast. Everyone made way for her, for nobody knew +her, and they thought she could be no less than a king's daughter. But +the king came up to her, and held out his hand and danced with her; and +he thought in his heart, 'I never saw any one half so beautiful.' + +When the dance was at an end she curtsied; and when the king looked +round for her, she was gone, no one knew wither. The guards that stood +at the castle gate were called in: but they had seen no one. The truth +was, that she had run into her little cabin, pulled off her dress, +blackened her face and hands, put on the fur-skin cloak, and was +Cat-skin again. When she went into the kitchen to her work, and began +to rake the ashes, the cook said, 'Let that alone till the morning, and +heat the king's soup; I should like to run up now and give a peep: but +take care you don't let a hair fall into it, or you will run a chance of +never eating again.' + +As soon as the cook went away, Cat-skin heated the king's soup, and +toasted a slice of bread first, as nicely as ever she could; and when it +was ready, she went and looked in the cabin for her little golden ring, +and put it into the dish in which the soup was. When the dance was over, +the king ordered his soup to be brought in; and it pleased him so well, +that he thought he had never tasted any so good before. At the bottom +he saw a gold ring lying; and as he could not make out how it had got +there, he ordered the cook to be sent for. The cook was frightened when +he heard the order, and said to Cat-skin, 'You must have let a hair fall +into the soup; if it be so, you will have a good beating.' Then he went +before the king, and he asked him who had cooked the soup. 'I did,' +answered the cook. But the king said, 'That is not true; it was better +done than you could do it.' Then he answered, 'To tell the truth I did +not cook it, but Cat-skin did.' 'Then let Cat-skin come up,' said the +king: and when she came he said to her, 'Who are you?' 'I am a poor +child,' said she, 'that has lost both father and mother.' 'How came you +in my palace?' asked he. 'I am good for nothing,' said she, 'but to be +scullion-girl, and to have boots and shoes thrown at my head.' 'But how +did you get the ring that was in the soup?' asked the king. Then she +would not own that she knew anything about the ring; so the king sent +her away again about her business. + +After a time there was another feast, and Cat-skin asked the cook to let +her go up and see it as before. 'Yes,' said he, 'but come again in half +an hour, and cook the king the soup that he likes so much.' Then she +ran to her little cabin, washed herself quickly, and took her dress +out which was silvery as the moon, and put it on; and when she went in, +looking like a king's daughter, the king went up to her, and rejoiced at +seeing her again, and when the dance began he danced with her. After the +dance was at an end she managed to slip out, so slyly that the king did +not see where she was gone; but she sprang into her little cabin, and +made herself into Cat-skin again, and went into the kitchen to cook the +soup. Whilst the cook was above stairs, she got the golden necklace and +dropped it into the soup; then it was brought to the king, who ate it, +and it pleased him as well as before; so he sent for the cook, who +was again forced to tell him that Cat-skin had cooked it. Cat-skin was +brought again before the king, but she still told him that she was only +fit to have boots and shoes thrown at her head. + +But when the king had ordered a feast to be got ready for the third +time, it happened just the same as before. 'You must be a witch, +Cat-skin,' said the cook; 'for you always put something into your soup, +so that it pleases the king better than mine.' However, he let her go up +as before. Then she put on her dress which sparkled like the stars, and +went into the ball-room in it; and the king danced with her again, and +thought she had never looked so beautiful as she did then. So whilst +he was dancing with her, he put a gold ring on her finger without her +seeing it, and ordered that the dance should be kept up a long time. +When it was at an end, he would have held her fast by the hand, but she +slipped away, and sprang so quickly through the crowd that he lost sight +of her: and she ran as fast as she could into her little cabin under +the stairs. But this time she kept away too long, and stayed beyond the +half-hour; so she had not time to take off her fine dress, and threw her +fur mantle over it, and in her haste did not blacken herself all over +with soot, but left one of her fingers white. + +Then she ran into the kitchen, and cooked the king's soup; and as soon +as the cook was gone, she put the golden brooch into the dish. When the +king got to the bottom, he ordered Cat-skin to be called once more, and +soon saw the white finger, and the ring that he had put on it whilst +they were dancing: so he seized her hand, and kept fast hold of it, and +when she wanted to loose herself and spring away, the fur cloak fell off +a little on one side, and the starry dress sparkled underneath it. + +Then he got hold of the fur and tore it off, and her golden hair and +beautiful form were seen, and she could no longer hide herself: so she +washed the soot and ashes from her face, and showed herself to be the +most beautiful princess upon the face of the earth. But the king said, +'You are my beloved bride, and we will never more be parted from each +other.' And the wedding feast was held, and a merry day it was, as ever +was heard of or seen in that country, or indeed in any other. + + + + +SNOW-WHITE AND ROSE-RED + +There was once a poor widow who lived in a lonely cottage. In front of +the cottage was a garden wherein stood two rose-trees, one of which bore +white and the other red roses. She had two children who were like the +two rose-trees, and one was called Snow-white, and the other Rose-red. +They were as good and happy, as busy and cheerful as ever two children +in the world were, only Snow-white was more quiet and gentle than +Rose-red. Rose-red liked better to run about in the meadows and fields +seeking flowers and catching butterflies; but Snow-white sat at home +with her mother, and helped her with her housework, or read to her when +there was nothing to do. + +The two children were so fond of one another that they always held each +other by the hand when they went out together, and when Snow-white said: +'We will not leave each other,' Rose-red answered: 'Never so long as we +live,' and their mother would add: 'What one has she must share with the +other.' + +They often ran about the forest alone and gathered red berries, and no +beasts did them any harm, but came close to them trustfully. The little +hare would eat a cabbage-leaf out of their hands, the roe grazed by +their side, the stag leapt merrily by them, and the birds sat still upon +the boughs, and sang whatever they knew. + +No mishap overtook them; if they had stayed too late in the forest, and +night came on, they laid themselves down near one another upon the moss, +and slept until morning came, and their mother knew this and did not +worry on their account. + +Once when they had spent the night in the wood and the dawn had roused +them, they saw a beautiful child in a shining white dress sitting near +their bed. He got up and looked quite kindly at them, but said nothing +and went into the forest. And when they looked round they found that +they had been sleeping quite close to a precipice, and would certainly +have fallen into it in the darkness if they had gone only a few paces +further. And their mother told them that it must have been the angel who +watches over good children. + +Snow-white and Rose-red kept their mother's little cottage so neat that +it was a pleasure to look inside it. In the summer Rose-red took care +of the house, and every morning laid a wreath of flowers by her mother's +bed before she awoke, in which was a rose from each tree. In the winter +Snow-white lit the fire and hung the kettle on the hob. The kettle +was of brass and shone like gold, so brightly was it polished. In the +evening, when the snowflakes fell, the mother said: 'Go, Snow-white, and +bolt the door,' and then they sat round the hearth, and the mother took +her spectacles and read aloud out of a large book, and the two girls +listened as they sat and spun. And close by them lay a lamb upon the +floor, and behind them upon a perch sat a white dove with its head +hidden beneath its wings. + +One evening, as they were thus sitting comfortably together, someone +knocked at the door as if he wished to be let in. The mother said: +'Quick, Rose-red, open the door, it must be a traveller who is seeking +shelter.' Rose-red went and pushed back the bolt, thinking that it was a +poor man, but it was not; it was a bear that stretched his broad, black +head within the door. + +Rose-red screamed and sprang back, the lamb bleated, the dove fluttered, +and Snow-white hid herself behind her mother's bed. But the bear began +to speak and said: 'Do not be afraid, I will do you no harm! I am +half-frozen, and only want to warm myself a little beside you.' + +'Poor bear,' said the mother, 'lie down by the fire, only take care that +you do not burn your coat.' Then she cried: 'Snow-white, Rose-red, come +out, the bear will do you no harm, he means well.' So they both came +out, and by-and-by the lamb and dove came nearer, and were not afraid +of him. The bear said: 'Here, children, knock the snow out of my coat a +little'; so they brought the broom and swept the bear's hide clean; +and he stretched himself by the fire and growled contentedly and +comfortably. It was not long before they grew quite at home, and played +tricks with their clumsy guest. They tugged his hair with their hands, +put their feet upon his back and rolled him about, or they took a +hazel-switch and beat him, and when he growled they laughed. But the +bear took it all in good part, only when they were too rough he called +out: 'Leave me alive, children, + + Snow-white, Rose-red, + Will you beat your wooer dead?' + +When it was bed-time, and the others went to bed, the mother said to the +bear: 'You can lie there by the hearth, and then you will be safe from +the cold and the bad weather.' As soon as day dawned the two children +let him out, and he trotted across the snow into the forest. + +Henceforth the bear came every evening at the same time, laid himself +down by the hearth, and let the children amuse themselves with him as +much as they liked; and they got so used to him that the doors were +never fastened until their black friend had arrived. + +When spring had come and all outside was green, the bear said one +morning to Snow-white: 'Now I must go away, and cannot come back for the +whole summer.' 'Where are you going, then, dear bear?' asked Snow-white. +'I must go into the forest and guard my treasures from the wicked +dwarfs. In the winter, when the earth is frozen hard, they are obliged +to stay below and cannot work their way through; but now, when the sun +has thawed and warmed the earth, they break through it, and come out to +pry and steal; and what once gets into their hands, and in their caves, +does not easily see daylight again.' + +Snow-white was quite sorry at his departure, and as she unbolted the +door for him, and the bear was hurrying out, he caught against the bolt +and a piece of his hairy coat was torn off, and it seemed to Snow-white +as if she had seen gold shining through it, but she was not sure about +it. The bear ran away quickly, and was soon out of sight behind the +trees. + +A short time afterwards the mother sent her children into the forest +to get firewood. There they found a big tree which lay felled on the +ground, and close by the trunk something was jumping backwards and +forwards in the grass, but they could not make out what it was. When +they came nearer they saw a dwarf with an old withered face and a +snow-white beard a yard long. The end of the beard was caught in a +crevice of the tree, and the little fellow was jumping about like a dog +tied to a rope, and did not know what to do. + +He glared at the girls with his fiery red eyes and cried: 'Why do you +stand there? Can you not come here and help me?' 'What are you up to, +little man?' asked Rose-red. 'You stupid, prying goose!' answered the +dwarf: 'I was going to split the tree to get a little wood for cooking. +The little bit of food that we people get is immediately burnt up with +heavy logs; we do not swallow so much as you coarse, greedy folk. I had +just driven the wedge safely in, and everything was going as I wished; +but the cursed wedge was too smooth and suddenly sprang out, and the +tree closed so quickly that I could not pull out my beautiful white +beard; so now it is tight and I cannot get away, and the silly, sleek, +milk-faced things laugh! Ugh! how odious you are!' + +The children tried very hard, but they could not pull the beard out, it +was caught too fast. 'I will run and fetch someone,' said Rose-red. 'You +senseless goose!' snarled the dwarf; 'why should you fetch someone? You +are already two too many for me; can you not think of something better?' +'Don't be impatient,' said Snow-white, 'I will help you,' and she pulled +her scissors out of her pocket, and cut off the end of the beard. + +As soon as the dwarf felt himself free he laid hold of a bag which lay +amongst the roots of the tree, and which was full of gold, and lifted it +up, grumbling to himself: 'Uncouth people, to cut off a piece of my fine +beard. Bad luck to you!' and then he swung the bag upon his back, and +went off without even once looking at the children. + +Some time afterwards Snow-white and Rose-red went to catch a dish +of fish. As they came near the brook they saw something like a large +grasshopper jumping towards the water, as if it were going to leap in. +They ran to it and found it was the dwarf. 'Where are you going?' said +Rose-red; 'you surely don't want to go into the water?' 'I am not such +a fool!' cried the dwarf; 'don't you see that the accursed fish wants +to pull me in?' The little man had been sitting there fishing, and +unluckily the wind had tangled up his beard with the fishing-line; a +moment later a big fish made a bite and the feeble creature had not +strength to pull it out; the fish kept the upper hand and pulled the +dwarf towards him. He held on to all the reeds and rushes, but it was of +little good, for he was forced to follow the movements of the fish, and +was in urgent danger of being dragged into the water. + +The girls came just in time; they held him fast and tried to free his +beard from the line, but all in vain, beard and line were entangled fast +together. There was nothing to do but to bring out the scissors and cut +the beard, whereby a small part of it was lost. When the dwarf saw that +he screamed out: 'Is that civil, you toadstool, to disfigure a man's +face? Was it not enough to clip off the end of my beard? Now you have +cut off the best part of it. I cannot let myself be seen by my people. +I wish you had been made to run the soles off your shoes!' Then he took +out a sack of pearls which lay in the rushes, and without another word +he dragged it away and disappeared behind a stone. + +It happened that soon afterwards the mother sent the two children to the +town to buy needles and thread, and laces and ribbons. The road led them +across a heath upon which huge pieces of rock lay strewn about. There +they noticed a large bird hovering in the air, flying slowly round and +round above them; it sank lower and lower, and at last settled near a +rock not far away. Immediately they heard a loud, piteous cry. They ran +up and saw with horror that the eagle had seized their old acquaintance +the dwarf, and was going to carry him off. + +The children, full of pity, at once took tight hold of the little man, +and pulled against the eagle so long that at last he let his booty go. +As soon as the dwarf had recovered from his first fright he cried +with his shrill voice: 'Could you not have done it more carefully! You +dragged at my brown coat so that it is all torn and full of holes, you +clumsy creatures!' Then he took up a sack full of precious stones, and +slipped away again under the rock into his hole. The girls, who by +this time were used to his ingratitude, went on their way and did their +business in town. + +As they crossed the heath again on their way home they surprised the +dwarf, who had emptied out his bag of precious stones in a clean spot, +and had not thought that anyone would come there so late. The evening +sun shone upon the brilliant stones; they glittered and sparkled with +all colours so beautifully that the children stood still and stared +at them. 'Why do you stand gaping there?' cried the dwarf, and his +ashen-grey face became copper-red with rage. He was still cursing when a +loud growling was heard, and a black bear came trotting towards them out +of the forest. The dwarf sprang up in a fright, but he could not reach +his cave, for the bear was already close. Then in the dread of his heart +he cried: 'Dear Mr Bear, spare me, I will give you all my treasures; +look, the beautiful jewels lying there! Grant me my life; what do you +want with such a slender little fellow as I? you would not feel me +between your teeth. Come, take these two wicked girls, they are tender +morsels for you, fat as young quails; for mercy's sake eat them!' The +bear took no heed of his words, but gave the wicked creature a single +blow with his paw, and he did not move again. + +The girls had run away, but the bear called to them: 'Snow-white and +Rose-red, do not be afraid; wait, I will come with you.' Then they +recognized his voice and waited, and when he came up to them suddenly +his bearskin fell off, and he stood there a handsome man, clothed all in +gold. 'I am a king's son,' he said, 'and I was bewitched by that wicked +dwarf, who had stolen my treasures; I have had to run about the forest +as a savage bear until I was freed by his death. Now he has got his +well-deserved punishment. + +Snow-white was married to him, and Rose-red to his brother, and they +divided between them the great treasure which the dwarf had gathered +together in his cave. The old mother lived peacefully and happily with +her children for many years. She took the two rose-trees with her, and +they stood before her window, and every year bore the most beautiful +roses, white and red. + + +***** + + +The Brothers Grimm, Jacob (1785-1863) and Wilhelm (1786-1859), were born +in Hanau, near Frankfurt, in the German state of Hesse. Throughout +their lives they remained close friends, and both studied law at Marburg +University. Jacob was a pioneer in the study of German philology, +and although Wilhelm's work was hampered by poor health the brothers +collaborated in the creation of a German dictionary, not completed until +a century after their deaths. But they were best (and universally) known +for the collection of over two hundred folk tales they made from oral +sources and published in two volumes of 'Nursery and Household Tales' in +1812 and 1814. Although their intention was to preserve such material as +part of German cultural and literary history, and their collection was +first published with scholarly notes and no illustration, the tales soon +came into the possession of young readers. This was in part due to Edgar +Taylor, who made the first English translation in 1823, selecting about +fifty stories 'with the amusement of some young friends principally in +view.' They have been an essential ingredient of children's reading ever +since. + + + + + +End of Project Gutenberg's Grimms' Fairy Tales, by The Brothers Grimm + +*** END OF THIS PROJECT GUTENBERG EBOOK GRIMMS' FAIRY TALES *** + +***** This file should be named 2591.txt or 2591.zip ***** +This and all associated files of various formats will be found in: + http://www.gutenberg.org/2/5/9/2591/ + +Produced by Emma Dudding, John Bickers, and Dagny + +Updated editions will replace the previous one--the old editions +will be renamed. + +Creating the works from public domain print editions means that no +one owns a United States copyright in these works, so the Foundation +(and you!) can copy and distribute it in the United States without +permission and without paying copyright royalties. Special rules, +set forth in the General Terms of Use part of this license, apply to +copying and distributing Project Gutenberg-tm electronic works to +protect the PROJECT GUTENBERG-tm concept and trademark. Project +Gutenberg is a registered trademark, and may not be used if you +charge for the eBooks, unless you receive specific permission. If you +do not charge anything for copies of this eBook, complying with the +rules is very easy. You may use this eBook for nearly any purpose +such as creation of derivative works, reports, performances and +research. They may be modified and printed and given away--you may do +practically ANYTHING with public domain eBooks. Redistribution is +subject to the trademark license, especially commercial +redistribution. + + + +*** START: FULL LICENSE *** + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase "Project +Gutenberg"), you agree to comply with all the terms of the Full Project +Gutenberg-tm License (available with this file or online at +http://gutenberg.org/license). + + +Section 1. General Terms of Use and Redistributing Project Gutenberg-tm +electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or destroy +all copies of Project Gutenberg-tm electronic works in your possession. +If you paid a fee for obtaining a copy of or access to a Project +Gutenberg-tm electronic work and you do not agree to be bound by the +terms of this agreement, you may obtain a refund from the person or +entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. "Project Gutenberg" is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this agreement +and help preserve free future access to Project Gutenberg-tm electronic +works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" +or PGLAF), owns a compilation copyright in the collection of Project +Gutenberg-tm electronic works. Nearly all the individual works in the +collection are in the public domain in the United States. If an +individual work is in the public domain in the United States and you are +located in the United States, we do not claim a right to prevent you from +copying, distributing, performing, displaying or creating derivative +works based on the work as long as all references to Project Gutenberg +are removed. Of course, we hope that you will support the Project +Gutenberg-tm mission of promoting free access to electronic works by +freely sharing Project Gutenberg-tm works in compliance with the terms of +this agreement for keeping the Project Gutenberg-tm name associated with +the work. You can easily comply with the terms of this agreement by +keeping this work in the same format with its attached full Project +Gutenberg-tm License when you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are in +a constant state of change. If you are outside the United States, check +the laws of your country in addition to the terms of this agreement +before downloading, copying, displaying, performing, distributing or +creating derivative works based on this work or any other Project +Gutenberg-tm work. The Foundation makes no representations concerning +the copyright status of any work in any country outside the United +States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other immediate +access to, the full Project Gutenberg-tm License must appear prominently +whenever any copy of a Project Gutenberg-tm work (any work on which the +phrase "Project Gutenberg" appears, or with which the phrase "Project +Gutenberg" is associated) is accessed, displayed, performed, viewed, +copied or distributed: + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org + +1.E.2. If an individual Project Gutenberg-tm electronic work is derived +from the public domain (does not contain a notice indicating that it is +posted with permission of the copyright holder), the work can be copied +and distributed to anyone in the United States without paying any fees +or charges. If you are redistributing or providing access to a work +with the phrase "Project Gutenberg" associated with or appearing on the +work, you must comply either with the requirements of paragraphs 1.E.1 +through 1.E.7 or obtain permission for the use of the work and the +Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or +1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any additional +terms imposed by the copyright holder. Additional terms will be linked +to the Project Gutenberg-tm License for all works posted with the +permission of the copyright holder found at the beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including any +word processing or hypertext form. However, if you provide access to or +distribute copies of a Project Gutenberg-tm work in a format other than +"Plain Vanilla ASCII" or other format used in the official version +posted on the official Project Gutenberg-tm web site (www.gutenberg.org), +you must, at no additional cost, fee or expense to the user, provide a +copy, a means of exporting a copy, or a means of obtaining a copy upon +request, of the work in its original "Plain Vanilla ASCII" or other +form. Any alternate format must include the full Project Gutenberg-tm +License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works provided +that + +- You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is + owed to the owner of the Project Gutenberg-tm trademark, but he + has agreed to donate royalties under this paragraph to the + Project Gutenberg Literary Archive Foundation. Royalty payments + must be paid within 60 days following each date on which you + prepare (or are legally required to prepare) your periodic tax + returns. Royalty payments should be clearly marked as such and + sent to the Project Gutenberg Literary Archive Foundation at the + address specified in Section 4, "Information about donations to + the Project Gutenberg Literary Archive Foundation." + +- You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or + destroy all copies of the works possessed in a physical medium + and discontinue all use of and all access to other copies of + Project Gutenberg-tm works. + +- You provide, in accordance with paragraph 1.F.3, a full refund of any + money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days + of receipt of the work. + +- You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm +electronic work or group of works on different terms than are set +forth in this agreement, you must obtain permission in writing from +both the Project Gutenberg Literary Archive Foundation and Michael +Hart, the owner of the Project Gutenberg-tm trademark. Contact the +Foundation as set forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +public domain works in creating the Project Gutenberg-tm +collection. Despite these efforts, Project Gutenberg-tm electronic +works, and the medium on which they may be stored, may contain +"Defects," such as, but not limited to, incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other intellectual +property infringement, a defective or damaged disk or other medium, a +computer virus, or computer codes that damage or cannot be read by +your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right +of Replacement or Refund" described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium with +your written explanation. The person or entity that provided you with +the defective work may elect to provide a replacement copy in lieu of a +refund. If you received the work electronically, the person or entity +providing it to you may choose to give you a second opportunity to +receive the work electronically in lieu of a refund. If the second copy +is also defective, you may demand a refund in writing without further +opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of damages. +If any disclaimer or limitation set forth in this agreement violates the +law of the state applicable to this agreement, the agreement shall be +interpreted to make the maximum disclaimer or limitation permitted by +the applicable state law. The invalidity or unenforceability of any +provision of this agreement shall not void the remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in accordance +with this agreement, and any volunteers associated with the production, +promotion and distribution of Project Gutenberg-tm electronic works, +harmless from all liability, costs and expenses, including legal fees, +that arise directly or indirectly from any of the following which you do +or cause to occur: (a) distribution of this or any Project Gutenberg-tm +work, (b) alteration, modification, or additions or deletions to any +Project Gutenberg-tm work, and (c) any Defect you cause. + + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of computers +including obsolete, old, middle-aged and new computers. It exists +because of the efforts of hundreds of volunteers and donations from +people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need, is critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future generations. +To learn more about the Project Gutenberg Literary Archive Foundation +and how your efforts and donations can help, see Sections 3 and 4 +and the Foundation web page at http://www.pglaf.org. + + +Section 3. Information about the Project Gutenberg Literary Archive +Foundation + +The Project Gutenberg Literary Archive Foundation is a non profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Its 501(c)(3) letter is posted at +http://pglaf.org/fundraising. Contributions to the Project Gutenberg +Literary Archive Foundation are tax deductible to the full extent +permitted by U.S. federal laws and your state's laws. + +The Foundation's principal office is located at 4557 Melan Dr. S. +Fairbanks, AK, 99712., but its volunteers and employees are scattered +throughout numerous locations. Its business office is located at +809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email +business@pglaf.org. Email contact links and up to date contact +information can be found at the Foundation's web site and official +page at http://pglaf.org + +For additional contact information: + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without wide +spread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To +SEND DONATIONS or determine the status of compliance for any +particular state visit http://pglaf.org + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg Web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. +To donate, please visit: http://pglaf.org/donate + + +Section 5. General Information About Project Gutenberg-tm electronic +works. + +Professor Michael S. Hart is the originator of the Project Gutenberg-tm +concept of a library of electronic works that could be freely shared +with anyone. For thirty years, he produced and distributed Project +Gutenberg-tm eBooks with only a loose network of volunteer support. + + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the U.S. +unless a copyright notice is included. Thus, we do not necessarily +keep eBooks in compliance with any particular paper edition. + + +Most people start at our Web site which has the main PG search facility: + + http://www.gutenberg.org + +This Web site includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. \ No newline at end of file From 429f0578622b3a35297acbfc446c7f25ac273fe6 Mon Sep 17 00:00:00 2001 From: LC Date: Thu, 29 May 2014 10:57:28 -0700 Subject: [PATCH 046/135] adding description of tests to ex 4 README --- Exercise04/README.md | 63 +++++++++++++++++++++++++++++++++++--------- 1 file changed, 51 insertions(+), 12 deletions(-) diff --git a/Exercise04/README.md b/Exercise04/README.md index d6259f3..4bb4535 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -1,6 +1,8 @@ List Operations =============== +### A few things about lists + First, work through the following resources on lists: * http://learnpythonthehardway.org/book/ex32.html @@ -12,24 +14,59 @@ First, work through the following resources on lists: * http://docs.python.org/tutorial/datastructures.html#more-on-lists --> stop reading before section 5.1.1 -In this directory there are two files, list_operations.py and -test_list_operations.py. Try running "python test_list_operations.py" at the CLI -prompt. You should see a lot of console output that ends with the following text: +### A few things about tests + +#### Some background reading: + +http://learnpythonthehardway.org/book/ex47.html + +#### What's going on here? + +In this exercise directory there are two files: `list_operations.py` and +`test_list_operations.py`. + +`list_operations.py` contains lots of empty functions that take an input list and don't do anything. +`test_list_operations.py` contains lots of full functions that ... ? Well, let's find out. + +####Try it out! + +Try running `python test_list_operations.py` at the CLI prompt. You should see a lot of console output that ends with the following text: ``` ---------------------------------------------------------------------- Ran 25 tests in 0.007s FAILED (failures=25) ``` -The test_list_operations.py file contains tests for the functions defined in -list_operations.py. All the tests are failing because none of the functions are -implemented correctly. Your job is to write correct implementations for all the -functions in list_operations.py. - -To check your work, you can run the test_list_operations.py file at any time to -get information on the currently failing tests. The failures will be listed in -alphabetical order by function name. When all the tests pass, you will see only -the following output: + +Wow, 25 failures. That doesn't sound good. What just happened? + + +Well, `test_list_operations.py` just ran 25 'tests' on `list_operations.py` and none of them worked. How did it do that? + +####What's a test? + +Each function in `test_list_operations.py` (which I will now refer to as a test) does four things: +1. Gets some sample data (initialized in `setUp()` and passed in to each function with `self` -- more on this on a later date) +2. Sends the sample data through a `list_operations.py` function (there's one test function for each regular function) +3. Defines what the correct output for each function should be based on the input +4. Tests whether the result of the `list_operations.py` function matches the expected input ( it assertsEqual-ity ) + +If all of the asserted equalness turns out true, then your test passes. If any of them fails, your test fails. +All of your tests failed because, obviously, there's nothing in any of your `list_operation` functions. So whatever your function returns (it returns nothing) doesn't match what the test expects (very specific things, including not nothing). + +For example: `test_1_A_head()` checks the function `head()` in `list_operations.py`. It asserts that the result of calling the function `head()` with the test data `months` should result in `'Jan'`. + +One thing to note is that `test_1_A_head()` is laid out differently than a test like `test_1_J_replace_head()`. The latter calls the function first, then checks the result in a different step. **This is important!** Why? + +When a test fails, it will print the un-matching-ness in the terminal. This may be helpful for troubleshooting your list operators. Also, sometimes you may see something like: +``` +FAILED (failures=24, errors=1) +``` +Don't get too excited that your failure number has gone down by one -- an error means that the function call errored out when the test called it. You'll be able to see the error message it returned if you scroll up in the terminal to that test's section. + +### Go! + +Your mission is to get all the tests to pass by actually writing the functions in `list_operations.py`. When you've succeeded, you'll see only this output when you run your tests: ``` ......................... ---------------------------------------------------------------------- @@ -37,3 +74,5 @@ Ran 25 tests in 0.002s OK ``` + +[](http://bit.ly/1k2hxUv) From 8bee64bbed0161ebbe509e07e90f9e5321dc1b82 Mon Sep 17 00:00:00 2001 From: LC Date: Thu, 29 May 2014 15:24:06 -0700 Subject: [PATCH 047/135] combining ex 6-7 writeup --- Exercise06/README.md | 62 +++++++++++++++++++++++++++++++++++++++----- Exercise07/README.md | 43 +++++------------------------- 2 files changed, 63 insertions(+), 42 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 23b7c9d..daa20d6 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -1,8 +1,10 @@ Exercise 06: Files and dictionaries ======= -Introduction --------- +##Dictionaries + +###What is a dictionary? + Imagine a list as being a numbered sequence of data. ```python fish = ["shark", "ray", "halibut", "tuna", "squid"] @@ -29,8 +31,9 @@ We would then need another way of specifying a list where each element is named. fish = {"deep ocean": "anglerfish", "amazon river": "candiru", "lake": "bass", "shallow river": "trout"} ``` -This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. A dictionary is a collection of 'key-value pairs'. The key 'deep ocean' _maps_ to the value 'anglerfish'. +This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. __A dictionary is a collection of 'key-value pairs'__. The key 'deep ocean' _maps_ to the value 'anglerfish'. +###Why Use a dictionary? Imagine you were writing a program to keep track of user scores in a game. If you only had arrays, you might do something like this: ``` names = ["Bob", "Joe", "Jack", "Jane"] @@ -50,6 +53,9 @@ scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} print "Joe's score is %d" % (scores['Joe']) => Joe's score is 3 ``` + +###Some useful methods: +####get() Dictionaries have a method called 'get' which allows you to have a default value in case a key does not exist beforehand. ``` scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} @@ -60,16 +66,60 @@ print scores.get("Bob", 0) # The second argument is the fallback number if the k print scores.get("Billy", 0) # Billy doesn't exist in the dictionary, so return the fallback instead => 0 ``` -Resources: + +####iteritems() +Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. + +For example: +```python +my_dict = {'a': 1, 'b': 2, 'c': 3} +for key, value in my_dict.iteritems(): + print "Key == %r, value == %r" % (key, value) +``` +Prints: +``` +Key == 'a', value == 1 +Key == 'b', value == 2 +Key == 'c', value == 3 +``` +This introduces two loop variables, 'key' and 'value', that will store the key +and value elements of each dictionary entry in turn. + + +###Dictionary Resources: +* http://learnpythonthehardway.org/book/ex39.html +* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://www.learnpython.org/en/Dictionaries +* http://docs.python.org/library/stdtypes.html#mapping-types-dict + + + + +##File Parsing + +###Read lines from a file +In exercise 5 you read a file and processed one character at a time. Files can also be iterated line-by-line, using a for loop on the file directly. + +For example: +```python +twain = open('twain.txt') +for line in twain: + # Do something +``` +The loop variable ```line``` will store each line of the file in turn. + +### File manipulation Resources (and sometimes strings): * http://learnpythonthehardway.org/book/ex15.html * http://learnpythonthehardway.org/book/ex16.html * http://learnpythonthehardway.org/book/ex17.html * http://docs.python.org/tutorial/inputoutput.html#methods-of-file-objects -* http://learnpythonthehardway.org/book/ex39.html -* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://docs.python.org/library/stdtypes.html#string-methods * http://stackoverflow.com/a/3437070 + + + Description ------- In this directory, you will find a text file, ```scores.txt```, containing a series of local restaurant ratings. Each line looks like this: diff --git a/Exercise07/README.md b/Exercise07/README.md index 786f80a..a2fb307 100644 --- a/Exercise07/README.md +++ b/Exercise07/README.md @@ -3,38 +3,15 @@ Exercise 7: Files and dicts Introduction ------------ -Files can also be iterated line-by-line, using a for loop on the file directly. +All of the material you need to complete this exercise has been covered previously, especially in [exercise 6](https://github.com/hackbrightacademy/Hackbright-Curriculum/tree/master/Exercise06). -For example: +As a further hint, you may find the following methods useful: ```python -twain = open('twain.txt') -for line in twain: - # Do something -``` -The loop variable ```line``` will store each line of the file in turn. - -Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. - -For example: -```python -my_dict = {'a': 1, 'b': 2, 'c': 3} -for key, value in my_dict.iteritems(): - print "Key == %r, value == %r" % (key, value) -``` -Prints: -``` -Key == 'a', value == 1 -Key == 'b', value == 2 -Key == 'c', value == 3 +string.split() +string.strip() +dict.get() +dict.iteritems() ``` -This introduces two loop variables, 'key' and 'value', that will store the key -and value elements of each dictionary entry in turn. - -Resources: -* http://learnpythonthehardway.org/book/ex39.html -* http://www.learnpython.org/en/Dictionaries -* http://docs.python.org/library/stdtypes.html#string-methods -* http://docs.python.org/library/stdtypes.html#mapping-types-dict Problem Description ------------------- @@ -87,13 +64,7 @@ wives. 1 were 1 cats 1 ``` -You may find the following methods useful: -```python -string.split() -string.strip() -dict.get() -dict.iteritems() -``` + We have provided a file 'twain.txt' for you to test your code on. Extra Credit From 04a3b55742809215b661eb7084672159876ad690 Mon Sep 17 00:00:00 2001 From: LC Date: Thu, 29 May 2014 15:24:06 -0700 Subject: [PATCH 048/135] combining ex 6-7 writeup --- Exercise06/README.md | 62 +++++++++++++++++++++++++++++++++++++++----- Exercise07/README.md | 43 +++++------------------------- 2 files changed, 63 insertions(+), 42 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 23b7c9d..6b0ae2b 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -1,8 +1,10 @@ Exercise 06: Files and dictionaries ======= -Introduction --------- +##Dictionaries + +###What is a dictionary? + Imagine a list as being a numbered sequence of data. ```python fish = ["shark", "ray", "halibut", "tuna", "squid"] @@ -29,8 +31,9 @@ We would then need another way of specifying a list where each element is named. fish = {"deep ocean": "anglerfish", "amazon river": "candiru", "lake": "bass", "shallow river": "trout"} ``` -This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. A dictionary is a collection of 'key-value pairs'. The key 'deep ocean' _maps_ to the value 'anglerfish'. +This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. __A dictionary is a collection of 'key-value pairs'__. The key 'deep ocean' _maps_ to the value 'anglerfish'. +###Why use a dictionary? Imagine you were writing a program to keep track of user scores in a game. If you only had arrays, you might do something like this: ``` names = ["Bob", "Joe", "Jack", "Jane"] @@ -50,6 +53,9 @@ scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} print "Joe's score is %d" % (scores['Joe']) => Joe's score is 3 ``` + +###Some useful methods: +####get() Dictionaries have a method called 'get' which allows you to have a default value in case a key does not exist beforehand. ``` scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} @@ -60,16 +66,60 @@ print scores.get("Bob", 0) # The second argument is the fallback number if the k print scores.get("Billy", 0) # Billy doesn't exist in the dictionary, so return the fallback instead => 0 ``` -Resources: + +####iteritems() +Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. + +For example: +```python +my_dict = {'a': 1, 'b': 2, 'c': 3} +for key, value in my_dict.iteritems(): + print "Key == %r, value == %r" % (key, value) +``` +Prints: +``` +Key == 'a', value == 1 +Key == 'b', value == 2 +Key == 'c', value == 3 +``` +This introduces two loop variables, 'key' and 'value', that will store the key +and value elements of each dictionary entry in turn. + + +###Dictionary Resources: +* http://learnpythonthehardway.org/book/ex39.html +* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://www.learnpython.org/en/Dictionaries +* http://docs.python.org/library/stdtypes.html#mapping-types-dict + + + + +##File Parsing + +###Read lines from a file +In exercise 5 you read a file and processed one character at a time. Files can also be iterated line-by-line, using a for loop on the file directly. + +For example: +```python +twain = open('twain.txt') +for line in twain: + # Do something +``` +The loop variable ```line``` will store each line of the file in turn. + +### File manipulation Resources (and sometimes strings): * http://learnpythonthehardway.org/book/ex15.html * http://learnpythonthehardway.org/book/ex16.html * http://learnpythonthehardway.org/book/ex17.html * http://docs.python.org/tutorial/inputoutput.html#methods-of-file-objects -* http://learnpythonthehardway.org/book/ex39.html -* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://docs.python.org/library/stdtypes.html#string-methods * http://stackoverflow.com/a/3437070 + + + Description ------- In this directory, you will find a text file, ```scores.txt```, containing a series of local restaurant ratings. Each line looks like this: diff --git a/Exercise07/README.md b/Exercise07/README.md index 786f80a..a2fb307 100644 --- a/Exercise07/README.md +++ b/Exercise07/README.md @@ -3,38 +3,15 @@ Exercise 7: Files and dicts Introduction ------------ -Files can also be iterated line-by-line, using a for loop on the file directly. +All of the material you need to complete this exercise has been covered previously, especially in [exercise 6](https://github.com/hackbrightacademy/Hackbright-Curriculum/tree/master/Exercise06). -For example: +As a further hint, you may find the following methods useful: ```python -twain = open('twain.txt') -for line in twain: - # Do something -``` -The loop variable ```line``` will store each line of the file in turn. - -Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. - -For example: -```python -my_dict = {'a': 1, 'b': 2, 'c': 3} -for key, value in my_dict.iteritems(): - print "Key == %r, value == %r" % (key, value) -``` -Prints: -``` -Key == 'a', value == 1 -Key == 'b', value == 2 -Key == 'c', value == 3 +string.split() +string.strip() +dict.get() +dict.iteritems() ``` -This introduces two loop variables, 'key' and 'value', that will store the key -and value elements of each dictionary entry in turn. - -Resources: -* http://learnpythonthehardway.org/book/ex39.html -* http://www.learnpython.org/en/Dictionaries -* http://docs.python.org/library/stdtypes.html#string-methods -* http://docs.python.org/library/stdtypes.html#mapping-types-dict Problem Description ------------------- @@ -87,13 +64,7 @@ wives. 1 were 1 cats 1 ``` -You may find the following methods useful: -```python -string.split() -string.strip() -dict.get() -dict.iteritems() -``` + We have provided a file 'twain.txt' for you to test your code on. Extra Credit From ff19d0c0ff6685c0b56a32576d9d13651ad39f64 Mon Sep 17 00:00:00 2001 From: Lindsay Date: Fri, 30 May 2014 16:15:54 -0700 Subject: [PATCH 049/135] Folding in ex7 instructions --- Exercise06/README.md | 62 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 23b7c9d..6b0ae2b 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -1,8 +1,10 @@ Exercise 06: Files and dictionaries ======= -Introduction --------- +##Dictionaries + +###What is a dictionary? + Imagine a list as being a numbered sequence of data. ```python fish = ["shark", "ray", "halibut", "tuna", "squid"] @@ -29,8 +31,9 @@ We would then need another way of specifying a list where each element is named. fish = {"deep ocean": "anglerfish", "amazon river": "candiru", "lake": "bass", "shallow river": "trout"} ``` -This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. A dictionary is a collection of 'key-value pairs'. The key 'deep ocean' _maps_ to the value 'anglerfish'. +This is called a dictionary in python. It's also called a hashtable, or a hashmap, or very non-specifically, a map. __A dictionary is a collection of 'key-value pairs'__. The key 'deep ocean' _maps_ to the value 'anglerfish'. +###Why use a dictionary? Imagine you were writing a program to keep track of user scores in a game. If you only had arrays, you might do something like this: ``` names = ["Bob", "Joe", "Jack", "Jane"] @@ -50,6 +53,9 @@ scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} print "Joe's score is %d" % (scores['Joe']) => Joe's score is 3 ``` + +###Some useful methods: +####get() Dictionaries have a method called 'get' which allows you to have a default value in case a key does not exist beforehand. ``` scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} @@ -60,16 +66,60 @@ print scores.get("Bob", 0) # The second argument is the fallback number if the k print scores.get("Billy", 0) # Billy doesn't exist in the dictionary, so return the fallback instead => 0 ``` -Resources: + +####iteritems() +Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. + +For example: +```python +my_dict = {'a': 1, 'b': 2, 'c': 3} +for key, value in my_dict.iteritems(): + print "Key == %r, value == %r" % (key, value) +``` +Prints: +``` +Key == 'a', value == 1 +Key == 'b', value == 2 +Key == 'c', value == 3 +``` +This introduces two loop variables, 'key' and 'value', that will store the key +and value elements of each dictionary entry in turn. + + +###Dictionary Resources: +* http://learnpythonthehardway.org/book/ex39.html +* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://www.learnpython.org/en/Dictionaries +* http://docs.python.org/library/stdtypes.html#mapping-types-dict + + + + +##File Parsing + +###Read lines from a file +In exercise 5 you read a file and processed one character at a time. Files can also be iterated line-by-line, using a for loop on the file directly. + +For example: +```python +twain = open('twain.txt') +for line in twain: + # Do something +``` +The loop variable ```line``` will store each line of the file in turn. + +### File manipulation Resources (and sometimes strings): * http://learnpythonthehardway.org/book/ex15.html * http://learnpythonthehardway.org/book/ex16.html * http://learnpythonthehardway.org/book/ex17.html * http://docs.python.org/tutorial/inputoutput.html#methods-of-file-objects -* http://learnpythonthehardway.org/book/ex39.html -* http://docs.python.org/tutorial/datastructures.html#dictionaries +* http://docs.python.org/library/stdtypes.html#string-methods * http://stackoverflow.com/a/3437070 + + + Description ------- In this directory, you will find a text file, ```scores.txt```, containing a series of local restaurant ratings. Each line looks like this: From a710caf1ce1e4a8b198161602bd39ca71ad39852 Mon Sep 17 00:00:00 2001 From: Lindsay Date: Fri, 30 May 2014 16:16:49 -0700 Subject: [PATCH 050/135] Moved content to ex 6. --- Exercise07/README.md | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/Exercise07/README.md b/Exercise07/README.md index 786f80a..a2fb307 100644 --- a/Exercise07/README.md +++ b/Exercise07/README.md @@ -3,38 +3,15 @@ Exercise 7: Files and dicts Introduction ------------ -Files can also be iterated line-by-line, using a for loop on the file directly. +All of the material you need to complete this exercise has been covered previously, especially in [exercise 6](https://github.com/hackbrightacademy/Hackbright-Curriculum/tree/master/Exercise06). -For example: +As a further hint, you may find the following methods useful: ```python -twain = open('twain.txt') -for line in twain: - # Do something -``` -The loop variable ```line``` will store each line of the file in turn. - -Dictionaries can also be iterated entry-by-entry, using the method ```iteritems()```. - -For example: -```python -my_dict = {'a': 1, 'b': 2, 'c': 3} -for key, value in my_dict.iteritems(): - print "Key == %r, value == %r" % (key, value) -``` -Prints: -``` -Key == 'a', value == 1 -Key == 'b', value == 2 -Key == 'c', value == 3 +string.split() +string.strip() +dict.get() +dict.iteritems() ``` -This introduces two loop variables, 'key' and 'value', that will store the key -and value elements of each dictionary entry in turn. - -Resources: -* http://learnpythonthehardway.org/book/ex39.html -* http://www.learnpython.org/en/Dictionaries -* http://docs.python.org/library/stdtypes.html#string-methods -* http://docs.python.org/library/stdtypes.html#mapping-types-dict Problem Description ------------------- @@ -87,13 +64,7 @@ wives. 1 were 1 cats 1 ``` -You may find the following methods useful: -```python -string.split() -string.strip() -dict.get() -dict.iteritems() -``` + We have provided a file 'twain.txt' for you to test your code on. Extra Credit From af380bc6a793834ee4d0b11db64dcc3f091b6438 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 4 Jun 2014 11:38:20 -0700 Subject: [PATCH 051/135] Update README.md --- Exercise02/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index 52b74a8..dd26b49 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -37,7 +37,7 @@ Why is this useful? Well, when two or more programmers collaborate on a project, One way of thinking about it is like after-market parts for cars. As long as the screws and holes are in the right positions at the right sizes, the pieces can be bolted together even though they come from different manufacturers. -Resources: +Do These first: * http://learnpythonthehardway.org/book/ex3.html * http://learnpythonthehardway.org/book/ex18.html From caf51eecb42bbaf6cec8a93faba4c48194098cf9 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 4 Jun 2014 11:42:33 -0700 Subject: [PATCH 052/135] Update README.md --- Exercise02/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index dd26b49..cc5f2ee 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -37,7 +37,7 @@ Why is this useful? Well, when two or more programmers collaborate on a project, One way of thinking about it is like after-market parts for cars. As long as the screws and holes are in the right positions at the right sizes, the pieces can be bolted together even though they come from different manufacturers. -Do These first: +##### Do These first: * http://learnpythonthehardway.org/book/ex3.html * http://learnpythonthehardway.org/book/ex18.html @@ -46,7 +46,7 @@ Do These first: * http://www.learnpython.org/en/Variables_and_Types * http://www.learnpython.org/en/Functions -Concepts required: +##### Concepts required: * functions * arithmetic * return values From 6dc6742008c9523b2a49dbb7026b2ef3678c15d2 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 4 Jun 2014 11:43:36 -0700 Subject: [PATCH 053/135] Update README.md --- Exercise03/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise03/README.md b/Exercise03/README.md index 9f3d53b..11a1475 100644 --- a/Exercise03/README.md +++ b/Exercise03/README.md @@ -58,7 +58,7 @@ The psuedocode for our REPL will look like this: otherwise decide which math function to call based on the tokens we read -Resources: +##### Resources: * http://learnpythonthehardway.org/book/ex3.html * http://learnpythonthehardway.org/book/ex18.html @@ -71,7 +71,7 @@ Resources: * http://www.learnpython.org/en/Functions * http://docs.python.org/library/functions.html#int -Concepts required: +###### Concepts required: * functions * arithmetic * return values From e4da1f8dcb00f7bfe2db530bede83c99aabb4ad7 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 4 Jun 2014 11:44:18 -0700 Subject: [PATCH 054/135] Update README.md --- Exercise03/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise03/README.md b/Exercise03/README.md index 11a1475..5bbd208 100644 --- a/Exercise03/README.md +++ b/Exercise03/README.md @@ -58,7 +58,7 @@ The psuedocode for our REPL will look like this: otherwise decide which math function to call based on the tokens we read -##### Resources: +##### Do These First: * http://learnpythonthehardway.org/book/ex3.html * http://learnpythonthehardway.org/book/ex18.html From 846f0d15f76f73859f6f7dec55e4588c979b14ff Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 4 Jun 2014 11:44:39 -0700 Subject: [PATCH 055/135] Update README.md --- Exercise03/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise03/README.md b/Exercise03/README.md index 5bbd208..7db97f4 100644 --- a/Exercise03/README.md +++ b/Exercise03/README.md @@ -71,7 +71,7 @@ The psuedocode for our REPL will look like this: * http://www.learnpython.org/en/Functions * http://docs.python.org/library/functions.html#int -###### Concepts required: +##### Concepts required: * functions * arithmetic * return values From bc166e8b0d6aa4bbde7db8a7101a5cc87a1beb86 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 5 Jun 2014 12:40:33 -0700 Subject: [PATCH 056/135] Update README.md --- Exercise05/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Exercise05/README.md b/Exercise05/README.md index 7b714d1..cbde979 100644 --- a/Exercise05/README.md +++ b/Exercise05/README.md @@ -21,15 +21,14 @@ Once a file has been read, it can be iterated through as if it were a list: for char in filetext: print char ``` -Resources: - +##### Do These First: * http://learnpythonthehardway.org/book/ex15.html * http://learnpythonthehardway.org/book/ex16.html * http://learnpythonthehardway.org/book/ex17.html * http://www.asciitable.com/ * http://docs.python.org/library/functions.html#ord -Useful Concepts: +##### Useful Concepts: * string.lower() * ord() From 9fd84fde007429236c3e423b627d23235df53f61 Mon Sep 17 00:00:00 2001 From: Lindsay Date: Thu, 5 Jun 2014 16:26:29 -0700 Subject: [PATCH 057/135] Update README.md Renaming resource section --- Exercise06/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 6b0ae2b..02d9365 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -86,7 +86,7 @@ This introduces two loop variables, 'key' and 'value', that will store the key and value elements of each dictionary entry in turn. -###Dictionary Resources: +###Dictionary Exercises: * http://learnpythonthehardway.org/book/ex39.html * http://docs.python.org/tutorial/datastructures.html#dictionaries * http://www.learnpython.org/en/Dictionaries @@ -108,7 +108,7 @@ for line in twain: ``` The loop variable ```line``` will store each line of the file in turn. -### File manipulation Resources (and sometimes strings): +### File manipulation Exercises (and sometimes strings): * http://learnpythonthehardway.org/book/ex15.html * http://learnpythonthehardway.org/book/ex16.html * http://learnpythonthehardway.org/book/ex17.html From 66ee4e80c589628e283b2bdebd0f06d1cfbda223 Mon Sep 17 00:00:00 2001 From: Steague Date: Fri, 6 Jun 2014 11:13:03 -0700 Subject: [PATCH 058/135] Editing the description for part 2 allowing you to use functions from part 2 --- Exercise04/list_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index e1ac1c6..8c66a12 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -87,7 +87,7 @@ def delete_middle(input_list): ----------------------------------- In this section you will implement your own versions of the standard list methods. -You should use only the primitive operations from Part 1 in your implementations. +You should use only the primitive operations from Part 1 and 2 in your implementations. For loops are also allowed, such as the following: for element in some_list: # Do something with element From d734b5e6d2b8b37dcadf42731064e1d0e5e3caa2 Mon Sep 17 00:00:00 2001 From: Laura Kelly Date: Fri, 6 Jun 2014 12:21:13 -0700 Subject: [PATCH 059/135] Adding note that students may not use dictionaries in Ex05 : --- Exercise05/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Exercise05/README.md b/Exercise05/README.md index cbde979..2a8f63c 100644 --- a/Exercise05/README.md +++ b/Exercise05/README.md @@ -47,6 +47,8 @@ Write a program, lettercount.py, that opens a file named on the command line and 0 ... +Note: you may not use dictionaries in your program for this exercise. + Once you've produced appropriate output, you can visualize it by piping the contents of your program to the 'spark' utility installed on your computer: $ python lettercount.py inputfile.txt | spark From fccc4356df42832b7df748ca9f54f816a8a54fa9 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Mon, 9 Jun 2014 10:25:27 -0700 Subject: [PATCH 060/135] Update README.md --- Exercise06/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 02d9365..5153f7b 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -86,7 +86,7 @@ This introduces two loop variables, 'key' and 'value', that will store the key and value elements of each dictionary entry in turn. -###Dictionary Exercises: +###Dictionary Exercises (do these first): * http://learnpythonthehardway.org/book/ex39.html * http://docs.python.org/tutorial/datastructures.html#dictionaries * http://www.learnpython.org/en/Dictionaries From cfc3287727e9a6f2f6a66b91aa60e5c66b0b7a22 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Tue, 10 Jun 2014 12:39:44 -0700 Subject: [PATCH 061/135] Update README.md --- Exercise06/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 5153f7b..d156dc9 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -87,7 +87,7 @@ and value elements of each dictionary entry in turn. ###Dictionary Exercises (do these first): -* http://learnpythonthehardway.org/book/ex39.html +* http://learnpythonthehardway.org/book/ex39.html (Stop at "Making Your Own Dictionary Functions") * http://docs.python.org/tutorial/datastructures.html#dictionaries * http://www.learnpython.org/en/Dictionaries * http://docs.python.org/library/stdtypes.html#mapping-types-dict From 3ad9c3701bf044a2f9473ff6441fb1eb13739777 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Tue, 10 Jun 2014 13:47:50 -0700 Subject: [PATCH 062/135] Update README.md --- Exercise08/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise08/README.md b/Exercise08/README.md index 646835b..8983ab8 100644 --- a/Exercise08/README.md +++ b/Exercise08/README.md @@ -103,4 +103,4 @@ Do any of the following 1. See what happens when you mix two different authors together as a single source 2. Modify the program to allow any number of words to use as keys, ie: choose the size of your n-gram used in your chain -3. Create a new Twitter persona and wire up your markov program with the twitter module (import twitter) to produce random tweets. +3. Create a new Twitter persona and wire up your markov program with the twitter module (import twitter) to produce random tweets. (docs are [here](https://code.google.com/p/python-twitter/)). The twitter module is already installed on the lab machines. From d2e31e17d7fa0aeac8facb428cf7a379f399b6af Mon Sep 17 00:00:00 2001 From: Laura Kelly Date: Tue, 10 Jun 2014 17:09:20 -0700 Subject: [PATCH 063/135] adding warning about API credentials and Github to Exercise08 --- Exercise08/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise08/README.md b/Exercise08/README.md index 8983ab8..daef070 100644 --- a/Exercise08/README.md +++ b/Exercise08/README.md @@ -103,4 +103,4 @@ Do any of the following 1. See what happens when you mix two different authors together as a single source 2. Modify the program to allow any number of words to use as keys, ie: choose the size of your n-gram used in your chain -3. Create a new Twitter persona and wire up your markov program with the twitter module (import twitter) to produce random tweets. (docs are [here](https://code.google.com/p/python-twitter/)). The twitter module is already installed on the lab machines. +3. Create a new Twitter persona and wire up your markov program with the twitter module (import twitter) to produce random tweets. (docs are [here](https://code.google.com/p/python-twitter/)). The twitter module is already installed on the lab machines. NOTE: Do not publish your Twitter API credentials to GitHub! Create a file with your credentials and then make Git ignore it with .gitignore From eb0f1266aa857d3ec66c086e8b43207d2d2e3bbd Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Thu, 12 Jun 2014 11:44:37 -0700 Subject: [PATCH 064/135] moved old skills2, added new one --- .../airbnb}/reservation.py | 0 .../airbnb}/reservations.csv | 0 {skills2 => Whiteboarding/airbnb}/units.csv | 0 skills2/skills.py | 12 --- skills2/skills2.py | 75 +++++++++++++++++++ 5 files changed, 75 insertions(+), 12 deletions(-) rename {skills2 => Whiteboarding/airbnb}/reservation.py (100%) rename {skills2 => Whiteboarding/airbnb}/reservations.csv (100%) rename {skills2 => Whiteboarding/airbnb}/units.csv (100%) delete mode 100644 skills2/skills.py create mode 100644 skills2/skills2.py diff --git a/skills2/reservation.py b/Whiteboarding/airbnb/reservation.py similarity index 100% rename from skills2/reservation.py rename to Whiteboarding/airbnb/reservation.py diff --git a/skills2/reservations.csv b/Whiteboarding/airbnb/reservations.csv similarity index 100% rename from skills2/reservations.csv rename to Whiteboarding/airbnb/reservations.csv diff --git a/skills2/units.csv b/Whiteboarding/airbnb/units.csv similarity index 100% rename from skills2/units.csv rename to Whiteboarding/airbnb/units.csv diff --git a/skills2/skills.py b/skills2/skills.py deleted file mode 100644 index 886cc65..0000000 --- a/skills2/skills.py +++ /dev/null @@ -1,12 +0,0 @@ -# Write a function that takes an iterable (something you can loop through, ie: string, list, or tuple) and produces a dictionary with all distinct elements as the keys, and the number of each element as the value -def count_unique(some_iterable): - return {} - -# Given two lists, (without using the keyword 'in' or the method 'index') return a list of all common items shared between both lists -def common_items(list1, list2): - return [] - -# Given two lists, (without using the keyword 'in' or the method 'index') return a list of all common items shared between both lists. This time, use a dictionary as part of your solution. -def common_items2(list1, list2): - return [] - diff --git a/skills2/skills2.py b/skills2/skills2.py new file mode 100644 index 0000000..0f00770 --- /dev/null +++ b/skills2/skills2.py @@ -0,0 +1,75 @@ +string1 = "I do not like green eggs and ham." +list1 = [2, 5, 12, 6, 1, -5, 8, 5, 6, -2, 2, 27] +list2 = [-5, 6, 4, 8, 15, 16, 23, 42, 2, 7] +words = ["I", "do", "not", "like", "green", "eggs", "and", "ham", "I", "do", "not", "like", "them", "San", "I", "am"] + +""" +Write a function that takes a string and produces a dictionary with +all distinct elements as the keys, and the number of each element as +the value +Bonus: do the same for a file (i.e. twain.txt) +""" +def count_unique(string1): + pass + +""" +Given two lists, (without using the keyword 'in' or the method 'index') +return a list of all common items shared between both lists +""" +def common_items(list1, list2): + pass + +""" +Given two lists, (without using the keyword 'in' or the method 'index') +return a list of all common items shared between both lists. This time, +use a dictionary as part of your solution. +""" +def common_items2(list1, list2): + pass + +""" +Given a list of numbers, return list of number pairs that sum to zero +""" +def sum_zero(list1): + pass + +""" +Given a list of words, return a list of words with duplicates removed +""" +def find_duplicates(words): + pass + +""" +Given a list of words, print the words in ascending order of length +Bonus: do it on a file instead of the list provided +Bonus: print the words in alphabetical order in ascending order of length +""" +def word_length(words): + pass + +""" +Here’s a table of English to Pirate translations +English Pirate + +sir matey +hotel fleabag inn +student swabbie +boy matey +madam proud beauty +professor foul blaggart +restaurant galley +your yer +excuse arr +students swabbies +are be +lawyer foul blaggart +the th’ +restroom head +my me +hello avast +is be +man matey + +Write a program that asks the user to type in a sentence and then +print the sentece translated to pirate. +""" \ No newline at end of file From d676d65f0bc41a295c0fae1c12c764f29b85536b Mon Sep 17 00:00:00 2001 From: Nicholas Audo Date: Fri, 13 Jun 2014 11:37:30 -0700 Subject: [PATCH 065/135] Convert unicode apostrophes to ascii --- skills2/skills2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skills2/skills2.py b/skills2/skills2.py index 0f00770..2ac3cbd 100644 --- a/skills2/skills2.py +++ b/skills2/skills2.py @@ -48,7 +48,7 @@ def word_length(words): pass """ -Here’s a table of English to Pirate translations +Here's a table of English to Pirate translations English Pirate sir matey @@ -63,7 +63,7 @@ def word_length(words): students swabbies are be lawyer foul blaggart -the th’ +the th' restroom head my me hello avast @@ -72,4 +72,4 @@ def word_length(words): Write a program that asks the user to type in a sentence and then print the sentece translated to pirate. -""" \ No newline at end of file +""" From 31c48efcdf36b0042fce4a5c222c73e0b913d570 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Fri, 13 Jun 2014 13:45:55 -0700 Subject: [PATCH 066/135] Update skills1.py --- skills1/skills1.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skills1/skills1.py b/skills1/skills1.py index d474b1e..1a51a52 100644 --- a/skills1/skills1.py +++ b/skills1/skills1.py @@ -30,11 +30,11 @@ def word_lengths(word_list): # Write a function (using iteration) that sums all the numbers in a list. def sum_numbers(numbers): - return [] + return 0 # Write a function that multiplies all the numbers in a list together. def mult_numbers(numbers): - return [] + return 0 # Write a function that joins all the strings in a list together (without using the join method) and returns a single string. def join_strings(string_list): @@ -42,4 +42,4 @@ def join_strings(string_list): # Write a function that takes a list of integers and returns the average (without using the avg method) def average(numbers): - return None + return 0 From 0c4b9202c0c0b08c4bab3a0ecac507c345692440 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Wed, 18 Jun 2014 18:28:15 -0700 Subject: [PATCH 067/135] adding skills3 --- skills3/README.md | 25 ++++++++++++++ skills3/call.py | 82 ++++++++++++++++++++++++++++++++++++++++++++++ skills3/melons.db | Bin 0 -> 3170304 bytes 3 files changed, 107 insertions(+) create mode 100644 skills3/README.md create mode 100644 skills3/call.py create mode 100644 skills3/melons.db diff --git a/skills3/README.md b/skills3/README.md new file mode 100644 index 0000000..7c43657 --- /dev/null +++ b/skills3/README.md @@ -0,0 +1,25 @@ +Skills 3: Telemarketer Script Revisited +======= + +Introduction +-------- +If you recall from (Homework 7)[https://github.com/hackbrightacademy/Homework/tree/master/Homework07], our marketing department is running a new promotion this week for +all customers who have placed an order for over 20 Watermelons. + +They want to make sure all eligible customers know about it, so +they've asked the Telemarketing Department to start placing calls. + +In (Homework 7)[https://github.com/hackbrightacademy/Homework/tree/master/Homework07], the 'call.py' script used a pair of .csv files to get the data on the customers and the orders. + +Now, we can harness the power of databases to do things the "right" way! Update the 'call.py' script. Some functions have been placed in the script to give you a general idea of the flow we are looking for. + +Some hints to get you started: + +* The database relationships are: +** customers have orders +** orders have order_items (An order may be for more than one type of melon) + +* Start by writing the query to just return one customer record, then expand it to filter for only the customers who have ordered over 20 melons. + +* The database does not currently have a field to track the last time a customer was called. You'll have to add it. + diff --git a/skills3/call.py b/skills3/call.py new file mode 100644 index 0000000..3a42a34 --- /dev/null +++ b/skills3/call.py @@ -0,0 +1,82 @@ +""" +call.py - Telemarketing script that displays the next name + and phone number of a Customer to call. + + This script is used to drive promotions for + specific customers based on their order history. + We only want to call customers that have placed + an order of over 20 Watermelons. + +""" + +import sqlite3 + +DB = None +CONN = None + +# Class definition to store our customer data +class Customer(object): + def __init__(self, id=None, first=None, last=None, telephone=None): + self.first = '' + self.last = '' + self.telephone = '' + pass + + def __str__(self): + output = " Name: %s, %s\n" % (self.last, self.first) + output += "Phone: %s" % self.telephone + + return output + +# Connect to the Database +def connect_to_db(): + global DB, CONN + CONN = sqlite3.connect('melons.db') + + DB = CONN.cursor() + + +# Retrieve the next uncontacted customer record from the database. +# Return the data in a Customer class object. +# +# Remember: Our telemarketers should only be calling customers +# who have placed orders of 20 melons or more. +def get_next_customer(): + c = Customer() + + return c + + +def display_next_to_call(customer): + print "---------------------" + print "Next Customer to call" + print "---------------------\n" + print customer + print "\n" + + +# Update the "last called" column for the customer +# in the database. +def update_customer_called(customer): + pass + +def main(): + connect_to_db() + + done = False + + while not done: + customer = get_next_customer() + display_next_to_call(customer) + + print "Mark this customer as called?" + user_answer = raw_input('(y/n) > ') + + if user_answer.lower() == 'y': + update_customer_called(customer) + else: + done = True + + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/skills3/melons.db b/skills3/melons.db new file mode 100644 index 0000000000000000000000000000000000000000..82b4794c7682874e5f20945a4bd9139e957ea2de GIT binary patch literal 3170304 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 Z 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

8nRSGWD;g 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νEk{aCAE~hB@DCb_QT*lImjABQ=gh$D6fM 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%0ANHT;MY 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≤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

Fv>|v3aVswf0 z5XE*NRJc$rs&M63RBgh8YDz(ki{GLe7o0`)Yjo}y;X8z83*lpg7FX^?ZGVjERv`4a zXfEn;(OlHyy0fUq)nrk>lP-CQa1>!^K%h$uxbiC+f^_h1!WV>}2>8-NG+HobtWQWJ zoJN@N-GFGqRcO)l03CdW@I1o2p71o`Wx`&qH$NaO zHH0~Ytq3c%ODmnLcLopE`vy_}BBB9xl?K!u8sPf^vB7FO_XnaOHLQmCUP^38-N@Ds z&)K>Xs2kblQtSZX6GU7x0pD_nag!;wkl-g!?~OZ4vELAl@MV?QC_u5ph{klVG3BrE zvvhDD;R4}0qDeQxDZ-D4racL>2$XD7>ikXV=gshqlGv;aFKKp=aGCHu!cK){??6#E6yDvdCW zK$o<7fnp@N;x!nHZ%n8q+(#g37{8lh-yvET5bi*7D1bU=|b$Df`R)hos)n6w{z0)B)*!dO$N$t+>VXVv31Zq89sPT1G z}5o^HiWr^M+h`Vb-O~b&j?>5 zx_2TxOd#3spnmJ9z=MuO1nO}P%9w*1k>e*k=UjtGqUTJagpw2SU@}!lGL=j6B|7*E zBE?3a2Ay&iV{YoV?msb>+JexIK+QDuQHp&?xQg&JCAbOHr#(3oqr&n~BTAF-V49UM zo^UIohk-!V(Sw?I4=VB=8|fT1sUGi8jPBXv2E~3y^rS0$QswldjP<;X=Xy0F3`g|I zB2cmRp(d4Hf(O&7J1H8BDO7YBoiUa{b(BF*ok9IJgX$sU6}+Uc9g#@~GwA`dsFi1t z2+DdJFUk6d@I9g*HOzi>6nhuZpCn)ZRTSHW7(lIczyyjdBwR#fZzj+^vwy}|4z-D# z)fA(0$)O+Qd`t)FIS2N|*uWu#7ZHQ{5U9rus-&2Y@Hk?yLdYi2m@}BVVJ;oar3RLJ z7%$0dOUNMP5~wBTjieYARvwjg-Z?yΠ3pjbhX=^Y5kDCIV$_NK1?jp{xv{ra0tP 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%0Au*%ZrMI2!=4}2@cw+w#SIrQg*wcHx?Pm%` zAu*MwXGPns(I${$RZSl1ncdBlLHwcc9R6_cb}ed#_#B?@KFns;{!n<?mwyE9lctadwLWwf ze6H(vSI`yZywll*_OmODy~cF?YtpiJYAu>my`KJtzEMe$@0UyM`|YEpcceMC-)w7m zJ^a7J`qgRN`~kD{LpDobDCTbl?B1!}*HAyMw6KUQY6#EGmW3?tkiNXEu#gOMWfvEf zl=%Do#?0M}`l{9NfeE`0`GG(x4Di&iPNfWK_RZ|>2n%5HW36T-K8w8UjnvvgGFOpL zzFue5ht2$q6jtjh%gCW6`L>-q5+x1@pYyF5=Dz_GCIParLUt_r&RLy;5=z;v-a4hT zZ4ErUJ#qJviYaPQ9+_+^BRdhZn3K>IHDn|!nQXI=nZ5?{^;lAro9FEJ2`@~W%($(t zK;Kn(n`Nt$VFE@f3|noorM1oL^^f20nJ~3;9vOiuNFKeosfk<#Cv$JM$c@KHFM9ah5(a@E(48(UmlQe5~?#yfc4UAZZo!1x2Od{ehNk@6<9 zZatZ`JT67{ecb=`XR~8NU2UJ|<(C#G_b0o9HH*2EQZma@GrwVR{i3qbYM5u$6V|t!fg#MG#)h}&ukOT~GndRfS{CHCx2@t&%98_sEFjO*RSk>D z$8@Vfx3b11v+GBUE-oeazJXEex%fo1$}7(=Q{*>p0d82lI)PVfcB>^NX>j{${UoPi z&5SF^9N?HmwF~N)wX;StrbMPnmN&sHN!id`@)w*FSk{2&2Z|THeOJw=zqXb$U7RXe z5!y9$^4{qSSNpAUhRxl`rESak+LQhAKfd>3a&Di;Ozc>OeVUrWR$oSwP08Zoz#P$2 zy1Udt(F1Bt~GfJ1VFYC@dAAWPZxR7ikCFhgdYwk{* zddslIvzwAfOq<=bpn?3T=j9a^W#>_47X=*uUddij*x}qH;U&`Qj>wq=sEg&M-uBZ! z( z(JWdWNAEx*Qz`SmExbZcY8{#0|Lmvg+v-XSl1Ea@HqNeHGP`!EWu%KljqIj!zt|(m zN>^?{Np^lgUe36H51n&nIM?ccDFkdnJr*!7UfqGRB~P@aVKY0roYBU-(EAk&Zw$S- zlq`|`-MA3EHTNeAqK!>x`>GLz#W|$~fu_@3vh%zBeIzEY^}?dkk}j;;ZzF4OFHd@G z^_~k>$D;Ddk9?X{aQi=47&^A@{nRw|f)X+grL zGM@}dm1L8htCG4v95c$8^-G)b$3qyt4ovO~OFZ*e$58I%X_$F)7h{L?PFq2L>;30S zR^DxUi5y3hoAuiHWd4o2aqeF`k44B58yQf{&Cbos$;}GL|2{-p_DhGB!z53`Y9C5V zZq{Mj4hF2QZZB%@#k`vJ$h)>9d%R$I&FO{=M2K6DHj5iH6%KM>3R zU};mr{5o!la*B?oUbH$IC6szH)3|nSx$1A$J&z=P8g=X3&Sb%^l>Cm@E?{N@>3i4I zfA%cqY`Bq(E6uGPer_p!_wvc2UvZwaC(t|if3f%G;Z2oW+xX7Tu+t%Ffs`o>g+dt% z8JZ?x>P`nJ(3a8`D3cJ{(w2^N01Bd@iDQ%08Bq}xkK<9C=W}@Vs5l^~sGx|bIHPhr zqBwu+S?k$5(Qw{#-s`)*@Av(#>+}z9c6PGYex~)TXS#2!wJ~PL@%ntO3$uK6pf8yn z!w7N7DGOi6X6&np&))y=>y;j0A?sRI+u>(yWJrbUD|a}YHqcb|X4@;|et&GeHcp|m zM2k7PF3<-$J(z_Xr!rJY$uSl9=)6;-kNpFPebar6yA+wJN`Q226>znd=6hT@*+9C> zeB%rmYi{l@)I!vx$wOFzfPyxECnnK%@aTW_eK6&{)<7zx5V{>ZqoO75Cb12>ofqf7 z(rmn4h=7wyp9#$sIcJdyjMGn+G_?EcYAfM>$IPP+!&jE^I#_`4o=2YIZ%2GS9jk+MgE~i*8=V7P5Nlj{% zJPgC6h#c6(>earEfEh9ux^)*TMXEe+{w?*?el!L9mwi{ zQEnA*?P5ue z1W5(AZ)YJJ@s4SaM&14gp9Nd**_q=4mzJK_y1p4)9)^ce?!3}`yW0)yrHlzulPvSr z!7TD%i6*M$_G_?SHwO~IAUOPSj6o0Er6lf*X)pU{4!GnAZH5bYs%_~WkRNAMZY&zj zYwv1lUFZW+SC>PV`wBf)O_@A~nvFb}80~xq_uqYu_LDJd0tr-S8G$k*!i9_#?uxCm zZ~k@h)eqk#yy4ApXM>)*zkL-j1(E~m0>S#0#*%qnppMHHPRJ86-YbtLZtNiJOXRj{ z7IpXf14gPiOs$?bNsSLH&atnzTqT@vfrEpXlk%{n6&j&Ge;yZIv$KJX7lJV()yuKJVD(pR$`i1nekV82!wzhHKo2H?-;oVl zc)QnJ6yF{Wtl#+CmLqPLExoc8ib@GcV&a1QdBA_|&Cc=yKeiB*hey3Rm#9~|tD0nV zM(qI|S$0S3i?}@A@>?(0UUHy%peM(hUI{#s9js-j0}1G*Tia`WOMqS2>(FG%cJePV z_2wx|zuYNf4tE8#U=*SN&Y_IG^3vE!y6=|pUw<`2xB_^Bfj_ggxud!@cHpwUr3T16 zD@&aYx80?j*USB$nu40kRdNCj4wuQ(GqCUK3W!jbz-|ovUtX-)m;V0uS8`K?r=alz zO(wAU0%1Ld9~=EZFu9uXiO!9-tb71dxed4Lab6{+Aq+*r?1tW)&+Ha zwKr%p#NA?^=5b9PJmUY$zYT!`C^lfCj*?SK!dEfA?9hsP(^9tyFEeKHbT{}i7S>eO zHrE0#rGH)#u$DVKS-?~b4AkkE5ZQ?N6U&v(qt-I2p1y;Jp5O3J#$8>3e5^4sw48$W zq1d8(`>i<(Y7I-=5F0`tTvxBwPV5?If{*KJfp>6#+qTK;29kLf1y5?hRml!&sq%*F zuwic11@bV>8ecTr5l6(N`OSttwWoiuVXd1nR}WNZQfX)m}c^ z?s0l@va(${E_urldI5Pd*3f865qQ_U^=tIBzJqTb8vlglm&SmP($6`XS&I=LiB13E z`eg0V=cfH@a^{3w>Jo9(&7DF9&voYp^!RN7n0I5H7K_rM69H?Im>HAk4}-5iH{oH8 z*O~5X_qX}$TS4N0&7%0)J8L@{{EHSk9Cl~6aEqKl&O9cA2lH@pbpub}hqn%zm{hbr zkP9Z!1486OF^J~Act7;Q=9_PEwaH%Sx(fX5NYcp+15Yy&p8~nD3qld6LvA=pIXw1b z){Vpt$!rvy$j#gE8|{G^U>WDAU`RslUVCoT-S6!?Zt~X|*)E{*Z2&9nDrI~b)T!1c zKg1w89=kUy+vdrUD>pMoH$(1s*NqFVn{HIoEobr^uDashM?OpWu`Mtijlwuk?K#EG zQKLr-XI}F8N0VF-@1)O!N>$t0S*sc@1`6y>KXlVhVEUE$QS97rqQNCaA}KtM_N>Ho zwgsl4Nil<>JQf*kkU|K^?`m3&R7J!djR|0sAGDZkV{SWkDe8kgKaG zZ%1B+9cQ%m4nKuamR!39!`U@~sbCUT`@J-M19}~T5R9$0$7?~lR$65aMbh@fRN7ZhKXU({ zZamxO0d`kjlu&7_YaxpvU~h(kbU==}q?N-_;!SR>S4xN3jz74!&0Y_UjM4 zvMS)kWNJpRSx!!7J1{nx`%czrJHAMB;S36+C|(44+Td^QC@lo$TAM?-K_2ui zSO*X=bJpCMtsn`)Sn)f%XZh?NhZow3-RYDU93$!d+8N*=*O%*7R0uD*ls54`Ta z8_jD2Iq()p#2+O_X6(n+wN14(zJrHn4`_el6X8A^%#O9xw8ID*JD-v+NHj2=13|F| zrf9M-UTEtiPpQs#6uevCa|duH33tL8M? zvfVI>|O>8?oG9&1vbz(03!80WJ^b-soJWNGmEi}$i+9|2&FZUjmBtX z!iTrR(by~RWE!9Db-SD_adkDdO+ZVGg{smZm*#t+WAkRg%&JqK-$o`=DdQzaF(+e}L;DtR- zd0skYgDG0I$ng*1F+}-n%#O~$WXyggc4CfS^JZ-JzuH=nI`yh)&TJT1R8-eDH8j`3 zP+M8}$tPu<1(hH!0bN`4j z*w=LivcM$FO^so5Z#3A}#>!GXH*x;*36I;;b09Y5M%gk~Ylola6JY5Fx>RQtl(2oC z+?RSYW{*;+xW>gb*phq)pWC_Pg`I}_z(ggbX-WhkJcTLUcj)Pkksv^lUQ!L}M9mG= zjp&wU`I|cDR>0WBZqLdA(G+D@Xxzk!Jc_4q+DTTZYwH3N&=fQ!rIQmhPm)V26iR=& zK)5rT+7Ktg&ujPBz$#OBu`dTkEUtfQ2x=}bKKF%~r)`1pUrX8~Tn!9RB~kflS=V24!;;a7RmA0w2>7;TozYhPh? zscubR9OdIwHqoe*0>(aA9z{&~cn!1`-bpbIuU&sQ@8>Z&42v*lRN(*3h z(v>qH_dAL+qlGuwgVyByU)fa3@Qs17ls=}>p#+@UqUn48_?-NGD}__gXMqqCo03Iw zB1~c#jDK6H#w>(Z0n-aG9)zu$^UJ73rtUx!F%>lfZwPYbV=R};w~B!=U>$0zn=L<} zx0f`x#B{1}j4;2j5QZu+WCHis1Oi@aa%cM6!ST~V6PxOTIn69s&Gg9LJ!mEOG_yYJ z(P+}M&<_;J1>a-Q`VPLae#f4_{n8f5r2J;OA@mZ0ri}9Ym78wbKHiz_ff>~jMS+FQ zOtFC!%yj}U{=B&$pyqPGcrFL@+jtWlL}9L)a@m%GPFh}BguUJRz-Th*iYj+#E70US zf!&Yp@0$aP7&P68m{>!X+}-GNb5-p-ivemh#;hs3>ij(%FW3iRM$Bwgu!6i0V-dx zeCe^tW$E~2*^GYTl$z)&xepH{%Iz%YKcMyhb~gSunlCqx0#0{3Fv1rky_Qr1eDrG* zeg&@k0k8)@OZux+Xn5VQK>xA6MfaWVJe{Py9`yfqi$2ZEnkwN#p&d>B%YRw|Ot=FC zZ!)0UQJn85(bT>=Zt;%ZFQIVRj3WkZ`F@DLA#j2~5rQ>vPT(%wa^r4F;`l4E?Zzb0 zHidONo8;D&*xR%Rm|zFE3ocTJoy_@BgNLdfeB}Lh;RsBNf#^+pEzH${_+V{2RIYYV z-tsT>xtuvR&`^W9M|lHZ1$XygrHPj5WSmA?D{uUn)$qsG25P`4v?3Q9r(*vu37^Ka zqUU$bT~*)*H9lC#EA=);>^dhJr&)3pShmFKn&x6ecY|4{@LS;QG-v@pdDlM#iXUB)ZRq|j8 zAmp*w7o}|ooCS%4Aso)NQXH)9jE@D6HYDwSr`!QsY-o|SqoD?rPq4Yb`VP##`b!tG zHJ5C;Sf*4aVZ4jeXuS4jVhIQ3`7dDYT^m?Vrg_|e%L2E?o8C9OVaXNC?QR>)^A0!@EQ6ed*2!jDp%#Hn zX=zL)I&8aRj`$Kp2o6{)Y}p8&oiBv?TKx634b7lMWy{X?$Q9hf_sd`{a+g|(I-R#*BYpRi6Ax_^9Ugc3{H}(U z>TZ(A^wmJqfel9`g&qe;=Rq3<6O$~Ek@IvmzX603=2QR^>sE88U(UC833Ss()V{Nl2MlNtjHsbDA2958bc!f`CvgNLtPdDCPU z+mr)Q5@<282BXY)&#kc8K(a5(%htQb5z5yH5`?gnWLVg-6UNb5ZkPMcV7O$%~Fr z4erm1FJ^OKm2Bp&cZm;6c3q$Xtiq(=I0}L>UvG&Wm>$paKG`{I4YZpgzh6;es(=m# zCIw3THSM*F7K88Ec>X^7UOyS8rX9vDPW1t)hRKvEFaSx%T0ozAk z7vFR5OZ}Z5Z+af+KGkE;&#KX4h*|t472cd2*ysdPF)q0gR?7ii= z7qXb*&9=aN@PjZ5!IxxNGRMZ}?VIMGFF&_axHLNlx;JGv8^*u+u(=T$v9H{d4Z^{i z;j-PM2KYRIiM*%j@Upftqcc!Ob%@EQ@nvq!SMfGKxbvC69=jW)tfCrqXb}PkXg)3e z(h}HZV|Qmk(CZZ5kjG)ZMxxb784$O0U{QAm=7CuV0@!##kH6YY-p9wgyVD20`Bjdmy>)GTv$%?-sI<}#{ zT-j7KxC{nwup|WQ{IDy9Hf=$-1KY<+3SmeN>!ppnCmkQ>1N)+jUn{qmF?8q*%)!Je zJ5n%Qc_^CLy$xGyZaMGY-j>1%b>%)3phWAh;*csn!imc6z-%xJ3!FHfpom5LMobs; z;Z5r^9v>lG2U$E5vJ*E2D)DD!dlzhYs)Yp$a1L&HwoF-QL|-sHnzzap>Edg!lKBoE zPaN(4bx>oV2$QVL?64$@FqxuEa35SS_w--h7VdJVFKDaxH}m;*MOE0h#ASm`yz+{4 zvO4sSbAltOKbQS~!VK;R%)+P_Mo!RuQ%jwPJ=&3{e(JXDg#FkR-E0~Tq)C+o#&z9` z7Q*HmM~+-&BclW2+>)Jw1$p_GtPWq$9heDegsv?{-CMjm-Yp%N>if8RBW%P&5lhTv zbW3@)Ee+KTe#l~%!wya#R1Rg|V^oJVx`Cji*cdHar;XZA@v1EILfxS5Kq1+7!pMTR zAF(Ok_VI_F-!*fK(_u?5gS~icM;D(c%xmg~5pqdoHf#=u$k5|<%9Xr6_xlk8z^H8{ zx2slQ8ME>KPR&Bb|9=>m$Zkmq0{{P_6mQD7lqB<)=6B711(mi-%uT?mRt)_AG7mHleWWY zf{vtWV4rg(4M_X}6#yOt=DG_&6K{T^FVUVjDB-7s;|T{79tLH-jR_42<-h_kD#4PV zGk$A4Zro?Q7kK)%8moy6bg4y0dk)x>>q$ zx|=-roBkJMq8|P0S|x#JOIbU1LFPS&0;`YEzT3|Vn5B#nxmRMnwvG3 zYMLPffA?nz@zZk}(UTK%R4}9*n-e|GILd8Hs1Dkd22TBpo)~&#Ye+dSCwj)})dM*S z&wYr_%fTwRds-Z!t~I2bo)g`Jg=?kwIHR{4AYD%#Jx?XA1E{bnx*cc33AwXXxM+vUB3N zZcQQOM4gyDg&oTb@e_3#(HV2#+8W|V=_JvS7k`E)#81@0-Sji0k`C6vdpq#hYlxqy zgKwMT4m6uW%E3C(&JNXDLi}KzMzoEL9`&|{=tLc)$`*gr(i&3E*TIj@V4_6Hb{i@{ zgp~7jqOG3>HeukOg4Pf}Uk8)&`Bt@n%Z}lh&OvF6*Dg?# zv!)mG$P}8c zL&|A6aZLPCY)gnv%fXK_V-F67ltXi3=D@gvZk7-onqxm25lxOYq@0}-Gd*!+)0PlF zJEsvxkBNOf=|mmtPS>RtN{ncwEX9%S!*F%vaJY>OZ zs47F_#W+kMm{+6B7&;7Uh9%UOzO505W=4InIn;-~20T9F?ONdqYbaHD>X5-_D5n(l zZlXawls*6#lb^PR%UzTogP;e z(n5)J7pQdXF{&G;P=fOC!PWudBvZ(!UZ;vWNIn}KU=%YbmfRy`ppPYSQ2tc4m{+y& zN}yNn4jiOa`*gkq#}v{jCI+$t?v{{NF)`2{&0%XuR3DO%pq{mtkMWwMQ6C~gXJZWs z%C`sD7ppJC$AQ+KbJe@k;|j;rbB^+?0oYmeY*xR022S>#v(<02)8v+(P4sPz*gsZF zr)Q(`wf>VvXsb;<-O6 z{TwkgCgz?_dMbQAMb-*?tUVp{MM>;8CNAZco_6Kw{bG1XtUYVhAGzWK+nzS%M}2dn ziAp0f0`s2?XKD!ddark-Z}7<^7&1Jl>(X`-)5VxM?s1yfI>^6fr-pb1!e z)+pajb?Vgy!-Hr`j~cG0Tw9!Q8W)vQ!k4vvak=Q|2BD#G#K&O3l}4 zfW$_Py%PsOrki>w_J$`UP&1*R8~kX(*m-IptoD!(=ut!P1XmpKfTf2*aOnCIVg!4v zJvK9w6@jSLm@aMMvB*^ zvi9(RoZTI*bfofPa(AX4ipwEm3>M@nQzLQ1jQ;AkOJ$xh6p4c+L%hyHS`UxQMbVI) zt^8Jqn0hE82OE0EC}inTV{rZ0Y$fx%82^8*?vS86q&uejRCiK$S}*90`cxPpr|ZY+ zZF-Mh))#>)K$U)_zFyy^-=Nl505?|)0e zMX)DgTf)wS+kx%>(S$t-dlL>M97;F_T>mE%PA3Y9#>CXbfxz@XHqn;oNt6?dfV;mc zaV5-kv?Xpx+ycz~y@}g^0rB?4-HDF^Z~xxJ1Br(ckHLP6lZmI3gd}59YSO@@^rW%C z+3!h`lZukclB$wc0%Lz$(uSlhNf#ycCT#=0{@aswCq0_92Q(HB09*etm~AlCY)jdha(l||lt)wc0Du00ltU@UQa(*NnR5F7jumW~@DJC~dY@rIex|!|@*+zeW5)e~ROG9KT0Ap+C*>2aZ1?eyRV7>g|AeZI{o6R5{Ck=Xz296Tq-wj5N2^Ia)am;W!lW zv|$*>;T+Que=q=tExgYUhLIdIIF3U6(J-20CdV-x$8sEp_>*Bg#|a!KBK~a1;y8)p zWW-+#HjZ}0Ukwh9PLA0eU5LLKayYsFAa4baB8fJ2wg{U(Wah#2)H_YKU7tvrS=2*h9l;b=^$xy~|KF4y76^KSdCC3Gb z35JCn7jdlOxR~P-#6-hV#3aKq#AL&Aj%RUP!Eq%=KcdO73ejw+=2(N6VyNY~nqwWu zdX5c`zVj-4F45G{sv9M^N)fS6|JM(l6c z$Z-?m0K?fFH*-9P$L)yehU++9&+!J1J2>8m zIKr?KairlUjyH3>h2t)cw<2a3{)9Nna2vlR&v5)3$7c~I8J^?#JjcBpUqGB}c#-2vh&IE^9QSd2h2wsX2N3OsR}meC*Eqh; z@gT=H5S@lM5wi_%aXiHFFvqtMU50l!9^v>dVvgY`$M-lM=y^_z|MV z@G-|vIDX3UGmf7ldJSK2Ji+lxj$d*78gYu@B*(uaPBnakIL+`6j^A=Tg*e^t9pVhb z_Z&}i{DI?-h`FHY#`=L=!_ORl;rJ_}Z1{~3#(eC1J|H}2m+B2hhtxk{SaqK7LI8g`*R$?aUf!mG>GG1 zj#k9k(h!bAISxad0~=4-`_6%}F5w8oxzb3)Vkv{;D2}5!W^x>ZSOOzu_WM$49O67_ zJjV$fCvwc;#n#{)k*XmyTkN)5PG5x>)PVEo00Z%3ToTyDqOzZdIDiI%6sTX zkE1J@U>U(0f>wg_34TDxL`@TY8w%s-+fcnm-})WiYei`jeXE35EvWyaZ@HMRnh8+v zMBkEtSIy58JVQV~w?2ti*4Gh+pxTOl2&yFMhg?e^qO^&AXc=A&MQIxS(EIRe80wwq zhgIX%@W}+L3Azx{lM&cIy3S&R4ieYtASINJ9{TV+0?cAvJ1Ii7(+}EhcyH~E1oZ^@ z1ZY&Z7PDA49VOp%)5*dN%xPV2fBa_dZUp%r1RqKJ_^?cLzE1jZJ;8p0cM$UEULNMH zE^ilpm_LSqBxUkv(iLgK7hXpn zevL4*f&g<`H;cq>W@Y1tv)lx;2(CmZqW3I%1g~bVC1^*Oi^Zm!n?qNm#xr*jU6H`k z+~asvyp(`GEE$ehC0KKHB_wN9atD4`N-8&{Bpy`y9DVpD!aT~lc~pM$KE)5qv;-Ro zK0}z_fl$sNNLOU294oM{{C)heg5ITqa;f4&`tWmt69m|bbd`yCRY@;cc@2vzi+Ro~*(;x2?G5&_*? zav@$Vr9xfS7q6C)y=9b!<#ca(A>Ld57QtbJv;KjwGM8Wj0ac=v*oJj0zrqjwROkKl z6#pUmke;%NvS(Ehez>Zfpbnv$Dql6#km_3cupXhNihx>i&9ihx1yD;lUz?5})>128 zU4U1s>36Fsv+6YXVckdqDvr8W@v5GlQlErZ4J5eKa4ua%2tGkrLupt;wR{cwVBH!j zoHf7UR~mH$E`k*Vls!#1<5lxSg7pOSf?T1M>$NKCtxfn9McI{_OsfSyY^8GGim+`y z{IHE$zoH#W&7$oFCg7*X;?oNcvoGp}mkHh^IEtW2AV6=S*Wmlg8@(3uSg#$2U(t3Gyheb|Mz0%&SNhu!V9AKR608|9kopjeA(%iwFE3GV zBE60u8nI0E#tZ4{7lZ`N9eqM2U9}OsM}VcMPxw1tB@QPzNI>aJ8j4p*WH!l5SC1nk z(_1HF3)LsjqYvu{?j(2+!GvB-Z#s*v4iNl`VAd0iCBV9%H?O2CY*c#lGjv72Gh;2) zo3R<`&FF~qDU=~8^n;Y$_=A)^2&qzK(bcyIW6KB@5m0H4eVeXMA&e^| zI3HpBc!GKYY8?}(P$yE;p12C{ObshmV zyvZl=%5EgcCP0_0w=bcq8wn_Vc52fO$`{84c+Wvq(eW8weUIQY5F`@}B%p@wq?d3~ zn|3}*_b6Yo`{Px19s%W`%g*-y@6ePAuyXnytfStUvOVSOl(SN1!T$e2=AUr?|4ru0 z%v(WGeTjLRd7{~B`o;8~X}{?y&;Yy|R)d$A@=OksCHa@+_h23QzT}&d&rj}1UXWav zJSI6I>6@g3Ne{zX^;X#XUjcjnM<=BvexG<-!D;{a3bLqSWVvv zE9>2`&OSfEmoPqIkntzu7qIvLDdV4w5v~B}Lj}N7(sAja^f2rK*eb1&Dx`eLDWw^{ zH@s)q4?7CB8_qK{8cGb44Z{r@*pqM!_9xu0->yGfe-`X!7^hFteW^R5ds+9SZijA* zZk4V;m#H&qKi9skeMb9$_A2dWZL@Z{wop4pn<{=I9u%JvZxk;Q+r)A)Pn;lHG{0y* z*6h{XsoAbMTT=^}r~X+Y>gKnm;nB^;mI&YcrV$%sH?Kt0U2l!?8#_!9b=O;?#VY1l zBYfAJB(90yV`Yt~o8Q*N?-H^^X!9HFo>^m$*&7|o^bV+qr) zH+V>WPE(2HLTs5$mSK9J2`XopJD^Gf0Jn`35<-n-RBT z$`a=L9QDEpR_RFNGFO*2bZhq+-D7|Tj-X?>*rX) zw1o~Hw$y1a~UK@(sJyU-w<0mRqxj|2jwcb~)Qn zZ4JAWZk6^5}vGnZ+di7v?)AEdE7j1saq!JVg2R?0A7gQ`o9}yNJ19Yk08o?V{;p zl!~Kpxmv=5=&nXAl0>DUCt1S-l^@NDKayn)4^Zzq`lydAlzHO%t9Pfy^(&TenqqL) z^k^(-4O`S7O^8ZqG$I-~S;GnH zk22!&&lEP|T}W)c7eo!y!V-O36!RsIQh=IlYnTW9l9&&hphZlLpoFg0up0a4#q0f< z!fNcFC$jUMVIKQy#Jm~NKsO~UqG`5d&JPuYDbRuf4XMHW^a*h%7p);4%uC`lX^>Jh zir%C(q{j5qJbJZ&_?Zw>h+=wpk7?OVUozBA#Vm24kQ(ND<+xKbrjQ!udr@{b#KU~xFc}jUDO*Am?ZXRrV-6LWLlpEw8F~l!MBzMB zh~j)mmIo%-`m*tVhEOAGzf0^8wY)ZN=X;k7}iNy);!Fl{X#@mcJ z(qmGA;i#ce|93bAVAO5Xjnv+z9Uxzg=mJUTW|tC6oCfgBO?Qq7+pN=g|UrLGuHTo&>UL&=Ww zk7t6U)JyljaDKQu$Yel(_Qf9M@zH!6rLH)7{(<`2Qib!K=>@xDAG=Mbk_a}eY~fSM$hHbe7dEH%kt%@g)VazOrwSR;u+ za%LA}fdM*}(tM}K<927+K}FFmClVi0lsCe`S!OB*Bca5aAd>}wZgB!B?IG_ zlt7>YO;)w<;4DlG`N@GzBmaD0knobjmIGYvEl~-&{QB1QNOa?`ta1ZW5D;UeQ*QP{ z3n(CiL`AZV)A=l}~~y*&av zzW07L|3=@2pon!zV~;ZAYZ_wf(tFJ>+BZ%j0l^k+>l6~nDS>AxPb@9 zmgRAQJlnNLDI==hz>-ySUmiu7E?;*g(in9FHDo%AQQvarr1DtPFU`IA=P}1*MhOdK zSWJrzNt0r^eM)A#?LgNguSUOJB#+K|_D$eMQjJ#0Syy5$kQ=7HHvF68k>;QPR)JO$ z>ld*YX&R9RX76Wr%?zC*oOFVO4{&^KtR>;U^41QJ!ee>>1)wg)WS_EKcG z)hN}VJc(DaJS|f9H3!Zmd(J5Dmhb}Fd*RbvzN;4s$8*3B+0zS~nvwL7w3q5ZZq8Ti z04gdVg>pKaa_57TtIlJH(So%-#9Hfj^15G;b#`6g9Hl@}GK{q!u`M=N53haVZOe?+ z|E6$QR~6aK-i&lbYC0ifsddTgFJ)X{pk}cd6DmxPl7tF35@XzeiQ&^bfHx9|l4|`m zs#*v!Oa74pdv>W4nEdT>*-o;Y63405AL-cC9@_|^^o zHZc{aOi-pBViIdZOA)!ni!^T4flXwRX=-uWX6>Vx*rQ{HY3?kFZ{G~RwjUfhYUV`HEj zjDk-@k3a;o+J|G@(noI{TQton>;j%-H&7;Zb^&uRR}8BM&6{-8V}rH=JeD9n0PNMj zV;$t=ZKE5RKRO}L31gq;JNU8o!zVu)*b>-4DW1xt!?={!%h43San0$6uKRwJ!wV9* z@ub*5T+g^BL5pfJG?^Ty@PwR+wYE)7uAD_#E3dg0^Pw)V9t#rsQs~=AeNG5qLB4+M zt=t=a6z*U;a22f})PXeS1+5)`O|2cJbG$%cnVn?^r;w2TKt+TrmS1wco{rGGAp zsqu%4X9%h7!mZBqc_5Jq3M0S}Ml9Viw2UCP;q^FN!k6;IKh(J@c@kD~i`=#gn;5XR zc0Yc2&)m+yT1*!-HI zYoJXr8`Ty03bXS=Ygf2-q44FuM~^7aSxF`nq6Nrfp8ePv$>oz+BdDthw35XMjEIca zmh;f!+t*$nHv5EU>_8n@+yK!9aaC8ewt#eAX+8w!ZcyF^ZB5}5c|x?WrFx^zzhWCF}iu0`e>#6pt!m7S*`F8W@>puEemB7rnh2$9f)P6BeCbA#SrX3NLNF% zwsHpLUrdhbseQ<+tI<(!2sDFXm{6M_xRvfe+!Rl=_U;I$=fd95ajvs_&DKFTB zcFzi|!Kwpx)0FgSNswmW>H&w&nh0G`7br!MRx)vq&j$8ih$6gRZ_XL?+6`z>kaN+K z4Q~uIpaD`e=YIJgST_&$(Y)QZXgtu~0U0(UcTT#@5z4%CA+;D5#B@bL4)*zj!M(Ou6BUX=$F+%Qb60ky9>#ZNB+dh^mk zhlh3Nn}$&KO)+3E6Sc>Esl2%b8I#uq>WCr~^(Dw&YP5D7(3fx1G**Hhhuy{or#u(i zTRRw+<|2PnOBd51tgUT??hXV(-Tz!x+`fn2Xc5&hK|;P#q91O}um z-Hxmr7+A{lQz>6l{eKMHCh{TO0^+ya5M)v!ASX9jRe}+OU*et6A!qMnW3)ru4hU;H z8FxL@FveqF>hFZc%Eb`MXWQ%`uAb#|+uZ|mzmJ9k)JP{ifQ?fwsKwH*4>Dm97*xd& z(P}F(rLQ0Q>zvo#7rq63Szy3L0qq!WchKlUsSVK4gw8YPOoZ~BI8}E1iPiMF<{(oM zflSScvd{`U(A3Kln=_|hUEl&MbuBQ%!bvPyQ!Qwyt!vGnX9LP)J5!9Z$xXW{TPIwC z(NnYmDIA(@b=ZY<2bo|9tOU5p9xFu6{@4b4q-Eo%Ybrdzo|)Iw1=^Xl&8n9uhF~$z z-vYs6k;e(_>mc<2>UEDcZDF?M_3giJyH#>JFVV-o_>{HYH9=Ai(Ts^n>q$)Ov6f4J za(a~02c``F5DElR%37z;cnwKjlGS|PaB}if+ z(1)oM^5Wd6tN1W*&TGS`gMLv3DAqAu0MtGpJ;0KAFvSCkFre+@kymm`>fzB|lPZnv z8mvZg_2aA`AHFV_0XYlHB@me zsd%f0gKv$vOAxO9mjX&7Wg!}Nkx3_oy7Js37y_;irh`dXVBs9bj9*v#0kxIB=h^E`WLs*bMFB?3bL+&_Dx#^sMO+l@#RdNOoxw@Xg|8xh3 zQ6a|a>9(FBJ5z-Pzh=S+87#N3!3PWvLGOiW>=03NP3ydJ7_579H>nuq&w~&NbfRo9 z1~TV%h(m@Hwlams79 zVZZ`HP3MnTJbOWVa4=YgF2xn)Ro9Hey8Fh&8F?R{BRmLm3&7b-{!f`-$qjEaUs$)*7#xJ@h3QZyXLFY{FU6#H zf7{>>pPWD6l>!M=v!GI+fQBjOyU@yV_w{ z!MCoqrHiX_m-%5XW@a(ukvFGPwzB&Bd#NAHitX~s3f9n0bOZ-L!qFN|#xhr-c|6wK z`}f{ANg8HyK|cm_O)ymA-D~V@EKI*=dw`(2b0l>w&Ps1p>Z%f!Sn?Yqd0}^bmVeb& z!|1MHf3S)&0jead_6+3M@11>O_2DMroqt8P&Z!@jB{wybWixNUg)gEn?g*w~YOx1^ z9vvsvewW&hd$xNfK9vJA2%x~#S`Qr#kBJvFHu&pH=DA^d3Fa?AIZNT2j57+lo~%a0 z)NIjmY)oedEm*mrN`pEej)EoahM3BA{Ut+nP4NF#)_5PX1T7&(tLV+?Z_P5};gk`ZM z{M=LLct5@iqI{qMZ)xf1Zd&JW0fjqs)JzPHuR$!RWEI*gujC!yu;;PYQ8T+LMP79j zv$-+Y7ZQw%WH3w0XY=lkdaZpI4E2;X2rois19g~|7H9+qabZO*49II*LFN-ghF!vI z@;ItHsvX(J3$^(Ze1W!LAFu|IVLs_7A)EY2^cV+D)ZH`V#sZMP0ga3Nrf!f)0Xf1Z ze;tG}T*bKwwB@@&eh29MJ@P-B2bPohL{8H-^qcE~sbDf%e_1^epO5c^UaNiht@BR^ zPdIX5q93&E)`M&x1PesChF@0mJCYYjFMln4MOTUe` z{E_aZXK(K(-1|RRhg@c(m$0VbTd4UBT`&zna1YytC7SJGr?%q9G*8HJAke#n$L?M?@D7+?U0voW_iGr=X z3LTEEwIApG?Tcw8!UO+GvsGh|NlGndGT3==BkOqO_HEb?Gz62$t9cA*klPEF3zA*tF%9W^;e!h8oTzEU=kz@dUTu)=Br;5qHW`~OaJ=oFR#vo z>e61@43UdErlaQF4oU#9P?yGu7y`=WNS z_>tHSO!yl$3BvhUAOGk7zzQo zSK2`P!3o1E5NTQZF?Df+_ddw_xR_Qlk{YkP;^;bduO-MtOmLV3u`#WuXl{$~`fuE` z`;#nCfLsJ)$2KN4$)xOXoB{Ewe-Vg*J99ifIpq)TuS%X=%xdjEc|iud1%CdGw=4hh z+o$ISnQ{pjD{oXeAiE9r#5v2nUo3Sdlp;S=8oZs_L^;{DI30l%cM-wO(m#jq>^y$yLm-^Q*EKZuY)xa0jLUG6KmB4bRII|m##F#D zd@;WB;)l;4zDoGBSDEr45hW$u&u5JVv>2J>FpO+$&NE5y^3j#^O6p!`wP6mm2Yr+Q zd}|M8K&&VH;O-S)H06Wza2c#+gWNA}*D7qOZfI%f^mmk0z)lah2Nqm&Y_sJ)6d$l; zQ=w*1Da#99$NKC$_`zGp`hU^c8I-{&cm>ovrqxi*;@BE=xPR`&vtF3aWG$hP+4Kin zMW>-uXBVua<75*|^TTp4OmV@AdTQ=hEbmEfSV=4IZSy8$`)v;9Vp?(Tmt3HvT_01} z&))TFpVtofVNZ>!szg4Rb-NuP>B(l7#>isS5GB(|y}4ZK!m$Oo+`d;|{_<<>!5Lr= zyn>VMN8>Kn74-^l3^lKP{8Hf!HVx7QD{D2aYCw_aZ(_>~IM67m1mRRRY<4&tzmo(b zW z-PF1sGtAYzrsaM+7CWbCVib|m0<1Hqx`SRUHgM?5#H%3A zi7&Q;LFWq}e!I+VSCGwLv<1b(T(4}(Fs)9IG|W624oZ}@$~knJC`cDW1o65~iAf1e9(N=V; z9mKp;j&kV}=pHr&-DpkYraei_vy1hy);{bUBzV@OLRW#S&)`k!psp~n#p+r%$DH1} znoVng_;__~(QH^hfQ?Bjc9QvF6zD~Zv>$pNr|e(Gnn&8|U=CP^5Puxa;Gp%j(JFdi z#^N0(<%zJSWJ{mjy53JS>ag((rtsE5ik)w||*(WAzlb4QxPWDibHvnW+=LAS&i` z!y1}F&AwZ4Pz*gV?VR2?t=)g3@{7WGuJMH7!B*+hGHt(zV}`Vf!>}uTjHJ zkqxh(kvrX(;oU(yC6;f9(;sLd>%*!dl-4#QaDxl@Hdp0}k)EeWiKf3Pk% z8LUBwGA6nNrQIIynD(CT{LEb{ybEH{mF=xuSr|5tRJS&@R93(`pG$qP`@$4_FuwZ9gw=>|Gi-w+trSa?;EF5E&?y2~y3xU`uO0 zq?c*O*F8!GGoQsiDw@CJxMN!LUwC7EFbh%&QOQ(wDo_yaiFHhGKQemu&IkL#$^=XW zLdaDO3m3R&9K8fh>d&l&fee_h>!`?wJ*iHwW|5qIC3elxq^6Vekk?N|mslH|2$sPq zF~>1kkpzZ^6G*O)3y(@YahY02LMhy2sYyOOU=4!{Y5<(vcHi==%? zPbJ+58~|&9!#*!*RFWa_+r$qOUru~7aR;#BHzdvl*1MsJriAYjK2F%5@K@Mza9Kh} z!m@Jc%^Y2u=r0g4lyQ6r=+)l_y2b3GHD~6|1Xwc%3BgZ`|mZw z6NbACA;V_F3d1~u8wh1Y{c-(1{k@=9uu)&FFVv6Gr|Q1ZeV}_u_h(&1w^rxZ$UT>vUZ#{N&HFtTzpx4Qrsb4AhwECqK|9;ozNW7ysUXp zbG2rJrXDg-`Lpznp>rY{@s^C3bA7#ZFb>XL+>*_Xll0PwI2iNaJR$xlaxa~aV|U|a zu+n<@X*p56Ibp1_Vk}&3>ZNmXVB@Afl4v&dLI(~~JnVV^6YlDzBXMxOa|%-j>xJF{ z?!%dpo#SGTKlRe-H!!|4{uHmNS3L{2b3lUF*V4<+!ofoZMo;`%dg%}xJo`p-G#f0v z{45-N9CMHO}%sq4$^buM2A>o?N!gc?MRC|A!F{P zb8m1IW=EezqHvF?mrlIF&u+_?>m(0C%)D50` z{jk}haJi+IPPf7Lt}}|tY)FEommhM2k7G2LOug#qw(Ew$K`(Q!iHb}VubY&m6)v>) z@^fvHxP7coS-g-}@!7jxI^G6J*q*|q*m~6iZQEnA*V?NdXuCE^QZ_%yqp8lO^wNPg zI7N1?DN*<_;cup17Jy;JxfV~6^{PkNwmBW@ODs#r2UvU6qioxJ8s)sRf~H>eDBCqd zvc-C9FF(pAiPwydKkC^_C)%J4u9+}fJqy?{kXzCyC3KBGQ9TQmK~CG!%g?%L#H(E~ zN5UiLDv7xoj~hnlSR0tQI$mwk5}`A0P<&VEV%kJRJ?eH=knLp=?5#mI5$kGNWzCBjd`X~ZjH zPM%vM>M^)0bn#gpQIEl0A?ww`<;UPGkq*jojd-~&dRjCs!cW7A@No<|fhj`g;GjZY zj%TbR>H)aR(&9A_BXj@`zTL~jI;{~p@&;Mbn-|xBO_64$AbWwwHq8=IkG%C}MzhEi z;YZ%!p%!pZ)(D+=gNH_3L)G+^l~I+7G*J5Bt}gzpXQW;+85zYCDI;~tx5GJcCmyYl z)#}}N=`2&ER(Td2+Z4@~NDX~kBZm6NIL=75`f=arQO~r4N&XHL{XEmc*XHai@7Lkrm31dZx$b+*$ZB6h{wG7D3J}S055z9M;G(v7Jhe;dUwz` zRY`9CNxW-{EX2Ez!b?Vhrd3L00bYaayBHkrkA^p`kxJ$F7wh6O&Kjvu@9HJh0a)uMJ@VL!?N#4h+MlG>d*F zi2++&`?N-8s(1S)s=k|3R#+m1bXOw=hDQSeYotK^(U~$MU%7jJVm$RkBoFUGX`b(8 zN5dmN#l-nzqaA=bBGcDI@w{P$qHsw{Bo{w`Qa{gR5PsAju|{UlFD3CjbDS5jMy4xw zw+=o-U7n`ijptl2N2cOkh!3`U$LoaKO_3?|fkxbd)CUo-^7Ac5jS?>?XpMN3yXQ{G zRP%I6Ia7u%de_xYb%cd0@mbbLwt9D5{7LbMQ@MMNJuVB< zA`ZGMis$&wQhI*PY)iyWpKHW(Vz@9&5gUFC<+hoLFPkEhqt_4{n#1FsTz(n8DBBSWnqPQV_j_SD|vqpGy zFNy2Z;~H5?gkpTCyXz@fvqnbHbKv_)TGf~K#Znbak#yyq*E5bJOGJ(N*C!Yi?+Haf zF+aTAx=G*|EfI?HAr0$dly)rKy1GEn(O`($KSiBK#L2G@F`ZPya%Pl1%CgXs;C5v%3jP zl{Cs-m6#=#2oLk&k!jJ0#v0-Ay(G59GewvpJj~aKZLH(4MARt1Eha3oMARt1Er#OA z9N|&ED7H>1(F&iKBGB7VfZd`IL6$Y5M)@uAYTwofMfs4PmW(qrO&;^Z-FOFLicshe zMbkVPf+kahf_-+)D9HY!|MwsLzyIj}{m)ef$-9#NpI9c@QBPyOt~bo`cvRoy&0x;u>iy$MZOzkJu;$I0iXhfY>Bmh}aAYx6EF%bTML!bP2~x zIreZ2A+}0k#5O6yv6tgz94|*)D_z0yN{&}?yqe=Ri0#0u%j|bZ*CKXG+c{o`*d<+$ zxK6r(;||32(v2K1D(VrF|S< z;kY01BG5x-?|rfKD#zD2zRvL=$2Sl!k>2F^7RN&z4Blb#Pa6G~BOO9W0{2K8x(1B*Z zzg+q|$8R|P1Mv#!TaKqVe#h~9#4DxK9Dm^WBgdZ*uabV|_zU9I(yttUBQy$#*BCV% zMUGmII>c>8Jx2rLwML1fkz)elc4H#PB#z05*BMP5%^XuWrXpT%?8C7y$9{-67%hl9 zjA?t=Qx4mM8sQ-SsW)J{>eC*qYd#kqn)FJqmyGc;_XHk;vK+k#_G!*MmOS} zMh{0X$0;1Aa-4>EmvK7B860yF?}pRT?0I(^eH`;R<|F>uSirFm@gCz$jM18 z&2bLmZsS~z#fbMAOE{KtoX4>Y@qXicj^!LH5FapBa$LZ1A;(1=s}LVFF6Ov|<5G^x z5Fauw=Xe&!6^IWTS0X+FyT(~QJYrnMv6^EI$6CZkjjK7QM9?(%7+t%<* z_sn$n%=8QrBM}A^5E%rcERobgM3XbvCJ0F&fpP#uFu~S1T!#rb-s_yRal|+q8=DL^ z*v5hEfWbD{2HQA&r_QPF8Q6~}6hHHa_EwH)g>)^lt?d_`{L*u=4!;}VWb5nq*;A-*QJa9qxD1>)=SO2jwh zRU9wlxSHb{j%yL$l-F^*9C5RJ1;~Xd%K;k-(06$`&}=9PI~|} z+v`BTeW;fDD z-#B(VUIU%_prg?-&5`Hm;1KNJ+mG7cvOoJ51%QrrJ178rs=TT^q1>UYQ7V<0pa77e zw3UC8PsyLkugXuzcgSnx`SN6WsN6^P$_^OAKLAdGhrn043fBM(lDbKf?KChH?y|jV zd(d{Xt;JSpn`Ikl>ugi4zgrJkcUxbzK4A@5*I4IU$5^wiiI$%&Us<+UHd*eqv|4H` zGhiB~izQzCQ9Leg5uX%q7F)zhah5n*ED*i07T`zW17V|Zm#|J)EQ}NS3vuQj%=^u+ znjbXZY+hrogKC6--XM>yOTvLzs(3YMgxEjo%HnZB3b8}n>!ZR*G)fIpq#eREAJSz! zwhrl($n3KxXavT7*VYbehw+~_T;mTyQFnNd_Y;fsUuk7D=jRDh2p%5fJ!fQ!O$|~c9_oCr zd8B!yH<(YcM@iV*ImxIAURE_|#NPL^br5QhV(;wN-i|`H8l-4Dr1zu){izzH_&Q6Q zt!Aq?XhhWaBwV1_Mnrv2(M%(vp6v-55%t}Pk(oPhkRs|(-d%%YR+FefBfh@V#t5E+ z6kms{cc#Q-tp+LD4iCDMMF_n?Bfh@Vez7s`!xiL#cR_d;r?%7}kG#VL zR7?uILqXmxnycH9*7PoR6E(=A@MhtiHiAV~gA{~^+rQHeCNRB09(|XDcP=pB7c_$K z@5D+Us6h(CvwQVR5$CBv3cEvkOJ6iABi_EHFlH1|gGRi4OB`cW4;u0IEm1*xHAwMx zc2oAiYLExo&BEJkt%o~Eadz-Q-lo|SPmo92&B9wzk|*Av5n_KUb~y0_d59f;6lLUU z(1@+Sg)2*f6kCVN-Yi@7DLhS|nGQ<&aI!geo=^?i@GO*Mvkiv}tC0q$Ho+UT7{8Xx z#*m(f?PyYiqJH(8ozS`k{pvS6ONJHoUxSx>f@V5v7Ty>b{mwDzH+drtZlVTO8|iGA zrt<_YGk(@F(s|XuD&w+FK>n=;R_f{33mE-*U>xs{i_x;+S5n2A1eozrv&k)IhV528*zG0!{R5v+znn)LX~(1}gNc zH}+-gQvwU=YO}C0s>^u;3-p_8Y-`m=V=YG`(+ZU9KYAgdtN!A>SPhiv_kKZO!VQ5^ zBOS*m-~;pZo4(K`c8m;^7*{7@EzHx?&liBmhc_@+|Mhdlu|r8$zqo!-UflKt8K5L12ByZqi<7{rs3)dT%Wt?rR7^R0~^M!SM6w1bU3 z_YaQfsd!;^B440(f9yJ9Z@_S;?~8R)y#ek{OTvAMWGr16pz)D|d)08ZLvLeo+vIt? z)P{3?9|$^d*TCTo^wb~c-Xg_t0r>_Z+W-HQ$-UYg=eo|-R((v(bH3~x?)cC#-+t0w z1N!urD_;3Ah>-1-X4p>J*4Wxv@3y8|p0X6ddigTp3t^>TGT&fMHa&$;@&EWwRV$+? z1^*j)2UOpj6)wRJLisv{gFVrHWbJpX~zqrcq^)Es%;!ID=R-UD?c6fZDxB4 ze_-2ava%xEFnaS1g+;h!E1|lTQI$e=NUX$3df$l7?p?vtZD(UP+Z?YmchcVRv9;B( z9d_Il;3Wpy$=uxBg4pb4YQ6_(tLD&CxO=Ill`)hej|Q;2@oli4==_eo@yJ!rodT+R z*lz-~D7A}$e;BzRW&kHCY{nfkh3!SjONZ^-*$cJyk$tIr|3~Ho+(M+yJ;X53(#m*A zVTVf*qdOzwNz>-&47V5Uoh)^}n6VcvE=Oik*nJE9uS8}Cls9a*=H$`2*|1>=YSovo zCDZn>!h@BM58b@=+eqcc`{UrQa-UWz?n6sEo3YZKgB>KlmTfb$qPVx2uO@ zx-JJ8$Dydri#gj3Y`bl&EEzZ42L$ukT1yjlE-k+no6xA&nUc0*5$+|eYbDxJ)4<49 zMst01PPk#ca!XN!94_KH&4u{tFW< zHyyGit&kOS$Iex)|K-U_w%C zfe%;oTz^&f3Xn?4!;NT7%#?LDpK;|il?%$tXN=B=)A>n-zhT)TEW$IjUbIJ78!-TT z&VtrbY*kZ_sJ+JqXsD$l{IP?GqRvnH$l_0Z`3Bym0mdVR^21^qq zTGECOuzA#1Dq81b@l4%V@o0Ovd0%YtJ{WlP&qtofXS*cJfVmSmaDgYV6cVF>KLR8* zOzSkDEoA>#RZ>gZsRgx?`>-V|TT7@+QOud*aV*p4U7edU4*^X?UJ9s_aPp7IwWW)J zb#?r7pezD8iOk%B0ghPfg`U>0x&)aPLICxRzqMYqCh8hN=^~EQ-RGW+h>Z9hj&ZScJ zf}HsqM7$YGdAz?T?z1tt*S1d2g>T0!W`qJj+K`i#ozu4P`+wS041z3Fx7t7?^Qv!b zodcNw-ymaFgjRzWhh&Z(PYP50+!19@$ET?OpLq(T|QibZ2G3Nj0P<`r7* zD@dGTlxU{bh3_|Q(YF&HeE$8DRhd<-vmsY5sH4-9FO2Ss?_{3d+xZqEGH7{ws7{@etO&C-$6Qk>K*LPPx(&6|2Cc4LgJH;pMHfsHjm| zGG-;Vs7FU``{ue<)0V8v?36K;bI04eUD$!WE1JuJ)2}#&`5p9xvVfT)rSOk` zZr*f06pR{Fl1{#Vxd>QQN*Vb^ z?fBt9ag&`lTx-Kh7WLZDd=IhrWG`)cBlgtAt;L2fIE8KR4YtVMz|GTy2jj!kU z3V>@)XMQJ-mA(EamdvlJoiRPbmk0cie8NZ*aIf-;NKZ-QgZSwASi?=N(;zqKm^qQ$ z#MEem+PS=2#VZ>@XA9Vun`?kH2Ah+-oDr1`-ysBB13&RI8qkCg4B$pg#sPyYM7YW@cPKu7O@UqqG6UY;alYc+3s@DN^4tI}-1U z&Tadt!xOU}7Qu&wef^BGx1omjo`2@O1D>*c_z!fivNLo|>%y;Tg zv+4W)X_I@sJI(d9YmB;AEpvY1T zSzfdZ6yFgi2ww?Jg3WxDxv%MItm*&ff0p_ge<<+hr$<~<@v7Kff1vcr(fOkbb0TC> z_(eCYvV<{TfS=bed2~jG4@3p|jIP!OYbMHp%=!XrPn%BEBD4IAMzpO&PO-q)g-qrI z?0@@C9)0yxFqctNfd~*W#4yq%V(FVw?8^bq!}{sPk#^AaGj4Tat}FbEC=@I|$DsX^ z%<)l{|JfN==>EdITp*}V0iIY!yak>rlI}1Tx8fpT{LRiw&&mMWkOpq_8LR%;v+BqR zH5xZ!I~DCa*rkj2mBPh-MiB~80OsoGp4FGpW_Wz)u630UuLg^+g&_vTLK+*5uj6qA z5LEGj_vp)#j%su0#b@+2EsgtgcWq@~1Lx}fj4TvdupmN6DqMir{oSIq;eggj3o~Gq!VsA5=UcDgcyRNLEPf)w0!wB4tKnu!L=5)Hc@x!w6K=@_679aWi;2kE7j%YKwUPK1grmUV0!#t3y0r4sH4^o$4Z%_OhX&gTs zXgfg~?ts>tvWj#|H@-+gBxDHdHw&9uNxc)?e;E2`@G!>`9poKTFv+y!B3nIK^N>H&;W*%@u<-tHkp@y0l_j8^%rdbee3~sIg{&5 zmdt}GNPxch(5S{dvLfRf>$diJz_#^Q204A)sajC7Z2HtZpsxkj0F(r^u_@Fw9SEkV zf@We|;t6d^7~XP|P8IDt^7N8*_w6lfCH+naz8b@yzyc6O`wn%T)#dgNOz(n9Vo6IQ z2qaN}priq&3C0!yX)-wf<21^T)4@lY)3=YDgDKD9C{*7H0-mg2>H&J_mzTv_(8sd; zw>Jm-;FDu1MkLUFc$9G5l&p;0yaIhDvT$?6m*m}2mx1zqg^k+M+CpXTF-e#h)wG{ITO=Pn{(m8AIQt=%WiPE$%isg6=Ra?>tk#teMkV6b zZ@2%N2qFh3wl%f9TGhG~o&er!>C8{!Us=ndJJ6^13I%unI5z_vbr4B~_z%56Ss!A& z$fL(Y@Gu8RzB9A)25C;T-AFuJ>&?U2Q+(K`R7VsctVa3x(|?q=4WX$@1ojn7t?K>Jok$+&c1U|Ycu4I zQzVfGK>YW`OX`D9~$S9}naXjw)}g1GT)8;t9Z|3FO`jcVRF<>;Cbi z4!fkek+$u&o@{y1jphNNd#y`bo3Li##f?J~Iw;lAHG6pAD^uI<%gqL!T$m$Zky*~8 z*<1y5mSA8_EuixS15*|_^zeCfNr1}Pv6*$2D67hPij}-xD~ZEiRMy&v#WXWoK>iLl zi{z25zUq@Nzn)l-lQJAQI*B@+(=1MyoROaolWKgGT;W;#R)`jV$v8+sf?=Pct5DP0 z0NFt31!K=N_KK?_gWxCCshKZ7^q-2SYV{9Mv3x&ZS2av_rq-KB1{$xzmaS>6hYaC! zrHAoWGnpTXHJ+`Hf0VVOPdZ4>Alo5^U`94Tz*G;wOwY>$4Z^>CL{LCDmA~2Y7qjkp zva+>~Dl$r@$^05t&dM};`u7A*zrnB{e5T_gN2&b>`%=40xk0hXH^R=HC#6E$ z>$b7hPpwO=X3Kg@JK)Mo7hVy@nD?3&ntn1}iCO;F{#5(3uu-9d8nz=|8)?*CpS1h+ z&^}WLF37A;+8rfU2L2_HK!m0UN8&xP_esxf$nW|v9b4fv`QjNul8qR z73%{6e#&2tRlMc#9gbcbO%Lb7MA|T5(bnnF$JN#_ZOjtj1qDyK05szA^Yzsfh1-sx z17u{V^{44AE$eP};^;zu29^&#u#Gpjd3mIKN1r@Z++LXOV>6YtwN=!rQ=(*Rf#^RQ zK12WVp-Vwg-!W`RZS+F+4jr}B?}MCRZ0B6}IJR$z8r!$M+~(eCzk_3!r3+spb0kvT zj~<@^US}4}kifU+xVxw_o#^{S3D@WXaZ?Up*^2gUFPwSHo{CyOqXoqvf-$QgoR1!P z_V`wQZ}H9oes2CUW9+uYwN0RC2-5T*WSEr>lL|RnB`r_ZdcKZN5UJHHe6gL=s^7yQ zq1q38pfD8B%n4t-a5z${?-tx4KlX&_a#(@^Q~SdjKv0H7xEmWm#$YMrQ%l)!1kA2S)Qdm4Q6J;;PA6Sx=lM7N;HKi>^goGDz{H#nMTFr;03-F~f(MN6SrtZLMmWH4#s%mX| zdmPi3`}?3rL_Fo>R9`?S_tO=3c3ITfbOJ=w$CWN@hCsei;>n=K1dcAoXF<6Q=K69W zxSo@1dO_<(tr%%mU4pyfd;DTqoZH(Id}gtsrC2QOjrF=I20{-A~^C@ zT!FSiC+DP(~O8p?jX@+-LH|ASY^+pld zZf|qfOC9gaVZj4F@rCrYz`YLSz`lGC7RV@2;tlG~sI3brJ zinB4VN4zsqw8PE?-KBH?X5`>PV&j?5VYko3S?tlW@3O>1W!T;JW8U`iHnY_T~K9 zxY=jYR^(?F2soPd-?}lnH^0NhxGKZ6aeIjkf*o zpb=quM>gWGsP=;zCp094GQoPN$d^WH__O2FOOowP|E^ZoM6E6QB2gjeuDnTSU{#;3 z_orcT;k^ZhL-~ovV~hLYk|%bZlTF{k8n{vLIlmnGB?TE#wqQD2Gm)E{o(p96%d}2x z;Mo!7Je%<4xj>uO6Dy(C--XPG>*M0Pa(<+c9}MquY{XjyIk_Og2{G>y(2!zbX;LK~ z2Q!xWSvl!G;7Hd}*5C~b53!~j870Bt!YA0N^&)q@#-9o~!aIz)>og-SnI4XMhwUC- z_^wa|pQA9-SF~^U zi93JUvUaW2pF;H-Jr8pM-RuJk8ouAM&2*TJ@386xhR=o;9%q9f^`Ro%W%A)ZF}8URY@YSY9Sh)t6Jmbwidk9%lk{ce zR{4dKL zapXOC+XKtj{`POJbNq{k%fEj01thsYpoO>inKUQ7xg+HCCSgv*ratbJ^!(Wz(-r?W z?DQ8He5sHr@8D3O4I@vf+TRJ=nnJiV_+BW4`$e21WkTRT3E^7SXp^u~M@8PHaqK$< zK8C~H(8wD6Oq`R?j_ZB)FM>y(g%_v(wAFOZ2WkrWDdV9NRn);BbX5#(;t8Nl4D+|? zpqGB3g{w)_r?f!_ae!LoXS$qxj)fbN*%oU_TfY75mXoh623@PaNDxs7XJRc(m6eR2 z4q8Fknd#tS=V?>OP_(vWw~<1p)0c)eQ+KdCP$lOuJ$PQp17h>v|IWpy^87yVMsrzI zE=rDQcvB6mp3ML?l5Eo>8ecOL@flKiqb|G$UGD~edn#}LCBaCeTy`DiUuJgBpOkwoL1qd`63x7te`1qr%emFC6DaZ(bILAl`#)BF&F1W-P zD=gS8YpiV;Hw9L)_+V8M$cX=CIU*Tv1|N)vQ^#rcCqkCsg7SGRXj)0w6g4z%+x&P{ zmp-N=u#|07Z8a^}rLlin9gAESO@_~H2wcMibzX1HLZ)g|>r5@cYHY^Jt&-lenz%7iJMPc2mH*B z%C{?i`nGD*8d$8#QMB)v=i=4Xwr0PFs+cWg;dU(iJyOM==dQl~o7V#zucc*<9G?GOP9!&98hx}a z%zZfQIDBZSKOS;}-io4s+{^zk)_Ql(=qxNfTT%cY`E0TWmhi&s2j6}0GOB8vUjoY^ zVQvvV-WE)x5x*OS6e2li@DacAJ*;QO|M#G!&SdRwO@|%v1Fb`?qpcIIGpuv0<<=@| zBe3SLwO(bt!FrSRcI$oCN3Bm=U$nk%eaE`Xx*s9|$E;sl&scx9{%Nz>RGY`o@QqEEW&>-~VqkJ=k=6iD()H4fz(RDd z^aybLY?NLDCV-vNKIs!!rEmh+Uw)GQkgc*)ZYy_`Q{|p=e>qnkEDw{%0Dr(Nd7ivb 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

5FN@QIzM4h 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%0DcPl#V7T|D$UhrR`K5 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 -MbCgLCioaQ=NUoP%Er=iz^Y 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%0AYnKVc}^iDJV*KKI8XZt5WXsMHK{!EJ!{YL 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 z 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

  • p^w}MhT<(44mFDmp;n0ujxmc2wO%}5 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

    *iL}%U}D-XBx(r(ecp=g64QDJ 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%0Ay1z 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 Date: Wed, 18 Jun 2014 18:29:22 -0700 Subject: [PATCH 068/135] Update README.md --- skills3/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills3/README.md b/skills3/README.md index 7c43657..cc2243a 100644 --- a/skills3/README.md +++ b/skills3/README.md @@ -3,13 +3,13 @@ Skills 3: Telemarketer Script Revisited Introduction -------- -If you recall from (Homework 7)[https://github.com/hackbrightacademy/Homework/tree/master/Homework07], our marketing department is running a new promotion this week for +If you recall from [Homework 7](https://github.com/hackbrightacademy/Homework/tree/master/Homework07), our marketing department is running a new promotion this week for all customers who have placed an order for over 20 Watermelons. They want to make sure all eligible customers know about it, so they've asked the Telemarketing Department to start placing calls. -In (Homework 7)[https://github.com/hackbrightacademy/Homework/tree/master/Homework07], the 'call.py' script used a pair of .csv files to get the data on the customers and the orders. +In [Homework 7](https://github.com/hackbrightacademy/Homework/tree/master/Homework07), the 'call.py' script used a pair of .csv files to get the data on the customers and the orders. Now, we can harness the power of databases to do things the "right" way! Update the 'call.py' script. Some functions have been placed in the script to give you a general idea of the flow we are looking for. From 3934fdaf21445e2303cdee7bbc0817d96574dbe5 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Wed, 18 Jun 2014 18:29:54 -0700 Subject: [PATCH 069/135] Update README.md --- skills3/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills3/README.md b/skills3/README.md index cc2243a..2cb22ce 100644 --- a/skills3/README.md +++ b/skills3/README.md @@ -3,7 +3,7 @@ Skills 3: Telemarketer Script Revisited Introduction -------- -If you recall from [Homework 7](https://github.com/hackbrightacademy/Homework/tree/master/Homework07), our marketing department is running a new promotion this week for +If you recall from [Homework 7](https://github.com/hackbrightacademy/Homework/tree/master/Homework07), our marketing department is running a promotion for all customers who have placed an order for over 20 Watermelons. They want to make sure all eligible customers know about it, so From 7c0d4ddccf596196df04a03367ac4d13acfbca34 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Wed, 18 Jun 2014 18:35:16 -0700 Subject: [PATCH 070/135] Update README.md --- skills3/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/skills3/README.md b/skills3/README.md index 2cb22ce..102f60f 100644 --- a/skills3/README.md +++ b/skills3/README.md @@ -16,10 +16,12 @@ Now, we can harness the power of databases to do things the "right" way! Update Some hints to get you started: * The database relationships are: -** customers have orders -** orders have order_items (An order may be for more than one type of melon) + * customers have orders + * orders have order_items (An order may be for more than one type of melon) * Start by writing the query to just return one customer record, then expand it to filter for only the customers who have ordered over 20 melons. +* Have your get_next_customer() function return the customer data as an instance of the Customer class. + * The database does not currently have a field to track the last time a customer was called. You'll have to add it. From 6cea127e2bce89a98738ed4bcdd4afb78f331590 Mon Sep 17 00:00:00 2001 From: Nicholas Audo Date: Tue, 1 Jul 2014 18:05:01 -0700 Subject: [PATCH 071/135] Everybody gets a README.md! --- .gitignore | 2 ++ Extra01/{README => README.md} | 0 FixErrors/README.md | 0 ListOperations/{README => README.md} | 0 Week_1_Project/{README => README.md} | 0 skills1/README.md | 0 skills2/README.md | 0 7 files changed, 2 insertions(+) rename Extra01/{README => README.md} (100%) create mode 100644 FixErrors/README.md rename ListOperations/{README => README.md} (100%) rename Week_1_Project/{README => README.md} (100%) create mode 100644 skills1/README.md create mode 100644 skills2/README.md diff --git a/.gitignore b/.gitignore index f24cd99..099d141 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ pip-log.txt #Mr Developer .mr.developer.cfg + +_book/* diff --git a/Extra01/README b/Extra01/README.md similarity index 100% rename from Extra01/README rename to Extra01/README.md diff --git a/FixErrors/README.md b/FixErrors/README.md new file mode 100644 index 0000000..e69de29 diff --git a/ListOperations/README b/ListOperations/README.md similarity index 100% rename from ListOperations/README rename to ListOperations/README.md diff --git a/Week_1_Project/README b/Week_1_Project/README.md similarity index 100% rename from Week_1_Project/README rename to Week_1_Project/README.md diff --git a/skills1/README.md b/skills1/README.md new file mode 100644 index 0000000..e69de29 diff --git a/skills2/README.md b/skills2/README.md new file mode 100644 index 0000000..e69de29 From 0e91389669de3c0461e4dd0b9e0ec7a78629ed22 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 21 Aug 2014 12:36:03 -0700 Subject: [PATCH 072/135] Create DataModeling.md --- Whiteboarding/DataModeling.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Whiteboarding/DataModeling.md diff --git a/Whiteboarding/DataModeling.md b/Whiteboarding/DataModeling.md new file mode 100644 index 0000000..6886cfc --- /dev/null +++ b/Whiteboarding/DataModeling.md @@ -0,0 +1,3 @@ +Data Modeling + +In the Movie, "The Dark Crystal", the evil Skeksis are able to restore their youth by draining and consuming the essense from other beings. From c9ee2f1d697926def49c24aed18e3f3606379582 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 21 Aug 2014 12:54:22 -0700 Subject: [PATCH 073/135] Update DataModeling.md --- Whiteboarding/DataModeling.md | 39 +++++++++++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/Whiteboarding/DataModeling.md b/Whiteboarding/DataModeling.md index 6886cfc..f19a2f8 100644 --- a/Whiteboarding/DataModeling.md +++ b/Whiteboarding/DataModeling.md @@ -1,3 +1,38 @@ -Data Modeling +Data Modeling: The Dark Crystal +====== + +Introduction +------ +In the Movie, "The Dark Crystal", the evil Skeksis are able to restore their youth by draining and consuming the essense from other beings. They've driven the Gelfling race to the brink of extinction (only two remain), however there are still plenty of Podlings that can be rounded up. + +The Skeksis consume the essense of a lot of Podlings. They're also a greedy race, so there are constant fights over who has consumed the most essense. The chief prison warden of the Skeksis has request you build him a database to help him keep track of everything. + + +Requirements +------ +Here's what you know: + +* The prison current has 20 cages to hold their captives, though they may want to add more if they get a large haul. +* Each cage can hold up to 5 Podlings or Gelflings. +* Each Podling has a certain amount of essense stored within them. When processed and entered into the system, the Skeksis will measure the essence and record it as an integer between 0-500. +* Gelflings hold a large amount of essense (between 0-10000 units). +* For each prisoner, we need to keep track of: + * Race + * Arrival Date + * Amount of Essense Remaining + * Location (which cage are they in) + +* Skeksis regularly visit the processing facility to consume essense. Need to keep track of: +** Which Skeksis consumed essense +** When the essense was consumed +** From which prisoner the essense was consumed +** How much essense was consumed + +Data Model +------ +Design a database system to store data meeting the above requirements. + +* Plan out what tables you need and what data needs to be stored in each table. +* Note what data types each column should be. +* Define any relationships you would build in between the tables. -In the Movie, "The Dark Crystal", the evil Skeksis are able to restore their youth by draining and consuming the essense from other beings. From 43c1f481585ace2f947264f6a065b77af09c3d25 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 21 Aug 2014 12:59:06 -0700 Subject: [PATCH 074/135] Update DataModeling.md --- Whiteboarding/DataModeling.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Whiteboarding/DataModeling.md b/Whiteboarding/DataModeling.md index f19a2f8..6537970 100644 --- a/Whiteboarding/DataModeling.md +++ b/Whiteboarding/DataModeling.md @@ -5,7 +5,7 @@ Introduction ------ In the Movie, "The Dark Crystal", the evil Skeksis are able to restore their youth by draining and consuming the essense from other beings. They've driven the Gelfling race to the brink of extinction (only two remain), however there are still plenty of Podlings that can be rounded up. -The Skeksis consume the essense of a lot of Podlings. They're also a greedy race, so there are constant fights over who has consumed the most essense. The chief prison warden of the Skeksis has request you build him a database to help him keep track of everything. +The Skeksis consume the essense of a lot of Podlings. They're also a greedy race, so there are constant fights over who has consumed the most essense. The chief prison warden of the Skeksis has requested you build him a database to help him keep track of everything. Requirements @@ -23,10 +23,10 @@ Here's what you know: * Location (which cage are they in) * Skeksis regularly visit the processing facility to consume essense. Need to keep track of: -** Which Skeksis consumed essense -** When the essense was consumed -** From which prisoner the essense was consumed -** How much essense was consumed + * Which Skeksis consumed essense + * When the essense was consumed + * From which prisoner the essense was consumed + * How much essense was consumed Data Model ------ From c4e065a3d7b41b7f014fc345867926dc2b00539a Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Thu, 21 Aug 2014 13:02:59 -0700 Subject: [PATCH 075/135] Update DataModeling.md --- Whiteboarding/DataModeling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Whiteboarding/DataModeling.md b/Whiteboarding/DataModeling.md index 6537970..21e72cb 100644 --- a/Whiteboarding/DataModeling.md +++ b/Whiteboarding/DataModeling.md @@ -3,7 +3,7 @@ Data Modeling: The Dark Crystal Introduction ------ -In the Movie, "The Dark Crystal", the evil Skeksis are able to restore their youth by draining and consuming the essense from other beings. They've driven the Gelfling race to the brink of extinction (only two remain), however there are still plenty of Podlings that can be rounded up. +In the Movie, ["The Dark Crystal"](http://en.wikipedia.org/wiki/The_Dark_Crystal), the evil Skeksis are able to restore their youth by draining and consuming the essense from other beings. They've driven the Gelfling race to the brink of extinction (only two remain), however there are still plenty of Podlings that can be rounded up. The Skeksis consume the essense of a lot of Podlings. They're also a greedy race, so there are constant fights over who has consumed the most essense. The chief prison warden of the Skeksis has requested you build him a database to help him keep track of everything. From d3a6383882f5de1f16f6ed01dda29e00ebb89e3b Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Mon, 8 Sep 2014 12:19:10 -0700 Subject: [PATCH 076/135] Delete ListOperations which duplicates ex04 and fix week-1-project README --- ListOperations/README.md | 37 ---- ListOperations/list_operations.py | 147 ---------------- ListOperations/test_list_operations.py | 229 ------------------------- Week_1_Project/README.md | 32 ++-- 4 files changed, 15 insertions(+), 430 deletions(-) delete mode 100644 ListOperations/README.md delete mode 100644 ListOperations/list_operations.py delete mode 100644 ListOperations/test_list_operations.py diff --git a/ListOperations/README.md b/ListOperations/README.md deleted file mode 100644 index 88559cd..0000000 --- a/ListOperations/README.md +++ /dev/null @@ -1,37 +0,0 @@ -List Operations -=============== - -First, work through the following resources on lists: - * http://learnpythonthehardway.org/book/ex32.html - * http://learnpythonthehardway.org/book/ex33.html - * http://learnpythonthehardway.org/book/ex34.html - * http://learnpythonthehardway.org/book/ex38.html - * http://www.learnpython.org/page/Lists - * http://docs.python.org/tutorial/introduction.html#lists - * http://docs.python.org/tutorial/datastructures.html#more-on-lists - --> stop reading before section 5.1.1 - -In this directory there are two files, list_operations.py and -test_list_operations.py. Try running "python test_list_operations.py" at the CLI -prompt. You should see a lot of console output that ends with the following text: - ----------------------------------------------------------------------- -Ran 25 tests in 0.007s - -FAILED (failures=25) - -The test_list_operations.py file contains tests for the functions defined in -list_operations.py. All the tests are failing because none of the functions are -implemented correctly. Your job is to write correct implementations for all the -functions in list_operations.py. - -To check your work, you can run the test_list_operations.py file at any time to -get information on the currently failing tests. The failures will be listed in -alphabetical order by function name. When all the tests pass, you will see only -the following output: - -......................... ----------------------------------------------------------------------- -Ran 25 tests in 0.002s - -OK diff --git a/ListOperations/list_operations.py b/ListOperations/list_operations.py deleted file mode 100644 index 225d594..0000000 --- a/ListOperations/list_operations.py +++ /dev/null @@ -1,147 +0,0 @@ - -""" -Part 1: Fundamental operations on lists ---------------------------------------- - -The fundamental operations on lists in Python are those that are part of the -language syntax and/or cannot be implemented in terms of other list operations: - * List literals ([], ['hello'], [3, 1, 4, 1, 5, 9], etc.) - * List indexing (some_list[index]) - * List indexing assignment (some_list[index] = value) - * List slicing (some_list[start:end]) - * List slicing assignment (some_list[start:end] = another_list) - * List index deletion (del some_list[index]) - * List slicing deletion (del some_list[start:end]) - -In this section you will implement functions that each use just one of the -operations. The docstring of each function describes what it should do. Consult -test_list_operations.py for concrete examples of the expected function behavior. -""" - -def head(input_list): - """Return the first element of the input list.""" - pass - -def tail(input_list): - """Return all elements of the input list except the first.""" - pass - -def last(input_list): - """Return the last element of the input list.""" - pass - -def init(input_list): - """Return all elements of the input list except the last.""" - pass - -def first_three(input_list): - """Return the first three elements of the input list.""" - pass - -def last_five(input_list): - """Return the last five elements of the input list.""" - pass - -def middle(input_list): - """Return all elements of the input list except the first two and the last - two. - """ - pass - -def inner_four(input_list): - """Return the third, fourth, fifth, and sixth elements of the input list.""" - pass - -def inner_four_end(input_list): - """Return the sixth, fifth, fourth, and third elements from the end of the - list, in that order. - """ - pass - -def replace_head(input_list): - """Replace the head of the input list with the value 42.""" - pass - -def replace_third_and_last(input_list): - """Replace the third and last elements of the input list with the value 37.""" - pass - -def replace_middle(input_list): - """Replace all elements of the input list with the the values 42 and 37, in - that order, except for the first two and last two elements. - """ - pass - -def delete_third_and_seventh(input_list): - """Remove the third and seventh elements of the input list.""" - pass - -def delete_middle(input_list): - """Remove all elements from the input list except for the first two and the - last two. - """ - pass - -""" -Part 2: Derived operations on lists ------------------------------------ - -In this section you will implement your own versions of the standard list methods. -You should use only the primitive operations from Part 1 in your implementations. -For loops are also allowed, such as the following: - for element in some_list: - # Do something with element - -Each custom method imitates a built-in list method, as described by the docstring -for each function. Play with the built-in methods in the Python REPL to get a feel -for how they work before trying to write your custom version. You may also look at -the test_list_operations.py file for concrete examples of expected behavior. -""" - -def custom_len(input_list): - """custom_len(input_list) imitates len(input_list)""" - pass - -def custom_append(input_list, value): - """custom_append(input_list, value) imitates input_list.append(value)""" - pass - -def custom_extend(input_list, values): - """custom_extend(input_list, values) imitates input_list.extend(values)""" - pass - -def custom_insert(input_list, index, value): - """custom_insert(input_list, index, value) imitates - input_list.insert(index, value) - """ - pass - -def custom_remove(input_list, value): - """custom_remove(input_list, value) imitates input_list.remove(value)""" - pass - -def custom_pop(input_list): - """custom_pop(input_list) imitates input_list.pop()""" - pass - -def custom_index(input_list, value): - """custom_index(input_list, value) imitates input_list.index(value)""" - pass - -def custom_count(input_list, value): - """custom_count(input_list, value) imitates input_list.count(value)""" - pass - -def custom_reverse(input_list): - """custom_reverse(input_list) imitates input_list.reverse()""" - pass - -def custom_contains(input_list, value): - """custom_contains(input_list, value) imitates (value in input_list)""" - pass - -def custom_equality(some_list, another_list): - """custom_equality(some_list, another_list) imitates - (some_list == another_list) - """ - pass diff --git a/ListOperations/test_list_operations.py b/ListOperations/test_list_operations.py deleted file mode 100644 index 01be4db..0000000 --- a/ListOperations/test_list_operations.py +++ /dev/null @@ -1,229 +0,0 @@ -import unittest - -from list_operations import * - -class TestListOperations(unittest.TestCase): - - def setUp(self): - self.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', - 'Sep', 'Oct', 'Nov', 'Dec'] - self.notes = ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do'] - self.multiples = [0, 3, 6, 9, 12, 15, 18, 21, 24, 27] - - ### Tests for Part 1 ### - - def test_head(self): - self.assertEqual(head(self.months), 'Jan') - self.assertEqual(head(self.notes), 'Do') - self.assertEqual(head(self.multiples), 0) - - def test_tail(self): - self.assertEqual(tail(self.months), ['Feb', 'Mar', 'Apr', 'May', 'Jun', - 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', - 'Dec']) - self.assertEqual(tail(self.notes), ['Re', 'Mi', 'Fa', 'So', 'La', 'Ti', - 'Do']) - self.assertEqual(tail(self.multiples), [3, 6, 9, 12, 15, 18, 21, 24, 27]) - - def test_last(self): - self.assertEqual(last(self.months), 'Dec') - self.assertEqual(last(self.notes), 'Do') - self.assertEqual(last(self.multiples), 27) - - def test_init(self): - self.assertEqual(init(self.months), ['Jan', 'Feb', 'Mar', 'Apr', 'May', - 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', - 'Nov']) - self.assertEqual(init(self.notes), ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', - 'Ti']) - self.assertEqual(init(self.multiples), [0, 3, 6, 9, 12, 15, 18, 21, 24]) - - def test_first_three(self): - self.assertEqual(first_three(self.months), ['Jan', 'Feb', 'Mar']) - self.assertEqual(first_three(self.notes), ['Do', 'Re', 'Mi']) - self.assertEqual(first_three(self.multiples), [0, 3, 6]) - - def test_last_five(self): - self.assertEqual(last_five(self.months), ['Aug', 'Sep', 'Oct', 'Nov', - 'Dec']) - self.assertEqual(last_five(self.notes), ['Fa', 'So', 'La', 'Ti', 'Do']) - self.assertEqual(last_five(self.multiples), [15, 18, 21, 24, 27]) - - def test_middle(self): - self.assertEqual(middle(self.months), ['Mar', 'Apr', 'May', 'Jun', 'Jul', - 'Aug', 'Sep', 'Oct']) - self.assertEqual(middle(self.notes), ['Mi', 'Fa', 'So', 'La']) - self.assertEqual(middle(self.multiples), [6, 9, 12, 15, 18, 21]) - - def test_inner_four(self): - self.assertEqual(inner_four(self.months), ['Mar', 'Apr', 'May', 'Jun']) - self.assertEqual(inner_four(self.notes), ['Mi', 'Fa', 'So', 'La']) - self.assertEqual(inner_four(self.multiples), [6, 9, 12, 15]) - - def test_inner_four_end(self): - self.assertEqual(inner_four_end(self.months), ['Jul', 'Aug', 'Sep', - 'Oct']) - self.assertEqual(inner_four_end(self.notes), ['Mi', 'Fa', 'So', 'La']) - self.assertEqual(inner_four_end(self.multiples), [12, 15, 18, 21]) - - def test_replace_head(self): - replace_head(self.months) - replace_head(self.notes) - replace_head(self.multiples) - - self.assertEqual(self.months, [42, 'Feb', 'Mar', 'Apr', 'May', 'Jun', - 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']) - self.assertEqual(self.notes, [42, 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', - 'Do']) - self.assertEqual(self.multiples, [42, 3, 6, 9, 12, 15, 18, 21, 24, 27]) - - def test_replace_third_and_last(self): - replace_third_and_last(self.months) - replace_third_and_last(self.notes) - replace_third_and_last(self.multiples) - - self.assertEqual(self.months, ['Jan', 'Feb', 37, 'Apr', 'May', 'Jun', - 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 37]) - self.assertEqual(self.notes, ['Do', 'Re', 37, 'Fa', 'So', 'La', 'Ti', 37]) - self.assertEqual(self.multiples, [0, 3, 37, 9, 12, 15, 18, 21, 24, 37]) - - def test_replace_middle(self): - replace_middle(self.months) - replace_middle(self.notes) - replace_middle(self.multiples) - - self.assertEqual(self.months, ['Jan', 'Feb', 42, 37, 'Nov', 'Dec']) - self.assertEqual(self.notes, ['Do', 'Re', 42, 37, 'Ti', 'Do']) - self.assertEqual(self.multiples, [0, 3, 42, 37, 24, 27]) - - def test_delete_third_and_seventh(self): - delete_third_and_seventh(self.months) - delete_third_and_seventh(self.notes) - delete_third_and_seventh(self.multiples) - - self.assertEqual(self.months, ['Jan', 'Feb', 'Apr', 'May', 'Jun', 'Aug', - 'Sep', 'Oct', 'Nov', 'Dec']) - self.assertEqual(self.notes, ['Do', 'Re', 'Fa', 'So', 'La', 'Do']) - self.assertEqual(self.multiples, [0, 3, 9, 12, 15, 21, 24, 27]) - - def test_delete_middle(self): - delete_middle(self.months) - delete_middle(self.notes) - delete_middle(self.multiples) - - self.assertEqual(self.months, ['Jan', 'Feb', 'Nov', 'Dec']) - self.assertEqual(self.notes, ['Do', 'Re', 'Ti', 'Do']) - self.assertEqual(self.multiples, [0, 3, 24, 27]) - - ### Tests for Part 2 ### - - def test_custom_len(self): - self.assertEqual(custom_len(self.months), 12) - self.assertEqual(custom_len(self.notes), 8) - self.assertEqual(custom_len(self.multiples), 10) - - def test_custom_append(self): - custom_append(self.months, 'Hex') - custom_append(self.notes, 'Re') - custom_append(self.multiples, 30) - - self.assertEqual(self.months, ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', - 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', - 'Hex']) - self.assertEqual(self.notes, ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', - 'Do', 'Re']) - self.assertEqual(self.multiples, [0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30]) - - def test_custom_extend(self): - custom_extend(self.months, ['Bin', 'Tri', 'Hex']) - custom_extend(self.notes, ['Re', 'Mi', 'Fa', 'So']) - custom_extend(self.multiples, [30, 33, 36, 39, 42, 45]) - - self.assertEqual(self.months, ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', - 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', - 'Bin', 'Tri', 'Hex']) - self.assertEqual(self.notes, ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', - 'Do', 'Re', 'Mi', 'Fa', 'So']) - self.assertEqual(self.multiples, [0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, - 33, 36, 39, 42, 45]) - - def test_custom_insert(self): - custom_insert(self.months, 8, 'Hex') - custom_insert(self.notes, len(self.notes), 'Re') - custom_insert(self.multiples, 0, -3) - - self.assertEqual(self.months, ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', - 'Jul', 'Aug', 'Hex', 'Sep', 'Oct', 'Nov', - 'Dec']) - self.assertEqual(self.notes, ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti', - 'Do', 'Re']) - self.assertEqual(self.multiples, [-3, 0, 3, 6, 9, 12, 15, 18, 21, 24, 27]) - - def test_custom_remove(self): - custom_remove(self.months, 'Jul') - custom_remove(self.notes, 'Do') - custom_remove(self.multiples, 27) - - self.assertEqual(self.months, ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', - 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']) - self.assertEqual(self.notes, ['Re', 'Mi', 'Fa', 'So', 'La', 'Ti', 'Do']) - self.assertEqual(self.multiples, [0, 3, 6, 9, 12, 15, 18, 21, 24]) - - def test_custom_pop(self): - self.assertEqual(custom_pop(self.months), 'Dec') - self.assertEqual(custom_pop(self.notes), 'Do') - self.assertEqual(custom_pop(self.multiples), 27) - - self.assertEqual(self.months, ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', - 'Jul', 'Aug', 'Sep', 'Oct', 'Nov']) - self.assertEqual(self.notes, ['Do', 'Re', 'Mi', 'Fa', 'So', 'La', 'Ti']) - self.assertEqual(self.multiples, [0, 3, 6, 9, 12, 15, 18, 21, 24]) - - def test_custom_index(self): - self.assertEqual(custom_index(self.months, 'Jul'), 6) - self.assertEqual(custom_index(self.notes, 'Do'), 0) - self.assertEqual(custom_index(self.multiples, 27), 9) - - def test_custom_count(self): - self.assertEqual(custom_count(self.months, 'Jul'), 1) - self.assertEqual(custom_count(self.notes, 'Do'), 2) - self.assertEqual(custom_count(self.multiples, 27), 1) - - def test_custom_reverse(self): - custom_reverse(self.months) - custom_reverse(self.notes) - custom_reverse(self.multiples) - - self.assertEqual(self.months, ['Dec', 'Nov', 'Oct', 'Sep', 'Aug', 'Jul', - 'Jun', 'May', 'Apr', 'Mar', 'Feb', 'Jan']) - self.assertEqual(self.notes, ['Do', 'Ti', 'La', 'So', 'Fa', 'Mi', 'Re', - 'Do']) - self.assertEqual(self.multiples, [27, 24, 21, 18, 15, 12, 9, 6, 3, 0]) - - def test_custom_contains(self): - self.assertTrue(custom_contains(self.months, 'Jul')) - self.assertTrue(custom_contains(self.notes, 'Do')) - self.assertTrue(custom_contains(self.multiples, 27)) - - self.assertFalse(custom_contains(self.months, 'Hex')) - self.assertFalse(custom_contains(self.notes, 'Go')) - self.assertFalse(custom_contains(self.multiples, 30)) - - def test_custom_equality(self): - self.assertTrue(custom_equality(self.months, ['Jan', 'Feb', 'Mar', 'Apr', - 'May', 'Jun', 'Jul', 'Aug', - 'Sep', 'Oct', 'Nov', 'Dec'])) - self.assertTrue(custom_equality(self.notes, ['Do', 'Re', 'Mi', 'Fa', 'So', - 'La', 'Ti', 'Do'])) - self.assertTrue(custom_equality(self.multiples, [0, 3, 6, 9, 12, 15, 18, - 21, 24, 27])) - - self.assertFalse(custom_equality(self.months, ['Jan', 'Feb', 'Mar', 'Apr', - 'May', 'Jun', 'Aug', 'Sep', - 'Oct', 'Nov', 'Dec'])) - self.assertFalse(custom_equality(self.notes, self.notes[::-1])) - self.assertFalse(custom_equality(self.multiples, [0, 3, 6, 9, 12, 15, 18, - 21, 24])) - -if __name__ == '__main__': - unittest.main() diff --git a/Week_1_Project/README.md b/Week_1_Project/README.md index 9801bc6..a2b57d8 100644 --- a/Week_1_Project/README.md +++ b/Week_1_Project/README.md @@ -3,25 +3,25 @@ Project 1: Looping, file manipulation, panic Introduction ------- -This exercise is difficult and should take several days. +This exercise is difficult and should take several days. Resources: - * http://learnpythonthehardway.org/book/ex32.html - * http://learnpythonthehardway.org/book/ex34.html - * http://www.learnpython.org/Lists - * http://www.learnpython.org/Loops - * http://www.learnpython.org/Basic_String_Operations - * http://docs.python.org/library/os.html#os.listdir - * http://docs.python.org/library/os.html#os.chdir - * http://docs.python.org/library/os.path.html#os.path.exists - * http://docs.python.org/library/shutil.html#shutil.move +* http://learnpythonthehardway.org/book/ex32.html +* http://learnpythonthehardway.org/book/ex34.html +* http://www.learnpython.org/en/Lists +* http://www.learnpython.org/en/Loops +* http://www.learnpython.org/en/Basic_String_Operations +* http://docs.python.org/library/os.html#os.listdir +* http://docs.python.org/library/os.html#os.chdir +* http://docs.python.org/library/os.path.html#os.path.exists +* http://docs.python.org/library/shutil.html#shutil.move Concepts required: - * for loops - * conditionals - * lists - * paths - * substrings +* for loops +* conditionals +* lists +* paths +* substrings Description ------- @@ -40,5 +40,3 @@ Your job is to write a program, ex1.py, that does the following things: ### Example: The file named 'artichoke.txt' would go into the directory 'a', 'bartholomew.txt' would go into 'b'. - - From 079b6ec2ecde6166744cbc807bee6a4ebc7ee410 Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Mon, 8 Sep 2014 12:34:16 -0700 Subject: [PATCH 077/135] Add links to Exercise01 README --- Exercise01/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 7a2f3f1..316b49e 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -12,6 +12,8 @@ Take a look at these online resources before you attempt this exercise. If you g * http://learnpythonthehardway.org/book/ex30.html * http://learnpythonthehardway.org/book/ex31.html * http://learnpythonthehardway.org/book/ex33.html +* http://learnpython.org/en/Loops +* https://docs.python.org/2/library/functions.html#int Concepts required: * while loops @@ -52,7 +54,7 @@ Description Write a program named guess.py that plays the 'number guessing game'. The computer will choose a random number between 1 and 100, and ask the user to guess the number, giving them a hint if it's high or low. A sample game looks like this: ``` -Meringue:guessing chriszf$ python ./guess.py +Meringue:guessing chriszf$ python ./guess.py Howdy, what's your name? (type in your name) Christian Christian, I'm thinking of a number between 1 and 100. Try to guess my number. @@ -88,7 +90,7 @@ A rough pseudocode outline of the program will look like this: else: congratulate player - + Version Control (git) ------- While you're writing your code, try and remember to use 'git' at various points to save your progress. If you've never used version control before, it's a lot like enabling "Track Changes" in a Microsoft Word document. Every time you "commit" your code, you're saving a snapshot in time. If you make a change you don't like or mess something up, you can rollback to a previous commit. @@ -117,7 +119,7 @@ So if you take the rough pseudocode outline from above, you'll probably want to 1. git commit -m "Getting the Player's Name" 1. git status 1. Sensing a pattern yet? Repeat for the next steps, testing your code at each step. When you have a step working, save it! - + As you get more comfortable with git, you won't need to do a 'git status' at every step. We're only having you do that here so you can see what is happening at each step and get used to the messages that git returns. ## Go Back! @@ -129,4 +131,3 @@ So if you're code is broken or you explored an idea that didn't turn out the way git reset --hard HEAD *WARNING:* This will erase any changes you have not committed, so please use with care! - From b3ed69a8fab77bc9fbcf41c35cb880d05b248199 Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Mon, 8 Sep 2014 12:53:33 -0700 Subject: [PATCH 078/135] Fix exercise06 README --- Exercise06/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index d156dc9..01323d7 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -51,7 +51,7 @@ scores = {"Bob": 10, "Joe": 3, "Jack": 6, "Jane": 15} ``` ``` print "Joe's score is %d" % (scores['Joe']) -=> Joe's score is 3 +=> Joe's score is 3 ``` ###Some useful methods: @@ -87,7 +87,7 @@ and value elements of each dictionary entry in turn. ###Dictionary Exercises (do these first): -* http://learnpythonthehardway.org/book/ex39.html (Stop at "Making Your Own Dictionary Functions") +* http://learnpythonthehardway.org/book/ex39.html (Stop at "Making Your Own Dictionary Modules") * http://docs.python.org/tutorial/datastructures.html#dictionaries * http://www.learnpython.org/en/Dictionaries * http://docs.python.org/library/stdtypes.html#mapping-types-dict @@ -130,7 +130,7 @@ Your job is to write a program named ```'sorted_data.py'``` reads the file, then Sample output: ``` -Meringue:Exercise07 chriszf$ python sorted_data.py +Meringue:Exercise07 chriszf$ python sorted_data.py Restaurant 'Andalu' is rated at 3. Restaurant "Arinell's" is rated at 4. Restaurant 'Bay Blend Coffee and Tea' is rated at 3. From b0b1fb4ca37d3925db8bc37e4431f4057caf0539 Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Tue, 9 Sep 2014 11:40:33 -0700 Subject: [PATCH 079/135] Fix ambiguous instructions --- skills1/skills1.py | 25 ++++++++++++++----------- skills2/skills2.py | 6 +++--- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/skills1/skills1.py b/skills1/skills1.py index 1a51a52..eb6a068 100644 --- a/skills1/skills1.py +++ b/skills1/skills1.py @@ -1,11 +1,14 @@ # Things you should be able to do. -# Write a function that takes a list and returns a new list with only the odd numbers. -def all_odd(some_list): +number_list = [-5, 6, 4, 8, 15, 16, 23, 42, 2, 7] +word_list = [ "What", "about", "the", "Spam", "sausage", "spam", "spam", "bacon", "spam", "tomato", "and", "spam"] + +# Write a function that takes a list of numbers and returns a new list with only the odd numbers. +def all_odd(number_list): return [] -# Write a function that takes a list and returns a new list with only the even numbers. -def all_even(some_list): +# Write a function that takes a list of numbers and returns a new list with only the even numbers. +def all_even(number_list): return [] # Write a function that takes a list of strings and a new list with all strings of length 4 or greater. @@ -13,15 +16,15 @@ def long_words(word_list): return [] # Write a function that finds the smallest element in a list of integers and returns it. -def smallest(some_list): +def smallest(number_list): return None # Write a function that finds the largest element in a list of integers and returns it. -def largest(some_list): +def largest(number_list): return None # Write a function that takes a list of numbers and returns a new list of all those numbers divided by two. -def halvesies(some_list): +def halvesies(number_list): return [] # Write a function that takes a list of words and returns a list of all the lengths of those words. @@ -29,17 +32,17 @@ def word_lengths(word_list): return [] # Write a function (using iteration) that sums all the numbers in a list. -def sum_numbers(numbers): +def sum_numbers(number_list): return 0 # Write a function that multiplies all the numbers in a list together. -def mult_numbers(numbers): +def mult_numbers(number_list): return 0 # Write a function that joins all the strings in a list together (without using the join method) and returns a single string. -def join_strings(string_list): +def join_strings(word_list): return "" # Write a function that takes a list of integers and returns the average (without using the avg method) -def average(numbers): +def average(number_list): return 0 diff --git a/skills2/skills2.py b/skills2/skills2.py index 2ac3cbd..e732f78 100644 --- a/skills2/skills2.py +++ b/skills2/skills2.py @@ -1,7 +1,7 @@ string1 = "I do not like green eggs and ham." list1 = [2, 5, 12, 6, 1, -5, 8, 5, 6, -2, 2, 27] list2 = [-5, 6, 4, 8, 15, 16, 23, 42, 2, 7] -words = ["I", "do", "not", "like", "green", "eggs", "and", "ham", "I", "do", "not", "like", "them", "San", "I", "am"] +words = ["I", "do", "not", "like", "green", "eggs", "and", "ham", "I", "do", "not", "like", "them", "Sam", "I", "am"] """ Write a function that takes a string and produces a dictionary with @@ -13,14 +13,14 @@ def count_unique(string1): pass """ -Given two lists, (without using the keyword 'in' or the method 'index') +Given two lists, (without using the keywords 'if __ in ____' or the method 'index') return a list of all common items shared between both lists """ def common_items(list1, list2): pass """ -Given two lists, (without using the keyword 'in' or the method 'index') +Given two lists, (without using 'if __ in ____' or 'index') return a list of all common items shared between both lists. This time, use a dictionary as part of your solution. """ From b43c33912971a12db123156ad33b5f7ccdc5d7ce Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Thu, 11 Sep 2014 14:18:23 -0700 Subject: [PATCH 080/135] Fix example, off by one --- Whiteboarding/Puzzles/task5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Whiteboarding/Puzzles/task5.py b/Whiteboarding/Puzzles/task5.py index b2dfbd2..c721b82 100644 --- a/Whiteboarding/Puzzles/task5.py +++ b/Whiteboarding/Puzzles/task5.py @@ -5,6 +5,6 @@ eg: s = "Hello, good sir" becomes - s = "Hello sir" + s = "Hellosir" """ s = "Hi there, my name is Slim" From 7090444fd45cf7749ff8d1d654693f190e1e0cd3 Mon Sep 17 00:00:00 2001 From: ktel1218 Date: Thu, 18 Sep 2014 17:39:35 -0700 Subject: [PATCH 081/135] Update README.md make to not suck/be better/different difficult --- skills3/README.md | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/skills3/README.md b/skills3/README.md index 102f60f..c52412d 100644 --- a/skills3/README.md +++ b/skills3/README.md @@ -3,25 +3,27 @@ Skills 3: Telemarketer Script Revisited Introduction -------- -If you recall from [Homework 7](https://github.com/hackbrightacademy/Homework/tree/master/Homework07), our marketing department is running a promotion for -all customers who have placed an order for over 20 Watermelons. +If you recall from [Homework 7](https://github.com/hackbrightacademy/Homework/tree/master/Homework07), our telemarketing team uses a script to call customers for a promotion. The 'call.py' script used a pair of .csv files to get the data on the customers and the orders. -They want to make sure all eligible customers know about it, so -they've asked the Telemarketing Department to start placing calls. +Now, we can harness the power of databases to do things the "right" way! We're going to create a database based on the csv files from the homework and update the 'call.py' script so that it connects to our new database. -In [Homework 7](https://github.com/hackbrightacademy/Homework/tree/master/Homework07), the 'call.py' script used a pair of .csv files to get the data on the customers and the orders. - -Now, we can harness the power of databases to do things the "right" way! Update the 'call.py' script. Some functions have been placed in the script to give you a general idea of the flow we are looking for. +* Create a new database with tables to hold customers and orders +* Write a python script to load the data from the CSV files and INSERT it into your database +* Copy the call.py script from the homework and update it to connect to the database and find the next customer to call +* Update the database to mark customers as "called" with the current date. Some hints to get you started: -* The database relationships are: - * customers have orders - * orders have order_items (An order may be for more than one type of melon) +* Refer back to [SQL lesson](https://github.com/hackbrightacademy/sql_lesson) for how to create a table and insert into it. +* Write a separate script to "seed" your database. Don't be afraid to delete your database if you get something wrong. +* When you get to querying for your next customer, start by ignoring the part about 20 watermelons, and just return any customer. + -* Start by writing the query to just return one customer record, then expand it to filter for only the customers who have ordered over 20 melons. +Extra Credit +------------- -* Have your get_next_customer() function return the customer data as an instance of the Customer class. +* Update your script to only return customers who have ordered more than 20 watermelons. +* Have your get_next_customer() function return the customer data as an instance of a Customer class. +* Update your script so it returns customers who have not been called in the last 30 days. (THIS IS HARD, AND MAY REQUIRE REFORMATTING YOUR DATABASE) -* The database does not currently have a field to track the last time a customer was called. You'll have to add it. From 184f4c782755752d612b3053c54e50edb4338059 Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Tue, 30 Sep 2014 01:31:41 -0700 Subject: [PATCH 082/135] Updated for revised git processes. - Use `git commit -a -m` rather than `git add; git commit -m` as our standard git process. - Add `git log` statements after checkins to help students get used to reading git's logs. --- Exercise01/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 316b49e..967dc3f 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -108,16 +108,16 @@ So if you take the rough pseudocode outline from above, you'll probably want to 1. git status 1. git add guessing.py 1. git status - 1. git commit -m "Greeting the Player" + 1. git commit -a -m "Greeting the Player" 1. git status + 1. git log 1. Ok, on to the next step! Get the player's name. 1. Test your code! 1. Does it work? Time to save! 1. git status - 1. git add guessing.py - 1. git status - 1. git commit -m "Getting the Player's Name" + 1. git commit -a -m "Getting the Player's Name" 1. git status + 1. git log 1. Sensing a pattern yet? Repeat for the next steps, testing your code at each step. When you have a step working, save it! As you get more comfortable with git, you won't need to do a 'git status' at every step. We're only having you do that here so you can see what is happening at each step and get used to the messages that git returns. @@ -128,6 +128,6 @@ At some point, if you didn't make a mistake in your code, go ahead and break som So if you're code is broken or you explored an idea that didn't turn out the way you wanted it to and you just want to go back to your last commit, try: - git reset --hard HEAD + git reset --hard -*WARNING:* This will erase any changes you have not committed, so please use with care! +*WARNING:* This will erase any changes you have not committed to git, so please use with care! From 43c96d96772465b7dd2ef620b255cad563c6e943 Mon Sep 17 00:00:00 2001 From: Nick Avgerinos Date: Tue, 30 Sep 2014 12:57:06 -0700 Subject: [PATCH 083/135] Added extra credit --- Exercise01/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Exercise01/README.md b/Exercise01/README.md index 967dc3f..ee4adf2 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -131,3 +131,15 @@ So if you're code is broken or you explored an idea that didn't turn out the way git reset --hard *WARNING:* This will erase any changes you have not committed to git, so please use with care! + + +Extra Credit +------- +When you think you've finished, call an instructor over for a code review. + +After that, make your program a little more user friendly: + +1. If the user inputs something that is not a number, mock them for their crimes and ask them to enter a valid number. +2. If the user inputs a number that isn't between 1-100 as requested, mock them for their crimes and ask them to enter a valid number. +3. Ask the user if they would like to play again and restart the game rather than exiting. +4. Keep track of the "high score" (or is that low score?) and display that when you congratulate the user From d5441eb8fb26a8a5a6587e46495b2af5872b2c57 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Thu, 2 Oct 2014 12:09:16 -0700 Subject: [PATCH 084/135] added comment re:code review --- Exercise04/list_operations.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index 8c66a12..fb54350 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -82,6 +82,10 @@ def delete_middle(input_list): """ pass +""" +Now would be a great time to ask for a code review. +""" + """ Part 2: Derived operations on lists ----------------------------------- From 7ec388a6619e895d78870824babdae569884fc99 Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Mon, 6 Oct 2014 19:44:18 -0700 Subject: [PATCH 085/135] Convert twain.txt to standard unix-style text. Previous version was Windows-style CR-endings and included Windows-style BOM for Unicode. This is fine but caused breakage for students doing interesting things with ord() on the characters in the file. Now a plaintext, Unix-line-ended file. --- Exercise07/twain.txt | 26620 ++++++++++++++++++++--------------------- 1 file changed, 13310 insertions(+), 13310 deletions(-) diff --git a/Exercise07/twain.txt b/Exercise07/twain.txt index 3c78467..0572204 100644 --- a/Exercise07/twain.txt +++ b/Exercise07/twain.txt @@ -1,13310 +1,13310 @@ -The Project Gutenberg EBook of A Connecticut Yankee in King Arthur's -Court, Complete, by Mark Twain (Samuel Clemens) - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - - -Title: A Connecticut Yankee in King Arthur's Court, Complete - -Author: Mark Twain (Samuel Clemens) - -Release Date: July 20, 2006 [EBook #86] -Last Updated: May 19, 2010 - -Language: English - - -*** START OF THIS PROJECT GUTENBERG EBOOK CONNECTICUT YANKEE *** - - - - -Produced by David Widger and Janet Blenkinship - - - - - - -A CONNECTICUT YANKEE IN KING ARTHUR'S COURT - -by - -MARK TWAIN -(Samuel L. Clemens) - - - - -PREFACE - -The ungentle laws and customs touched upon in this tale are -historical, and the episodes which are used to illustrate them -are also historical. It is not pretended that these laws and -customs existed in England in the sixth century; no, it is only -pretended that inasmuch as they existed in the English and other -civilizations of far later times, it is safe to consider that it is -no libel upon the sixth century to suppose them to have been in -practice in that day also. One is quite justified in inferring -that whatever one of these laws or customs was lacking in that -remote time, its place was competently filled by a worse one. - -The question as to whether there is such a thing as divine right -of kings is not settled in this book. It was found too difficult. -That the executive head of a nation should be a person of lofty -character and extraordinary ability, was manifest and indisputable; -that none but the Deity could select that head unerringly, was -also manifest and indisputable; that the Deity ought to make that -selection, then, was likewise manifest and indisputable; consequently, -that He does make it, as claimed, was an unavoidable deduction. -I mean, until the author of this book encountered the Pompadour, -and Lady Castlemaine, and some other executive heads of that kind; -these were found so difficult to work into the scheme, that it -was judged better to take the other tack in this book (which -must be issued this fall), and then go into training and settle -the question in another book. It is, of course, a thing which -ought to be settled, and I am not going to have anything particular -to do next winter anyway. - -MARK TWAIN - -HARTFORD, July 21, 1889 - - - - - - -A CONNECTICUT YANKEE IN KING ARTHUR'S COURT - - - - -A WORD OF EXPLANATION - -It was in Warwick Castle that I came across the curious stranger -whom I am going to talk about. He attracted me by three things: -his candid simplicity, his marvelous familiarity with ancient armor, -and the restfulness of his company--for he did all the talking. -We fell together, as modest people will, in the tail of the herd -that was being shown through, and he at once began to say things -which interested me. As he talked along, softly, pleasantly, -flowingly, he seemed to drift away imperceptibly out of this world -and time, and into some remote era and old forgotten country; -and so he gradually wove such a spell about me that I seemed -to move among the specters and shadows and dust and mold of a gray -antiquity, holding speech with a relic of it! Exactly as I would -speak of my nearest personal friends or enemies, or my most familiar -neighbors, he spoke of Sir Bedivere, Sir Bors de Ganis, Sir Launcelot -of the Lake, Sir Galahad, and all the other great names of the -Table Round--and how old, old, unspeakably old and faded and dry -and musty and ancient he came to look as he went on! Presently -he turned to me and said, just as one might speak of the weather, -or any other common matter-- - -"You know about transmigration of souls; do you know about -transposition of epochs--and bodies?" - -I said I had not heard of it. He was so little interested--just -as when people speak of the weather--that he did not notice -whether I made him any answer or not. There was half a moment -of silence, immediately interrupted by the droning voice of the -salaried cicerone: - -"Ancient hauberk, date of the sixth century, time of King Arthur -and the Round Table; said to have belonged to the knight Sir Sagramor -le Desirous; observe the round hole through the chain-mail in -the left breast; can't be accounted for; supposed to have been -done with a bullet since invention of firearms--perhaps maliciously -by Cromwell's soldiers." - -My acquaintance smiled--not a modern smile, but one that must -have gone out of general use many, many centuries ago--and muttered -apparently to himself: - -"Wit ye well, _I saw it done_." Then, after a pause, added: -"I did it myself." - -By the time I had recovered from the electric surprise of this -remark, he was gone. - -All that evening I sat by my fire at the Warwick Arms, steeped -in a dream of the olden time, while the rain beat upon the windows, -and the wind roared about the eaves and corners. From time to -time I dipped into old Sir Thomas Malory's enchanting book, and -fed at its rich feast of prodigies and adventures, breathed in -the fragrance of its obsolete names, and dreamed again. Midnight -being come at length, I read another tale, for a nightcap--this -which here follows, to wit: - -HOW SIR LAUNCELOT SLEW TWO GIANTS, AND MADE A CASTLE FREE - - Anon withal came there upon him two great giants, - well armed, all save the heads, with two horrible - clubs in their hands. Sir Launcelot put his shield - afore him, and put the stroke away of the one - giant, and with his sword he clave his head asunder. - When his fellow saw that, he ran away as he were - wood [*demented], for fear of the horrible strokes, - and Sir Launcelot after him with all his might, - and smote him on the shoulder, and clave him to - the middle. Then Sir Launcelot went into the hall, - and there came afore him three score ladies and - damsels, and all kneeled unto him, and thanked - God and him of their deliverance. For, sir, said - they, the most part of us have been here this - seven year their prisoners, and we have worked all - manner of silk works for our meat, and we are all - great gentle-women born, and blessed be the time, - knight, that ever thou wert born; for thou hast - done the most worship that ever did knight in the - world, that will we bear record, and we all pray - you to tell us your name, that we may tell our - friends who delivered us out of prison. Fair - damsels, he said, my name is Sir Launcelot du - Lake. And so he departed from them and betaught - them unto God. And then he mounted upon his - horse, and rode into many strange and wild - countries, and through many waters and valleys, - and evil was he lodged. And at the last by - fortune him happened against a night to come to - a fair courtilage, and therein he found an old - gentle-woman that lodged him with a good-will, - and there he had good cheer for him and his horse. - And when time was, his host brought him into a - fair garret over the gate to his bed. There - Sir Launcelot unarmed him, and set his harness - by him, and went to bed, and anon he fell on - sleep. So, soon after there came one on - horseback, and knocked at the gate in great - haste. And when Sir Launcelot heard this he rose - up, and looked out at the window, and saw by the - moonlight three knights come riding after that - one man, and all three lashed on him at once - with swords, and that one knight turned on them - knightly again and defended him. Truly, said - Sir Launcelot, yonder one knight shall I help, - for it were shame for me to see three knights - on one, and if he be slain I am partner of his - death. And therewith he took his harness and - went out at a window by a sheet down to the four - knights, and then Sir Launcelot said on high, - Turn you knights unto me, and leave your - fighting with that knight. And then they all - three left Sir Kay, and turned unto Sir Launcelot, - and there began great battle, for they alight - all three, and strake many strokes at Sir - Launcelot, and assailed him on every side. Then - Sir Kay dressed him for to have holpen Sir - Launcelot. Nay, sir, said he, I will none of - your help, therefore as ye will have my help - let me alone with them. Sir Kay for the pleasure - of the knight suffered him for to do his will, - and so stood aside. And then anon within six - strokes Sir Launcelot had stricken them to the earth. - - And then they all three cried, Sir Knight, we - yield us unto you as man of might matchless. As - to that, said Sir Launcelot, I will not take - your yielding unto me, but so that ye yield - you unto Sir Kay the seneschal, on that covenant - I will save your lives and else not. Fair knight, - said they, that were we loath to do; for as for - Sir Kay we chased him hither, and had overcome - him had ye not been; therefore, to yield us unto - him it were no reason. Well, as to that, said - Sir Launcelot, advise you well, for ye may - choose whether ye will die or live, for an ye be - yielden, it shall be unto Sir Kay. Fair knight, - then they said, in saving our lives we will do - as thou commandest us. Then shall ye, said Sir - Launcelot, on Whitsunday next coming go unto the - court of King Arthur, and there shall ye yield - you unto Queen Guenever, and put you all three - in her grace and mercy, and say that Sir Kay - sent you thither to be her prisoners. On the morn - Sir Launcelot arose early, and left Sir Kay - sleeping; and Sir Launcelot took Sir Kay's armor - and his shield and armed him, and so he went to - the stable and took his horse, and took his leave - of his host, and so he departed. Then soon after - arose Sir Kay and missed Sir Launcelot; and - then he espied that he had his armor and his - horse. Now by my faith I know well that he will - grieve some of the court of King Arthur; for on - him knights will be bold, and deem that it is I, - and that will beguile them; and because of his - armor and shield I am sure I shall ride in peace. - And then soon after departed Sir Kay, and - thanked his host. - - -As I laid the book down there was a knock at the door, and my -stranger came in. I gave him a pipe and a chair, and made him -welcome. I also comforted him with a hot Scotch whisky; gave him -another one; then still another--hoping always for his story. -After a fourth persuader, he drifted into it himself, in a quite -simple and natural way: - - - -THE STRANGER'S HISTORY - -I am an American. I was born and reared in Hartford, in the State -of Connecticut--anyway, just over the river, in the country. So -I am a Yankee of the Yankees--and practical; yes, and nearly -barren of sentiment, I suppose--or poetry, in other words. My -father was a blacksmith, my uncle was a horse doctor, and I was -both, along at first. Then I went over to the great arms factory -and learned my real trade; learned all there was to it; learned -to make everything: guns, revolvers, cannon, boilers, engines, all -sorts of labor-saving machinery. Why, I could make anything -a body wanted--anything in the world, it didn't make any difference -what; and if there wasn't any quick new-fangled way to make a thing, -I could invent one--and do it as easy as rolling off a log. I became -head superintendent; had a couple of thousand men under me. - -Well, a man like that is a man that is full of fight--that goes -without saying. With a couple of thousand rough men under one, -one has plenty of that sort of amusement. I had, anyway. At last -I met my match, and I got my dose. It was during a misunderstanding -conducted with crowbars with a fellow we used to call Hercules. -He laid me out with a crusher alongside the head that made everything -crack, and seemed to spring every joint in my skull and made it -overlap its neighbor. Then the world went out in darkness, and -I didn't feel anything more, and didn't know anything at all ---at least for a while. - -When I came to again, I was sitting under an oak tree, on the -grass, with a whole beautiful and broad country landscape all -to myself--nearly. Not entirely; for there was a fellow on a horse, -looking down at me--a fellow fresh out of a picture-book. He was -in old-time iron armor from head to heel, with a helmet on his -head the shape of a nail-keg with slits in it; and he had a shield, -and a sword, and a prodigious spear; and his horse had armor on, -too, and a steel horn projecting from his forehead, and gorgeous -red and green silk trappings that hung down all around him like -a bedquilt, nearly to the ground. - -"Fair sir, will ye just?" said this fellow. - -"Will I which?" - -"Will ye try a passage of arms for land or lady or for--" - -"What are you giving me?" I said. "Get along back to your circus, -or I'll report you." - -Now what does this man do but fall back a couple of hundred yards -and then come rushing at me as hard as he could tear, with his -nail-keg bent down nearly to his horse's neck and his long spear -pointed straight ahead. I saw he meant business, so I was up -the tree when he arrived. - -He allowed that I was his property, the captive of his spear. -There was argument on his side--and the bulk of the advantage ---so I judged it best to humor him. We fixed up an agreement -whereby I was to go with him and he was not to hurt me. I came -down, and we started away, I walking by the side of his horse. -We marched comfortably along, through glades and over brooks which -I could not remember to have seen before--which puzzled me and -made me wonder--and yet we did not come to any circus or sign of -a circus. So I gave up the idea of a circus, and concluded he was -from an asylum. But we never came to an asylum--so I was up -a stump, as you may say. I asked him how far we were from Hartford. -He said he had never heard of the place; which I took to be a lie, -but allowed it to go at that. At the end of an hour we saw a -far-away town sleeping in a valley by a winding river; and beyond -it on a hill, a vast gray fortress, with towers and turrets, -the first I had ever seen out of a picture. - -"Bridgeport?" said I, pointing. - -"Camelot," said he. - - -My stranger had been showing signs of sleepiness. He caught -himself nodding, now, and smiled one of those pathetic, obsolete -smiles of his, and said: - -"I find I can't go on; but come with me, I've got it all written -out, and you can read it if you like." - -In his chamber, he said: "First, I kept a journal; then by and by, -after years, I took the journal and turned it into a book. How -long ago that was!" - -He handed me his manuscript, and pointed out the place where -I should begin: - -"Begin here--I've already told you what goes before." He was -steeped in drowsiness by this time. As I went out at his door -I heard him murmur sleepily: "Give you good den, fair sir." - -I sat down by my fire and examined my treasure. The first part -of it--the great bulk of it--was parchment, and yellow with age. -I scanned a leaf particularly and saw that it was a palimpsest. -Under the old dim writing of the Yankee historian appeared traces -of a penmanship which was older and dimmer still--Latin words -and sentences: fragments from old monkish legends, evidently. -I turned to the place indicated by my stranger and began to read ---as follows: - - - - -THE TALE OF THE LOST LAND - - - - -CHAPTER I - -CAMELOT - -"Camelot--Camelot," said I to myself. "I don't seem to remember -hearing of it before. Name of the asylum, likely." - -It was a soft, reposeful summer landscape, as lovely as a dream, -and as lonesome as Sunday. The air was full of the smell of -flowers, and the buzzing of insects, and the twittering of birds, -and there were no people, no wagons, there was no stir of life, -nothing going on. The road was mainly a winding path with hoof-prints -in it, and now and then a faint trace of wheels on either side in -the grass--wheels that apparently had a tire as broad as one's hand. - -Presently a fair slip of a girl, about ten years old, with a cataract -of golden hair streaming down over her shoulders, came along. -Around her head she wore a hoop of flame-red poppies. It was as -sweet an outfit as ever I saw, what there was of it. She walked -indolently along, with a mind at rest, its peace reflected in her -innocent face. The circus man paid no attention to her; didn't -even seem to see her. And she--she was no more startled at his -fantastic make-up than if she was used to his like every day of -her life. She was going by as indifferently as she might have gone -by a couple of cows; but when she happened to notice me, _then_ -there was a change! Up went her hands, and she was turned to stone; -her mouth dropped open, her eyes stared wide and timorously, she -was the picture of astonished curiosity touched with fear. And -there she stood gazing, in a sort of stupefied fascination, till -we turned a corner of the wood and were lost to her view. That -she should be startled at me instead of at the other man, was too -many for me; I couldn't make head or tail of it. And that she -should seem to consider me a spectacle, and totally overlook her -own merits in that respect, was another puzzling thing, and a -display of magnanimity, too, that was surprising in one so young. -There was food for thought here. I moved along as one in a dream. - -As we approached the town, signs of life began to appear. At -intervals we passed a wretched cabin, with a thatched roof, and -about it small fields and garden patches in an indifferent state of -cultivation. There were people, too; brawny men, with long, coarse, -uncombed hair that hung down over their faces and made them look -like animals. They and the women, as a rule, wore a coarse -tow-linen robe that came well below the knee, and a rude sort of -sandal, and many wore an iron collar. The small boys and girls -were always naked; but nobody seemed to know it. All of these -people stared at me, talked about me, ran into the huts and fetched -out their families to gape at me; but nobody ever noticed that -other fellow, except to make him humble salutation and get no -response for their pains. - -In the town were some substantial windowless houses of stone -scattered among a wilderness of thatched cabins; the streets were -mere crooked alleys, and unpaved; troops of dogs and nude children -played in the sun and made life and noise; hogs roamed and rooted -contentedly about, and one of them lay in a reeking wallow in -the middle of the main thoroughfare and suckled her family. -Presently there was a distant blare of military music; it came -nearer, still nearer, and soon a noble cavalcade wound into view, -glorious with plumed helmets and flashing mail and flaunting banners -and rich doublets and horse-cloths and gilded spearheads; and -through the muck and swine, and naked brats, and joyous dogs, and -shabby huts, it took its gallant way, and in its wake we followed. -Followed through one winding alley and then another,--and climbing, -always climbing--till at last we gained the breezy height where -the huge castle stood. There was an exchange of bugle blasts; -then a parley from the walls, where men-at-arms, in hauberk and -morion, marched back and forth with halberd at shoulder under -flapping banners with the rude figure of a dragon displayed upon -them; and then the great gates were flung open, the drawbridge -was lowered, and the head of the cavalcade swept forward under -the frowning arches; and we, following, soon found ourselves in -a great paved court, with towers and turrets stretching up into -the blue air on all the four sides; and all about us the dismount -was going on, and much greeting and ceremony, and running to and -fro, and a gay display of moving and intermingling colors, and -an altogether pleasant stir and noise and confusion. - - - -CHAPTER II - -KING ARTHUR'S COURT - -The moment I got a chance I slipped aside privately and touched -an ancient common looking man on the shoulder and said, in an -insinuating, confidential way: - -"Friend, do me a kindness. Do you belong to the asylum, or are -you just on a visit or something like that?" - -He looked me over stupidly, and said: - -"Marry, fair sir, me seemeth--" - -"That will do," I said; "I reckon you are a patient." - -I moved away, cogitating, and at the same time keeping an eye -out for any chance passenger in his right mind that might come -along and give me some light. I judged I had found one, presently; -so I drew him aside and said in his ear: - -"If I could see the head keeper a minute--only just a minute--" - -"Prithee do not let me." - -"Let you _what_?" - -"_Hinder_ me, then, if the word please thee better. Then he went -on to say he was an under-cook and could not stop to gossip, -though he would like it another time; for it would comfort his -very liver to know where I got my clothes. As he started away he -pointed and said yonder was one who was idle enough for my purpose, -and was seeking me besides, no doubt. This was an airy slim boy -in shrimp-colored tights that made him look like a forked carrot, -the rest of his gear was blue silk and dainty laces and ruffles; -and he had long yellow curls, and wore a plumed pink satin cap -tilted complacently over his ear. By his look, he was good-natured; -by his gait, he was satisfied with himself. He was pretty enough -to frame. He arrived, looked me over with a smiling and impudent -curiosity; said he had come for me, and informed me that he was a page. - -"Go 'long," I said; "you ain't more than a paragraph." - -It was pretty severe, but I was nettled. However, it never phazed -him; he didn't appear to know he was hurt. He began to talk and -laugh, in happy, thoughtless, boyish fashion, as we walked along, -and made himself old friends with me at once; asked me all sorts -of questions about myself and about my clothes, but never waited -for an answer--always chattered straight ahead, as if he didn't -know he had asked a question and wasn't expecting any reply, until -at last he happened to mention that he was born in the beginning -of the year 513. - -It made the cold chills creep over me! I stopped and said, -a little faintly: - -"Maybe I didn't hear you just right. Say it again--and say it -slow. What year was it?" - -"513." - -"513! You don't look it! Come, my boy, I am a stranger and -friendless; be honest and honorable with me. Are you in your -right mind?" - -He said he was. - -"Are these other people in their right minds?" - -He said they were. - -"And this isn't an asylum? I mean, it isn't a place where they -cure crazy people?" - -He said it wasn't. - -"Well, then," I said, "either I am a lunatic, or something just -as awful has happened. Now tell me, honest and true, where am I?" - -"IN KING ARTHUR'S COURT." - -I waited a minute, to let that idea shudder its way home, -and then said: - -"And according to your notions, what year is it now?" - -"528--nineteenth of June." - -I felt a mournful sinking at the heart, and muttered: "I shall -never see my friends again--never, never again. They will not -be born for more than thirteen hundred years yet." - -I seemed to believe the boy, I didn't know why. _Something_ in me -seemed to believe him--my consciousness, as you may say; but my -reason didn't. My reason straightway began to clamor; that was -natural. I didn't know how to go about satisfying it, because -I knew that the testimony of men wouldn't serve--my reason would -say they were lunatics, and throw out their evidence. But all -of a sudden I stumbled on the very thing, just by luck. I knew -that the only total eclipse of the sun in the first half of the -sixth century occurred on the 21st of June, A.D. 528, O.S., and -began at 3 minutes after 12 noon. I also knew that no total eclipse -of the sun was due in what to _me_ was the present year--i.e., 1879. -So, if I could keep my anxiety and curiosity from eating the heart -out of me for forty-eight hours, I should then find out for certain -whether this boy was telling me the truth or not. - -Wherefore, being a practical Connecticut man, I now shoved this -whole problem clear out of my mind till its appointed day and hour -should come, in order that I might turn all my attention to the -circumstances of the present moment, and be alert and ready to -make the most out of them that could be made. One thing at a time, -is my motto--and just play that thing for all it is worth, even -if it's only two pair and a jack. I made up my mind to two things: -if it was still the nineteenth century and I was among lunatics -and couldn't get away, I would presently boss that asylum or know -the reason why; and if, on the other hand, it was really the sixth -century, all right, I didn't want any softer thing: I would boss -the whole country inside of three months; for I judged I would -have the start of the best-educated man in the kingdom by a matter -of thirteen hundred years and upward. I'm not a man to waste -time after my mind's made up and there's work on hand; so I said -to the page: - -"Now, Clarence, my boy--if that might happen to be your name ---I'll get you to post me up a little if you don't mind. What is -the name of that apparition that brought me here?" - -"My master and thine? That is the good knight and great lord -Sir Kay the Seneschal, foster brother to our liege the king." - -"Very good; go on, tell me everything." - -He made a long story of it; but the part that had immediate interest -for me was this: He said I was Sir Kay's prisoner, and that -in the due course of custom I would be flung into a dungeon and -left there on scant commons until my friends ransomed me--unless -I chanced to rot, first. I saw that the last chance had the best -show, but I didn't waste any bother about that; time was too -precious. The page said, further, that dinner was about ended -in the great hall by this time, and that as soon as the sociability -and the heavy drinking should begin, Sir Kay would have me in and -exhibit me before King Arthur and his illustrious knights seated at -the Table Round, and would brag about his exploit in capturing -me, and would probably exaggerate the facts a little, but it -wouldn't be good form for me to correct him, and not over safe, -either; and when I was done being exhibited, then ho for the -dungeon; but he, Clarence, would find a way to come and see me every -now and then, and cheer me up, and help me get word to my friends. - -Get word to my friends! I thanked him; I couldn't do less; and -about this time a lackey came to say I was wanted; so Clarence -led me in and took me off to one side and sat down by me. - -Well, it was a curious kind of spectacle, and interesting. It was -an immense place, and rather naked--yes, and full of loud contrasts. -It was very, very lofty; so lofty that the banners depending from -the arched beams and girders away up there floated in a sort of -twilight; there was a stone-railed gallery at each end, high up, -with musicians in the one, and women, clothed in stunning colors, -in the other. The floor was of big stone flags laid in black and -white squares, rather battered by age and use, and needing repair. -As to ornament, there wasn't any, strictly speaking; though on -the walls hung some huge tapestries which were probably taxed -as works of art; battle-pieces, they were, with horses shaped like -those which children cut out of paper or create in gingerbread; -with men on them in scale armor whose scales are represented by -round holes--so that the man's coat looks as if it had been done -with a biscuit-punch. There was a fireplace big enough to camp in; -and its projecting sides and hood, of carved and pillared stonework, -had the look of a cathedral door. Along the walls stood men-at-arms, -in breastplate and morion, with halberds for their only weapon ---rigid as statues; and that is what they looked like. - -In the middle of this groined and vaulted public square was an oaken -table which they called the Table Round. It was as large as -a circus ring; and around it sat a great company of men dressed -in such various and splendid colors that it hurt one's eyes to look -at them. They wore their plumed hats, right along, except that -whenever one addressed himself directly to the king, he lifted -his hat a trifle just as he was beginning his remark. - -Mainly they were drinking--from entire ox horns; but a few were -still munching bread or gnawing beef bones. There was about -an average of two dogs to one man; and these sat in expectant -attitudes till a spent bone was flung to them, and then they went -for it by brigades and divisions, with a rush, and there ensued -a fight which filled the prospect with a tumultuous chaos of -plunging heads and bodies and flashing tails, and the storm of -howlings and barkings deafened all speech for the time; but that -was no matter, for the dog-fight was always a bigger interest -anyway; the men rose, sometimes, to observe it the better and bet -on it, and the ladies and the musicians stretched themselves out -over their balusters with the same object; and all broke into -delighted ejaculations from time to time. In the end, the winning -dog stretched himself out comfortably with his bone between his -paws, and proceeded to growl over it, and gnaw it, and grease -the floor with it, just as fifty others were already doing; and the -rest of the court resumed their previous industries and entertainments. - -As a rule, the speech and behavior of these people were gracious -and courtly; and I noticed that they were good and serious listeners -when anybody was telling anything--I mean in a dog-fightless -interval. And plainly, too, they were a childlike and innocent lot; -telling lies of the stateliest pattern with a most gentle and -winning naivety, and ready and willing to listen to anybody else's -lie, and believe it, too. It was hard to associate them with -anything cruel or dreadful; and yet they dealt in tales of blood -and suffering with a guileless relish that made me almost forget -to shudder. - -I was not the only prisoner present. There were twenty or more. -Poor devils, many of them were maimed, hacked, carved, in a frightful -way; and their hair, their faces, their clothing, were caked with -black and stiffened drenchings of blood. They were suffering -sharp physical pain, of course; and weariness, and hunger and -thirst, no doubt; and at least none had given them the comfort -of a wash, or even the poor charity of a lotion for their wounds; -yet you never heard them utter a moan or a groan, or saw them show -any sign of restlessness, or any disposition to complain. The -thought was forced upon me: "The rascals--_they_ have served other -people so in their day; it being their own turn, now, they were -not expecting any better treatment than this; so their philosophical -bearing is not an outcome of mental training, intellectual fortitude, -reasoning; it is mere animal training; they are white Indians." - - - -CHAPTER III - -KNIGHTS OF THE TABLE ROUND - -Mainly the Round Table talk was monologues--narrative accounts -of the adventures in which these prisoners were captured and their -friends and backers killed and stripped of their steeds and armor. -As a general thing--as far as I could make out--these murderous -adventures were not forays undertaken to avenge injuries, nor to -settle old disputes or sudden fallings out; no, as a rule they were -simply duels between strangers--duels between people who had never -even been introduced to each other, and between whom existed no -cause of offense whatever. Many a time I had seen a couple of boys, -strangers, meet by chance, and say simultaneously, "I can lick you," -and go at it on the spot; but I had always imagined until now that -that sort of thing belonged to children only, and was a sign and -mark of childhood; but here were these big boobies sticking to it -and taking pride in it clear up into full age and beyond. Yet there -was something very engaging about these great simple-hearted -creatures, something attractive and lovable. There did not seem -to be brains enough in the entire nursery, so to speak, to bait -a fish-hook with; but you didn't seem to mind that, after a little, -because you soon saw that brains were not needed in a society -like that, and indeed would have marred it, hindered it, spoiled -its symmetry--perhaps rendered its existence impossible. - -There was a fine manliness observable in almost every face; and -in some a certain loftiness and sweetness that rebuked your -belittling criticisms and stilled them. A most noble benignity -and purity reposed in the countenance of him they called Sir Galahad, -and likewise in the king's also; and there was majesty and greatness -in the giant frame and high bearing of Sir Launcelot of the Lake. - -There was presently an incident which centered the general interest -upon this Sir Launcelot. At a sign from a sort of master of -ceremonies, six or eight of the prisoners rose and came forward -in a body and knelt on the floor and lifted up their hands toward -the ladies' gallery and begged the grace of a word with the queen. -The most conspicuously situated lady in that massed flower-bed -of feminine show and finery inclined her head by way of assent, -and then the spokesman of the prisoners delivered himself and his -fellows into her hands for free pardon, ransom, captivity, or death, -as she in her good pleasure might elect; and this, as he said, he -was doing by command of Sir Kay the Seneschal, whose prisoners -they were, he having vanquished them by his single might and -prowess in sturdy conflict in the field. - -Surprise and astonishment flashed from face to face all over -the house; the queen's gratified smile faded out at the name of -Sir Kay, and she looked disappointed; and the page whispered in -my ear with an accent and manner expressive of extravagant derision-- - -"Sir _Kay_, forsooth! Oh, call me pet names, dearest, call me -a marine! In twice a thousand years shall the unholy invention -of man labor at odds to beget the fellow to this majestic lie!" - -Every eye was fastened with severe inquiry upon Sir Kay. But he -was equal to the occasion. He got up and played his hand like -a major--and took every trick. He said he would state the case -exactly according to the facts; he would tell the simple -straightforward tale, without comment of his own; "and then," -said he, "if ye find glory and honor due, ye will give it unto him -who is the mightiest man of his hands that ever bare shield or -strake with sword in the ranks of Christian battle--even him that -sitteth there!" and he pointed to Sir Launcelot. Ah, he fetched -them; it was a rattling good stroke. Then he went on and told -how Sir Launcelot, seeking adventures, some brief time gone by, -killed seven giants at one sweep of his sword, and set a hundred -and forty-two captive maidens free; and then went further, still -seeking adventures, and found him (Sir Kay) fighting a desperate -fight against nine foreign knights, and straightway took the battle -solely into his own hands, and conquered the nine; and that night -Sir Launcelot rose quietly, and dressed him in Sir Kay's armor and -took Sir Kay's horse and gat him away into distant lands, and -vanquished sixteen knights in one pitched battle and thirty-four -in another; and all these and the former nine he made to swear -that about Whitsuntide they would ride to Arthur's court and yield -them to Queen Guenever's hands as captives of Sir Kay the Seneschal, -spoil of his knightly prowess; and now here were these half dozen, -and the rest would be along as soon as they might be healed of -their desperate wounds. - -Well, it was touching to see the queen blush and smile, and look -embarrassed and happy, and fling furtive glances at Sir Launcelot -that would have got him shot in Arkansas, to a dead certainty. - -Everybody praised the valor and magnanimity of Sir Launcelot; and -as for me, I was perfectly amazed, that one man, all by himself, -should have been able to beat down and capture such battalions -of practiced fighters. I said as much to Clarence; but this mocking -featherhead only said: - -"An Sir Kay had had time to get another skin of sour wine into him, -ye had seen the accompt doubled." - -I looked at the boy in sorrow; and as I looked I saw the cloud of -a deep despondency settle upon his countenance. I followed the -direction of his eye, and saw that a very old and white-bearded -man, clothed in a flowing black gown, had risen and was standing -at the table upon unsteady legs, and feebly swaying his ancient -head and surveying the company with his watery and wandering eye. -The same suffering look that was in the page's face was observable -in all the faces around--the look of dumb creatures who know that -they must endure and make no moan. - -"Marry, we shall have it again," sighed the boy; "that same old -weary tale that he hath told a thousand times in the same words, -and that he _will_ tell till he dieth, every time he hath gotten his -barrel full and feeleth his exaggeration-mill a-working. Would -God I had died or I saw this day!" - -"Who is it?" - -"Merlin, the mighty liar and magician, perdition singe him for -the weariness he worketh with his one tale! But that men fear -him for that he hath the storms and the lightnings and all the -devils that be in hell at his beck and call, they would have dug -his entrails out these many years ago to get at that tale and -squelch it. He telleth it always in the third person, making -believe he is too modest to glorify himself--maledictions light -upon him, misfortune be his dole! Good friend, prithee call me -for evensong." - -The boy nestled himself upon my shoulder and pretended to go -to sleep. The old man began his tale; and presently the lad was -asleep in reality; so also were the dogs, and the court, the lackeys, -and the files of men-at-arms. The droning voice droned on; a soft -snoring arose on all sides and supported it like a deep and subdued -accompaniment of wind instruments. Some heads were bowed upon -folded arms, some lay back with open mouths that issued unconscious -music; the flies buzzed and bit, unmolested, the rats swarmed -softly out from a hundred holes, and pattered about, and made -themselves at home everywhere; and one of them sat up like a -squirrel on the king's head and held a bit of cheese in its hands -and nibbled it, and dribbled the crumbs in the king's face with -naive and impudent irreverence. It was a tranquil scene, and -restful to the weary eye and the jaded spirit. - -This was the old man's tale. He said: - -"Right so the king and Merlin departed, and went until an hermit -that was a good man and a great leech. So the hermit searched -all his wounds and gave him good salves; so the king was there -three days, and then were his wounds well amended that he might -ride and go, and so departed. And as they rode, Arthur said, -I have no sword. No force,* [*Footnote from M.T.: No matter.] -said Merlin, hereby is a sword that shall be yours and I may. -So they rode till they came to a lake, the which was a fair water -and broad, and in the midst of the lake Arthur was ware of an arm -clothed in white samite, that held a fair sword in that hand. -Lo, said Merlin, yonder is that sword that I spake of. With that -they saw a damsel going upon the lake. What damsel is that? -said Arthur. That is the Lady of the lake, said Merlin; and within -that lake is a rock, and therein is as fair a place as any on earth, -and richly beseen, and this damsel will come to you anon, and then -speak ye fair to her that she will give you that sword. Anon -withal came the damsel unto Arthur and saluted him, and he her -again. Damsel, said Arthur, what sword is that, that yonder -the arm holdeth above the water? I would it were mine, for I have -no sword. Sir Arthur King, said the damsel, that sword is mine, -and if ye will give me a gift when I ask it you, ye shall have it. -By my faith, said Arthur, I will give you what gift ye will ask. -Well, said the damsel, go ye into yonder barge and row yourself -to the sword, and take it and the scabbard with you, and I will ask -my gift when I see my time. So Sir Arthur and Merlin alight, and -tied their horses to two trees, and so they went into the ship, -and when they came to the sword that the hand held, Sir Arthur -took it up by the handles, and took it with him. And the arm -and the hand went under the water; and so they came unto the land -and rode forth. And then Sir Arthur saw a rich pavilion. What -signifieth yonder pavilion? It is the knight's pavilion, said -Merlin, that ye fought with last, Sir Pellinore, but he is out, -he is not there; he hath ado with a knight of yours, that hight -Egglame, and they have fought together, but at the last Egglame -fled, and else he had been dead, and he hath chased him even -to Carlion, and we shall meet with him anon in the highway. That -is well said, said Arthur, now have I a sword, now will I wage -battle with him, and be avenged on him. Sir, ye shall not so, -said Merlin, for the knight is weary of fighting and chasing, so -that ye shall have no worship to have ado with him; also, he will -not lightly be matched of one knight living; and therefore it is my -counsel, let him pass, for he shall do you good service in short -time, and his sons, after his days. Also ye shall see that day -in short space ye shall be right glad to give him your sister -to wed. When I see him, I will do as ye advise me, said Arthur. -Then Sir Arthur looked on the sword, and liked it passing well. -Whether liketh you better, said Merlin, the sword or the scabbard? -Me liketh better the sword, said Arthur. Ye are more unwise, -said Merlin, for the scabbard is worth ten of the sword, for while -ye have the scabbard upon you ye shall never lose no blood, be ye -never so sore wounded; therefore, keep well the scabbard always -with you. So they rode into Carlion, and by the way they met with -Sir Pellinore; but Merlin had done such a craft that Pellinore saw -not Arthur, and he passed by without any words. I marvel, said -Arthur, that the knight would not speak. Sir, said Merlin, he saw -you not; for and he had seen you ye had not lightly departed. So -they came unto Carlion, whereof his knights were passing glad. -And when they heard of his adventures they marveled that he would -jeopard his person so alone. But all men of worship said it was -merry to be under such a chieftain that would put his person in -adventure as other poor knights did." - - - -CHAPTER IV - -SIR DINADAN THE HUMORIST - -It seemed to me that this quaint lie was most simply and beautifully -told; but then I had heard it only once, and that makes a difference; -it was pleasant to the others when it was fresh, no doubt. - -Sir Dinadan the Humorist was the first to awake, and he soon roused -the rest with a practical joke of a sufficiently poor quality. -He tied some metal mugs to a dog's tail and turned him loose, -and he tore around and around the place in a frenzy of fright, -with all the other dogs bellowing after him and battering and -crashing against everything that came in their way and making -altogether a chaos of confusion and a most deafening din and -turmoil; at which every man and woman of the multitude laughed -till the tears flowed, and some fell out of their chairs and -wallowed on the floor in ecstasy. It was just like so many children. -Sir Dinadan was so proud of his exploit that he could not keep -from telling over and over again, to weariness, how the immortal -idea happened to occur to him; and as is the way with humorists -of his breed, he was still laughing at it after everybody else had -got through. He was so set up that he concluded to make a speech ---of course a humorous speech. I think I never heard so many old -played-out jokes strung together in my life. He was worse than -the minstrels, worse than the clown in the circus. It seemed -peculiarly sad to sit here, thirteen hundred years before I was -born, and listen again to poor, flat, worm-eaten jokes that had -given me the dry gripes when I was a boy thirteen hundred years -afterwards. It about convinced me that there isn't any such thing -as a new joke possible. Everybody laughed at these antiquities ---but then they always do; I had noticed that, centuries later. -However, of course the scoffer didn't laugh--I mean the boy. No, -he scoffed; there wasn't anything he wouldn't scoff at. He said -the most of Sir Dinadan's jokes were rotten and the rest were -petrified. I said "petrified" was good; as I believed, myself, -that the only right way to classify the majestic ages of some of -those jokes was by geologic periods. But that neat idea hit -the boy in a blank place, for geology hadn't been invented yet. -However, I made a note of the remark, and calculated to educate -the commonwealth up to it if I pulled through. It is no use -to throw a good thing away merely because the market isn't ripe yet. - -Now Sir Kay arose and began to fire up on his history-mill with me -for fuel. It was time for me to feel serious, and I did. Sir Kay -told how he had encountered me in a far land of barbarians, who -all wore the same ridiculous garb that I did--a garb that was a work -of enchantment, and intended to make the wearer secure from hurt -by human hands. However he had nullified the force of the -enchantment by prayer, and had killed my thirteen knights in -a three hours' battle, and taken me prisoner, sparing my life -in order that so strange a curiosity as I was might be exhibited -to the wonder and admiration of the king and the court. He spoke -of me all the time, in the blandest way, as "this prodigious giant," -and "this horrible sky-towering monster," and "this tusked and -taloned man-devouring ogre", and everybody took in all this bosh -in the naivest way, and never smiled or seemed to notice that -there was any discrepancy between these watered statistics and me. -He said that in trying to escape from him I sprang into the top of -a tree two hundred cubits high at a single bound, but he dislodged -me with a stone the size of a cow, which "all-to brast" the most -of my bones, and then swore me to appear at Arthur's court for -sentence. He ended by condemning me to die at noon on the 21st; -and was so little concerned about it that he stopped to yawn before -he named the date. - -I was in a dismal state by this time; indeed, I was hardly enough -in my right mind to keep the run of a dispute that sprung up as -to how I had better be killed, the possibility of the killing being -doubted by some, because of the enchantment in my clothes. And yet -it was nothing but an ordinary suit of fifteen-dollar slop-shops. -Still, I was sane enough to notice this detail, to wit: many of -the terms used in the most matter-of-fact way by this great -assemblage of the first ladies and gentlemen in the land would -have made a Comanche blush. Indelicacy is too mild a term to convey -the idea. However, I had read "Tom Jones," and "Roderick Random," -and other books of that kind, and knew that the highest and first -ladies and gentlemen in England had remained little or no cleaner -in their talk, and in the morals and conduct which such talk -implies, clear up to a hundred years ago; in fact clear into our -own nineteenth century--in which century, broadly speaking, -the earliest samples of the real lady and real gentleman discoverable -in English history--or in European history, for that matter--may be -said to have made their appearance. Suppose Sir Walter, instead -of putting the conversations into the mouths of his characters, -had allowed the characters to speak for themselves? We should -have had talk from Rebecca and Ivanhoe and the soft lady Rowena -which would embarrass a tramp in our day. However, to the -unconsciously indelicate all things are delicate. King Arthur's -people were not aware that they were indecent and I had presence -of mind enough not to mention it. - -They were so troubled about my enchanted clothes that they were -mightily relieved, at last, when old Merlin swept the difficulty -away for them with a common-sense hint. He asked them why they -were so dull--why didn't it occur to them to strip me. In half a -minute I was as naked as a pair of tongs! And dear, dear, to think -of it: I was the only embarrassed person there. Everybody discussed -me; and did it as unconcernedly as if I had been a cabbage. -Queen Guenever was as naively interested as the rest, and said -she had never seen anybody with legs just like mine before. It was -the only compliment I got--if it was a compliment. - -Finally I was carried off in one direction, and my perilous clothes -in another. I was shoved into a dark and narrow cell in a dungeon, -with some scant remnants for dinner, some moldy straw for a bed, -and no end of rats for company. - - - -CHAPTER V - -AN INSPIRATION - -I was so tired that even my fears were not able to keep me awake long. - -When I next came to myself, I seemed to have been asleep a very -long time. My first thought was, "Well, what an astonishing dream -I've had! I reckon I've waked only just in time to keep from -being hanged or drowned or burned or something.... I'll nap again -till the whistle blows, and then I'll go down to the arms factory -and have it out with Hercules." - -But just then I heard the harsh music of rusty chains and bolts, -a light flashed in my eyes, and that butterfly, Clarence, stood -before me! I gasped with surprise; my breath almost got away from me. - -"What!" I said, "you here yet? Go along with the rest of -the dream! scatter!" - -But he only laughed, in his light-hearted way, and fell to making -fun of my sorry plight. - -"All right," I said resignedly, "let the dream go on; I'm in no hurry." - -"Prithee what dream?" - -"What dream? Why, the dream that I am in Arthur's court--a person -who never existed; and that I am talking to you, who are nothing -but a work of the imagination." - -"Oh, la, indeed! and is it a dream that you're to be burned -to-morrow? Ho-ho--answer me that!" - -The shock that went through me was distressing. I now began -to reason that my situation was in the last degree serious, dream -or no dream; for I knew by past experience of the lifelike intensity -of dreams, that to be burned to death, even in a dream, would be -very far from being a jest, and was a thing to be avoided, by any -means, fair or foul, that I could contrive. So I said beseechingly: - -"Ah, Clarence, good boy, only friend I've got,--for you _are_ my -friend, aren't you?--don't fail me; help me to devise some way -of escaping from this place!" - -"Now do but hear thyself! Escape? Why, man, the corridors are -in guard and keep of men-at-arms." - -"No doubt, no doubt. But how many, Clarence? Not many, I hope?" - -"Full a score. One may not hope to escape." After a pause ---hesitatingly: "and there be other reasons--and weightier." - -"Other ones? What are they?" - -"Well, they say--oh, but I daren't, indeed daren't!" - -"Why, poor lad, what is the matter? Why do you blench? Why do -you tremble so?" - -"Oh, in sooth, there is need! I do want to tell you, but--" - -"Come, come, be brave, be a man--speak out, there's a good lad!" - -He hesitated, pulled one way by desire, the other way by fear; -then he stole to the door and peeped out, listening; and finally -crept close to me and put his mouth to my ear and told me his -fearful news in a whisper, and with all the cowering apprehension -of one who was venturing upon awful ground and speaking of things -whose very mention might be freighted with death. - -"Merlin, in his malice, has woven a spell about this dungeon, and -there bides not the man in these kingdoms that would be desperate -enough to essay to cross its lines with you! Now God pity me, -I have told it! Ah, be kind to me, be merciful to a poor boy who -means thee well; for an thou betray me I am lost!" - -I laughed the only really refreshing laugh I had had for some time; -and shouted: - -"Merlin has wrought a spell! _Merlin_, forsooth! That cheap old -humbug, that maundering old ass? Bosh, pure bosh, the silliest bosh -in the world! Why, it does seem to me that of all the childish, -idiotic, chuckle-headed, chicken-livered superstitions that ev ---oh, damn Merlin!" - -But Clarence had slumped to his knees before I had half finished, -and he was like to go out of his mind with fright. - -"Oh, beware! These are awful words! Any moment these walls -may crumble upon us if you say such things. Oh call them back -before it is too late!" - -Now this strange exhibition gave me a good idea and set me to -thinking. If everybody about here was so honestly and sincerely -afraid of Merlin's pretended magic as Clarence was, certainly -a superior man like me ought to be shrewd enough to contrive -some way to take advantage of such a state of things. I went -on thinking, and worked out a plan. Then I said: - -"Get up. Pull yourself together; look me in the eye. Do you -know why I laughed?" - -"No--but for our blessed Lady's sake, do it no more." - -"Well, I'll tell you why I laughed. Because I'm a magician myself." - -"Thou!" The boy recoiled a step, and caught his breath, for -the thing hit him rather sudden; but the aspect which he took -on was very, very respectful. I took quick note of that; it -indicated that a humbug didn't need to have a reputation in this -asylum; people stood ready to take him at his word, without that. -I resumed. - -"I've known Merlin seven hundred years, and he--" - -"Seven hun--" - -"Don't interrupt me. He has died and come alive again thirteen -times, and traveled under a new name every time: Smith, Jones, -Robinson, Jackson, Peters, Haskins, Merlin--a new alias every -time he turns up. I knew him in Egypt three hundred years ago; -I knew him in India five hundred years ago--he is always blethering -around in my way, everywhere I go; he makes me tired. He don't -amount to shucks, as a magician; knows some of the old common -tricks, but has never got beyond the rudiments, and never will. -He is well enough for the provinces--one-night stands and that -sort of thing, you know--but dear me, _he_ oughtn't to set up for -an expert--anyway not where there's a real artist. Now look here, -Clarence, I am going to stand your friend, right along, and in -return you must be mine. I want you to do me a favor. I want -you to get word to the king that I am a magician myself--and the -Supreme Grand High-yu-Muck-amuck and head of the tribe, at that; -and I want him to be made to understand that I am just quietly -arranging a little calamity here that will make the fur fly in these -realms if Sir Kay's project is carried out and any harm comes -to me. Will you get that to the king for me?" - -The poor boy was in such a state that he could hardly answer me. -It was pitiful to see a creature so terrified, so unnerved, so -demoralized. But he promised everything; and on my side he made -me promise over and over again that I would remain his friend, and -never turn against him or cast any enchantments upon him. Then -he worked his way out, staying himself with his hand along the -wall, like a sick person. - -Presently this thought occurred to me: how heedless I have been! -When the boy gets calm, he will wonder why a great magician like me -should have begged a boy like him to help me get out of this place; -he will put this and that together, and will see that I am a humbug. - -I worried over that heedless blunder for an hour, and called myself -a great many hard names, meantime. But finally it occurred to me -all of a sudden that these animals didn't reason; that _they_ never -put this and that together; that all their talk showed that they -didn't know a discrepancy when they saw it. I was at rest, then. - -But as soon as one is at rest, in this world, off he goes on -something else to worry about. It occurred to me that I had made -another blunder: I had sent the boy off to alarm his betters with -a threat--I intending to invent a calamity at my leisure; now -the people who are the readiest and eagerest and willingest to -swallow miracles are the very ones who are hungriest to see you -perform them; suppose I should be called on for a sample? Suppose -I should be asked to name my calamity? Yes, I had made a blunder; -I ought to have invented my calamity first. "What shall I do? -what can I say, to gain a little time?" I was in trouble again; -in the deepest kind of trouble... - -"There's a footstep!--they're coming. If I had only just a moment -to think.... Good, I've got it. I'm all right." - -You see, it was the eclipse. It came into my mind in the nick -of time, how Columbus, or Cortez, or one of those people, played -an eclipse as a saving trump once, on some savages, and I saw my -chance. I could play it myself, now, and it wouldn't be any -plagiarism, either, because I should get it in nearly a thousand -years ahead of those parties. - -Clarence came in, subdued, distressed, and said: - -"I hasted the message to our liege the king, and straightway he -had me to his presence. He was frighted even to the marrow, -and was minded to give order for your instant enlargement, and -that you be clothed in fine raiment and lodged as befitted one so -great; but then came Merlin and spoiled all; for he persuaded -the king that you are mad, and know not whereof you speak; and -said your threat is but foolishness and idle vaporing. They -disputed long, but in the end, Merlin, scoffing, said, 'Wherefore -hath he not _named_ his brave calamity? Verily it is because he -cannot.' This thrust did in a most sudden sort close the king's -mouth, and he could offer naught to turn the argument; and so, -reluctant, and full loth to do you the discourtesy, he yet prayeth -you to consider his perplexed case, as noting how the matter stands, -and name the calamity--if so be you have determined the nature -of it and the time of its coming. Oh, prithee delay not; to delay -at such a time were to double and treble the perils that already -compass thee about. Oh, be thou wise--name the calamity!" - -I allowed silence to accumulate while I got my impressiveness -together, and then said: - -"How long have I been shut up in this hole?" - -"Ye were shut up when yesterday was well spent. It is 9 of -the morning now." - -"No! Then I have slept well, sure enough. Nine in the morning -now! And yet it is the very complexion of midnight, to a shade. -This is the 20th, then?" - -"The 20th--yes." - -"And I am to be burned alive to-morrow." The boy shuddered. - -"At what hour?" - -"At high noon." - -"Now then, I will tell you what to say." I paused, and stood over -that cowering lad a whole minute in awful silence; then, in a voice -deep, measured, charged with doom, I began, and rose by dramatically -graded stages to my colossal climax, which I delivered in as sublime -and noble a way as ever I did such a thing in my life: "Go back -and tell the king that at that hour I will smother the whole world -in the dead blackness of midnight; I will blot out the sun, and he -shall never shine again; the fruits of the earth shall rot for lack -of light and warmth, and the peoples of the earth shall famish -and die, to the last man!" - -I had to carry the boy out myself, he sunk into such a collapse. -I handed him over to the soldiers, and went back. - - - -CHAPTER VI - -THE ECLIPSE - -In the stillness and the darkness, realization soon began to -supplement knowledge. The mere knowledge of a fact is pale; but -when you come to _realize_ your fact, it takes on color. It is -all the difference between hearing of a man being stabbed to -the heart, and seeing it done. In the stillness and the darkness, -the knowledge that I was in deadly danger took to itself deeper -and deeper meaning all the time; a something which was realization -crept inch by inch through my veins and turned me cold. - -But it is a blessed provision of nature that at times like these, -as soon as a man's mercury has got down to a certain point there -comes a revulsion, and he rallies. Hope springs up, and cheerfulness -along with it, and then he is in good shape to do something for -himself, if anything can be done. When my rally came, it came with -a bound. I said to myself that my eclipse would be sure to save me, -and make me the greatest man in the kingdom besides; and straightway -my mercury went up to the top of the tube, and my solicitudes -all vanished. I was as happy a man as there was in the world. -I was even impatient for to-morrow to come, I so wanted to gather -in that great triumph and be the center of all the nation's wonder -and reverence. Besides, in a business way it would be the making -of me; I knew that. - -Meantime there was one thing which had got pushed into the background -of my mind. That was the half-conviction that when the nature -of my proposed calamity should be reported to those superstitious -people, it would have such an effect that they would want to -compromise. So, by and by when I heard footsteps coming, that -thought was recalled to me, and I said to myself, "As sure as -anything, it's the compromise. Well, if it is good, all right, -I will accept; but if it isn't, I mean to stand my ground and play -my hand for all it is worth." - -The door opened, and some men-at-arms appeared. The leader said: - -"The stake is ready. Come!" - -The stake! The strength went out of me, and I almost fell down. -It is hard to get one's breath at such a time, such lumps come into -one's throat, and such gaspings; but as soon as I could speak, I said: - -"But this is a mistake--the execution is to-morrow." - -"Order changed; been set forward a day. Haste thee!" - -I was lost. There was no help for me. I was dazed, stupefied; -I had no command over myself, I only wandered purposely about, -like one out of his mind; so the soldiers took hold of me, and -pulled me along with them, out of the cell and along the maze of -underground corridors, and finally into the fierce glare of daylight -and the upper world. As we stepped into the vast enclosed court -of the castle I got a shock; for the first thing I saw was the stake, -standing in the center, and near it the piled fagots and a monk. -On all four sides of the court the seated multitudes rose rank -above rank, forming sloping terraces that were rich with color. -The king and the queen sat in their thrones, the most conspicuous -figures there, of course. - -To note all this, occupied but a second. The next second Clarence -had slipped from some place of concealment and was pouring news -into my ear, his eyes beaming with triumph and gladness. He said: - -"Tis through _me_ the change was wrought! And main hard have I worked -to do it, too. But when I revealed to them the calamity in store, -and saw how mighty was the terror it did engender, then saw I also -that this was the time to strike! Wherefore I diligently pretended, -unto this and that and the other one, that your power against the sun -could not reach its full until the morrow; and so if any would save -the sun and the world, you must be slain to-day, while your -enchantments are but in the weaving and lack potency. Odsbodikins, -it was but a dull lie, a most indifferent invention, but you should -have seen them seize it and swallow it, in the frenzy of their -fright, as it were salvation sent from heaven; and all the while -was I laughing in my sleeve the one moment, to see them so cheaply -deceived, and glorifying God the next, that He was content to let -the meanest of His creatures be His instrument to the saving of -thy life. Ah how happy has the matter sped! You will not need -to do the sun a _real_ hurt--ah, forget not that, on your soul forget -it not! Only make a little darkness--only the littlest little -darkness, mind, and cease with that. It will be sufficient. They -will see that I spoke falsely,--being ignorant, as they will fancy ---and with the falling of the first shadow of that darkness you -shall see them go mad with fear; and they will set you free and -make you great! Go to thy triumph, now! But remember--ah, good -friend, I implore thee remember my supplication, and do the blessed -sun no hurt. For _my_ sake, thy true friend." - -I choked out some words through my grief and misery; as much as -to say I would spare the sun; for which the lad's eyes paid me back -with such deep and loving gratitude that I had not the heart -to tell him his good-hearted foolishness had ruined me and sent me -to my death. - -As the soldiers assisted me across the court the stillness was -so profound that if I had been blindfold I should have supposed -I was in a solitude instead of walled in by four thousand people. -There was not a movement perceptible in those masses of humanity; -they were as rigid as stone images, and as pale; and dread sat -upon every countenance. This hush continued while I was being -chained to the stake; it still continued while the fagots were -carefully and tediously piled about my ankles, my knees, my thighs, -my body. Then there was a pause, and a deeper hush, if possible, -and a man knelt down at my feet with a blazing torch; the multitude -strained forward, gazing, and parting slightly from their seats -without knowing it; the monk raised his hands above my head, and -his eyes toward the blue sky, and began some words in Latin; in -this attitude he droned on and on, a little while, and then stopped. -I waited two or three moments; then looked up; he was standing -there petrified. With a common impulse the multitude rose slowly -up and stared into the sky. I followed their eyes, as sure as guns, -there was my eclipse beginning! The life went boiling through -my veins; I was a new man! The rim of black spread slowly into -the sun's disk, my heart beat higher and higher, and still the -assemblage and the priest stared into the sky, motionless. I knew -that this gaze would be turned upon me, next. When it was, I was -ready. I was in one of the most grand attitudes I ever struck, -with my arm stretched up pointing to the sun. It was a noble -effect. You could _see_ the shudder sweep the mass like a wave. -Two shouts rang out, one close upon the heels of the other: - -"Apply the torch!" - -"I forbid it!" - -The one was from Merlin, the other from the king. Merlin started -from his place--to apply the torch himself, I judged. I said: - -"Stay where you are. If any man moves--even the king--before -I give him leave, I will blast him with thunder, I will consume -him with lightnings!" - -The multitude sank meekly into their seats, and I was just expecting -they would. Merlin hesitated a moment or two, and I was on pins -and needles during that little while. Then he sat down, and I took -a good breath; for I knew I was master of the situation now. -The king said: - -"Be merciful, fair sir, and essay no further in this perilous matter, -lest disaster follow. It was reported to us that your powers could -not attain unto their full strength until the morrow; but--" - -"Your Majesty thinks the report may have been a lie? It _was_ a lie." - -That made an immense effect; up went appealing hands everywhere, -and the king was assailed with a storm of supplications that -I might be bought off at any price, and the calamity stayed. -The king was eager to comply. He said: - -"Name any terms, reverend sir, even to the halving of my kingdom; -but banish this calamity, spare the sun!" - -My fortune was made. I would have taken him up in a minute, but -I couldn't stop an eclipse; the thing was out of the question. So -I asked time to consider. The king said: - -"How long--ah, how long, good sir? Be merciful; look, it groweth -darker, moment by moment. Prithee how long?" - -"Not long. Half an hour--maybe an hour." - -There were a thousand pathetic protests, but I couldn't shorten up -any, for I couldn't remember how long a total eclipse lasts. I was -in a puzzled condition, anyway, and wanted to think. Something -was wrong about that eclipse, and the fact was very unsettling. -If this wasn't the one I was after, how was I to tell whether this -was the sixth century, or nothing but a dream? Dear me, if I could -only prove it was the latter! Here was a glad new hope. If the boy -was right about the date, and this was surely the 20th, it _wasn't_ -the sixth century. I reached for the monk's sleeve, in considerable -excitement, and asked him what day of the month it was. - -Hang him, he said it was the _twenty-first_! It made me turn cold -to hear him. I begged him not to make any mistake about it; but -he was sure; he knew it was the 21st. So, that feather-headed -boy had botched things again! The time of the day was right -for the eclipse; I had seen that for myself, in the beginning, -by the dial that was near by. Yes, I was in King Arthur's court, -and I might as well make the most out of it I could. - -The darkness was steadily growing, the people becoming more and -more distressed. I now said: - -"I have reflected, Sir King. For a lesson, I will let this darkness -proceed, and spread night in the world; but whether I blot out -the sun for good, or restore it, shall rest with you. These are -the terms, to wit: You shall remain king over all your dominions, -and receive all the glories and honors that belong to the kingship; -but you shall appoint me your perpetual minister and executive, -and give me for my services one per cent of such actual increase -of revenue over and above its present amount as I may succeed -in creating for the state. If I can't live on that, I sha'n't ask -anybody to give me a lift. Is it satisfactory?" - -There was a prodigious roar of applause, and out of the midst -of it the king's voice rose, saying: - -"Away with his bonds, and set him free! and do him homage, high -and low, rich and poor, for he is become the king's right hand, -is clothed with power and authority, and his seat is upon the highest -step of the throne! Now sweep away this creeping night, and bring -the light and cheer again, that all the world may bless thee." - -But I said: - -"That a common man should be shamed before the world, is nothing; -but it were dishonor to the _king_ if any that saw his minister naked -should not also see him delivered from his shame. If I might ask -that my clothes be brought again--" - -"They are not meet," the king broke in. "Fetch raiment of another -sort; clothe him like a prince!" - -My idea worked. I wanted to keep things as they were till the -eclipse was total, otherwise they would be trying again to get -me to dismiss the darkness, and of course I couldn't do it. Sending -for the clothes gained some delay, but not enough. So I had to make -another excuse. I said it would be but natural if the king should -change his mind and repent to some extent of what he had done -under excitement; therefore I would let the darkness grow a while, -and if at the end of a reasonable time the king had kept his mind -the same, the darkness should be dismissed. Neither the king nor -anybody else was satisfied with that arrangement, but I had -to stick to my point. - -It grew darker and darker and blacker and blacker, while I struggled -with those awkward sixth-century clothes. It got to be pitch dark, -at last, and the multitude groaned with horror to feel the cold -uncanny night breezes fan through the place and see the stars -come out and twinkle in the sky. At last the eclipse was total, -and I was very glad of it, but everybody else was in misery; which -was quite natural. I said: - -"The king, by his silence, still stands to the terms." Then -I lifted up my hands--stood just so a moment--then I said, with -the most awful solemnity: "Let the enchantment dissolve and -pass harmless away!" - -There was no response, for a moment, in that deep darkness and -that graveyard hush. But when the silver rim of the sun pushed -itself out, a moment or two later, the assemblage broke loose with -a vast shout and came pouring down like a deluge to smother me -with blessings and gratitude; and Clarence was not the last of -the wash, to be sure. - - - -CHAPTER VII - -MERLIN'S TOWER - -Inasmuch as I was now the second personage in the Kingdom, as far -as political power and authority were concerned, much was made -of me. My raiment was of silks and velvets and cloth of gold, -and by consequence was very showy, also uncomfortable. But habit -would soon reconcile me to my clothes; I was aware of that. I was -given the choicest suite of apartments in the castle, after -the king's. They were aglow with loud-colored silken hangings, -but the stone floors had nothing but rushes on them for a carpet, -and they were misfit rushes at that, being not all of one breed. -As for conveniences, properly speaking, there weren't any. I mean -_little_ conveniences; it is the little conveniences that make -the real comfort of life. The big oaken chairs, graced with rude -carvings, were well enough, but that was the stopping place. -There was no soap, no matches, no looking-glass--except a metal -one, about as powerful as a pail of water. And not a chromo. -I had been used to chromos for years, and I saw now that without -my suspecting it a passion for art had got worked into the fabric -of my being, and was become a part of me. It made me homesick -to look around over this proud and gaudy but heartless barrenness -and remember that in our house in East Hartford, all unpretending -as it was, you couldn't go into a room but you would find an -insurance-chromo, or at least a three-color God-Bless-Our-Home -over the door; and in the parlor we had nine. But here, even in -my grand room of state, there wasn't anything in the nature of -a picture except a thing the size of a bedquilt, which was either -woven or knitted (it had darned places in it), and nothing in it -was the right color or the right shape; and as for proportions, -even Raphael himself couldn't have botched them more formidably, -after all his practice on those nightmares they call his "celebrated -Hampton Court cartoons." Raphael was a bird. We had several -of his chromos; one was his "Miraculous Draught of Fishes," where -he puts in a miracle of his own--puts three men into a canoe which -wouldn't have held a dog without upsetting. I always admired -to study R.'s art, it was so fresh and unconventional. - -There wasn't even a bell or a speaking-tube in the castle. I had -a great many servants, and those that were on duty lolled in the -anteroom; and when I wanted one of them I had to go and call for him. -There was no gas, there were no candles; a bronze dish half full -of boarding-house butter with a blazing rag floating in it was -the thing that produced what was regarded as light. A lot of -these hung along the walls and modified the dark, just toned it -down enough to make it dismal. If you went out at night, your -servants carried torches. There were no books, pens, paper or -ink, and no glass in the openings they believed to be windows. -It is a little thing--glass is--until it is absent, then it becomes -a big thing. But perhaps the worst of all was, that there wasn't -any sugar, coffee, tea, or tobacco. I saw that I was just another -Robinson Crusoe cast away on an uninhabited island, with no society -but some more or less tame animals, and if I wanted to make life -bearable I must do as he did--invent, contrive, create, reorganize -things; set brain and hand to work, and keep them busy. Well, -that was in my line. - -One thing troubled me along at first--the immense interest which -people took in me. Apparently the whole nation wanted a look -at me. It soon transpired that the eclipse had scared the British -world almost to death; that while it lasted the whole country, -from one end to the other, was in a pitiable state of panic, and -the churches, hermitages, and monkeries overflowed with praying -and weeping poor creatures who thought the end of the world was -come. Then had followed the news that the producer of this awful -event was a stranger, a mighty magician at Arthur's court; that he -could have blown out the sun like a candle, and was just going -to do it when his mercy was purchased, and he then dissolved -his enchantments, and was now recognized and honored as the man -who had by his unaided might saved the globe from destruction and -its peoples from extinction. Now if you consider that everybody -believed that, and not only believed it, but never even dreamed -of doubting it, you will easily understand that there was not -a person in all Britain that would not have walked fifty miles -to get a sight of me. Of course I was all the talk--all other -subjects were dropped; even the king became suddenly a person of -minor interest and notoriety. Within twenty-four hours the -delegations began to arrive, and from that time onward for a fortnight -they kept coming. The village was crowded, and all the countryside. -I had to go out a dozen times a day and show myself to these -reverent and awe-stricken multitudes. It came to be a great burden, -as to time and trouble, but of course it was at the same time -compensatingly agreeable to be so celebrated and such a center -of homage. It turned Brer Merlin green with envy and spite, which -was a great satisfaction to me. But there was one thing I couldn't -understand--nobody had asked for an autograph. I spoke to Clarence -about it. By George! I had to explain to him what it was. Then -he said nobody in the country could read or write but a few dozen -priests. Land! think of that. - -There was another thing that troubled me a little. Those multitudes -presently began to agitate for another miracle. That was natural. -To be able to carry back to their far homes the boast that they -had seen the man who could command the sun, riding in the heavens, -and be obeyed, would make them great in the eyes of their neighbors, -and envied by them all; but to be able to also say they had seen -him work a miracle themselves--why, people would come a distance -to see _them_. The pressure got to be pretty strong. There was -going to be an eclipse of the moon, and I knew the date and hour, -but it was too far away. Two years. I would have given a good -deal for license to hurry it up and use it now when there was -a big market for it. It seemed a great pity to have it wasted so, -and come lagging along at a time when a body wouldn't have any -use for it, as like as not. If it had been booked for only a month -away, I could have sold it short; but, as matters stood, I couldn't -seem to cipher out any way to make it do me any good, so I gave up -trying. Next, Clarence found that old Merlin was making himself -busy on the sly among those people. He was spreading a report that -I was a humbug, and that the reason I didn't accommodate the people -with a miracle was because I couldn't. I saw that I must do -something. I presently thought out a plan. - -By my authority as executive I threw Merlin into prison--the same -cell I had occupied myself. Then I gave public notice by herald -and trumpet that I should be busy with affairs of state for -a fortnight, but about the end of that time I would take a moment's -leisure and blow up Merlin's stone tower by fires from heaven; -in the meantime, whoso listened to evil reports about me, let him -beware. Furthermore, I would perform but this one miracle at -this time, and no more; if it failed to satisfy and any murmured, -I would turn the murmurers into horses, and make them useful. -Quiet ensued. - -I took Clarence into my confidence, to a certain degree, and we -went to work privately. I told him that this was a sort of miracle -that required a trifle of preparation, and that it would be sudden -death to ever talk about these preparations to anybody. That made -his mouth safe enough. Clandestinely we made a few bushels of -first-rate blasting powder, and I superintended my armorers while -they constructed a lightning-rod and some wires. This old stone -tower was very massive--and rather ruinous, too, for it was Roman, -and four hundred years old. Yes, and handsome, after a rude -fashion, and clothed with ivy from base to summit, as with a shirt -of scale mail. It stood on a lonely eminence, in good view from -the castle, and about half a mile away. - -Working by night, we stowed the powder in the tower--dug stones -out, on the inside, and buried the powder in the walls themselves, -which were fifteen feet thick at the base. We put in a peck -at a time, in a dozen places. We could have blown up the Tower -of London with these charges. When the thirteenth night was come -we put up our lightning-rod, bedded it in one of the batches of -powder, and ran wires from it to the other batches. Everybody -had shunned that locality from the day of my proclamation, but -on the morning of the fourteenth I thought best to warn the people, -through the heralds, to keep clear away--a quarter of a mile away. -Then added, by command, that at some time during the twenty-four -hours I would consummate the miracle, but would first give a brief -notice; by flags on the castle towers if in the daytime, by -torch-baskets in the same places if at night. - -Thunder-showers had been tolerably frequent of late, and I was -not much afraid of a failure; still, I shouldn't have cared for -a delay of a day or two; I should have explained that I was busy -with affairs of state yet, and the people must wait. - -Of course, we had a blazing sunny day--almost the first one without -a cloud for three weeks; things always happen so. I kept secluded, -and watched the weather. Clarence dropped in from time to time -and said the public excitement was growing and growing all the -time, and the whole country filling up with human masses as far -as one could see from the battlements. At last the wind sprang up -and a cloud appeared--in the right quarter, too, and just at -nightfall. For a little while I watched that distant cloud spread -and blacken, then I judged it was time for me to appear. I ordered -the torch-baskets to be lit, and Merlin liberated and sent to me. -A quarter of an hour later I ascended the parapet and there found -the king and the court assembled and gazing off in the darkness -toward Merlin's Tower. Already the darkness was so heavy that -one could not see far; these people and the old turrets, being -partly in deep shadow and partly in the red glow from the great -torch-baskets overhead, made a good deal of a picture. - -Merlin arrived in a gloomy mood. I said: - -"You wanted to burn me alive when I had not done you any harm, -and latterly you have been trying to injure my professional -reputation. Therefore I am going to call down fire and blow up -your tower, but it is only fair to give you a chance; now if you -think you can break my enchantments and ward off the fires, step -to the bat, it's your innings." - -"I can, fair sir, and I will. Doubt it not." - -He drew an imaginary circle on the stones of the roof, and burnt -a pinch of powder in it, which sent up a small cloud of aromatic -smoke, whereat everybody fell back and began to cross themselves -and get uncomfortable. Then he began to mutter and make passes -in the air with his hands. He worked himself up slowly and -gradually into a sort of frenzy, and got to thrashing around with -his arms like the sails of a windmill. By this time the storm had -about reached us; the gusts of wind were flaring the torches and -making the shadows swash about, the first heavy drops of rain -were falling, the world abroad was black as pitch, the lightning -began to wink fitfully. Of course, my rod would be loading itself -now. In fact, things were imminent. So I said: - -"You have had time enough. I have given you every advantage, -and not interfered. It is plain your magic is weak. It is only -fair that I begin now." - -I made about three passes in the air, and then there was an awful -crash and that old tower leaped into the sky in chunks, along -with a vast volcanic fountain of fire that turned night to noonday, -and showed a thousand acres of human beings groveling on the ground -in a general collapse of consternation. Well, it rained mortar and -masonry the rest of the week. This was the report; but probably -the facts would have modified it. - -It was an effective miracle. The great bothersome temporary -population vanished. There were a good many thousand tracks -in the mud the next morning, but they were all outward bound. -If I had advertised another miracle I couldn't have raised an -audience with a sheriff. - -Merlin's stock was flat. The king wanted to stop his wages; he -even wanted to banish him, but I interfered. I said he would be -useful to work the weather, and attend to small matters like that, -and I would give him a lift now and then when his poor little -parlor-magic soured on him. There wasn't a rag of his tower left, -but I had the government rebuild it for him, and advised him -to take boarders; but he was too high-toned for that. And as for -being grateful, he never even said thank you. He was a rather -hard lot, take him how you might; but then you couldn't fairly -expect a man to be sweet that had been set back so. - - - -CHAPTER VIII - -THE BOSS - -To be vested with enormous authority is a fine thing; but to have -the on-looking world consent to it is a finer. The tower episode -solidified my power, and made it impregnable. If any were perchance -disposed to be jealous and critical before that, they experienced -a change of heart, now. There was not any one in the kingdom -who would have considered it good judgment to meddle with my matters. - -I was fast getting adjusted to my situation and circumstances. -For a time, I used to wake up, mornings, and smile at my "dream," -and listen for the Colt's factory whistle; but that sort of thing -played itself out, gradually, and at last I was fully able to realize -that I was actually living in the sixth century, and in Arthur's -court, not a lunatic asylum. After that, I was just as much -at home in that century as I could have been in any other; and -as for preference, I wouldn't have traded it for the twentieth. -Look at the opportunities here for a man of knowledge, brains, -pluck, and enterprise to sail in and grow up with the country. -The grandest field that ever was; and all my own; not a competitor; -not a man who wasn't a baby to me in acquirements and capacities; -whereas, what would I amount to in the twentieth century? I should -be foreman of a factory, that is about all; and could drag a seine -down street any day and catch a hundred better men than myself. - -What a jump I had made! I couldn't keep from thinking about it, -and contemplating it, just as one does who has struck oil. There -was nothing back of me that could approach it, unless it might be -Joseph's case; and Joseph's only approached it, it didn't equal -it, quite. For it stands to reason that as Joseph's splendid -financial ingenuities advantaged nobody but the king, the general -public must have regarded him with a good deal of disfavor, whereas -I had done my entire public a kindness in sparing the sun, and was -popular by reason of it. - -I was no shadow of a king; I was the substance; the king himself -was the shadow. My power was colossal; and it was not a mere -name, as such things have generally been, it was the genuine -article. I stood here, at the very spring and source of the second -great period of the world's history; and could see the trickling -stream of that history gather and deepen and broaden, and roll -its mighty tides down the far centuries; and I could note the -upspringing of adventurers like myself in the shelter of its long -array of thrones: De Montforts, Gavestons, Mortimers, Villierses; -the war-making, campaign-directing wantons of France, and Charles -the Second's scepter-wielding drabs; but nowhere in the procession -was my full-sized fellow visible. I was a Unique; and glad to know -that that fact could not be dislodged or challenged for thirteen -centuries and a half, for sure. Yes, in power I was equal to -the king. At the same time there was another power that was -a trifle stronger than both of us put together. That was the Church. -I do not wish to disguise that fact. I couldn't, if I wanted to. -But never mind about that, now; it will show up, in its proper -place, later on. It didn't cause me any trouble in the beginning ---at least any of consequence. - -Well, it was a curious country, and full of interest. And the -people! They were the quaintest and simplest and trustingest race; -why, they were nothing but rabbits. It was pitiful for a person -born in a wholesome free atmosphere to listen to their humble -and hearty outpourings of loyalty toward their king and Church -and nobility; as if they had any more occasion to love and honor -king and Church and noble than a slave has to love and honor -the lash, or a dog has to love and honor the stranger that kicks him! -Why, dear me, _any_ kind of royalty, howsoever modified, _any_ kind -of aristocracy, howsoever pruned, is rightly an insult; but if you -are born and brought up under that sort of arrangement you probably -never find it out for yourself, and don't believe it when somebody -else tells you. It is enough to make a body ashamed of his race -to think of the sort of froth that has always occupied its thrones -without shadow of right or reason, and the seventh-rate people -that have always figured as its aristocracies--a company of monarchs -and nobles who, as a rule, would have achieved only poverty and -obscurity if left, like their betters, to their own exertions. - -The most of King Arthur's British nation were slaves, pure and -simple, and bore that name, and wore the iron collar on their -necks; and the rest were slaves in fact, but without the name; -they imagined themselves men and freemen, and called themselves -so. The truth was, the nation as a body was in the world for one -object, and one only: to grovel before king and Church and noble; -to slave for them, sweat blood for them, starve that they might -be fed, work that they might play, drink misery to the dregs that -they might be happy, go naked that they might wear silks and -jewels, pay taxes that they might be spared from paying them, -be familiar all their lives with the degrading language and postures -of adulation that they might walk in pride and think themselves -the gods of this world. And for all this, the thanks they got were -cuffs and contempt; and so poor-spirited were they that they took -even this sort of attention as an honor. - -Inherited ideas are a curious thing, and interesting to observe -and examine. I had mine, the king and his people had theirs. -In both cases they flowed in ruts worn deep by time and habit, -and the man who should have proposed to divert them by reason -and argument would have had a long contract on his hands. For -instance, those people had inherited the idea that all men without -title and a long pedigree, whether they had great natural gifts -and acquirements or hadn't, were creatures of no more consideration -than so many animals, bugs, insects; whereas I had inherited the idea -that human daws who can consent to masquerade in the peacock-shams -of inherited dignities and unearned titles, are of no good but -to be laughed at. The way I was looked upon was odd, but it was -natural. You know how the keeper and the public regard the elephant -in the menagerie: well, that is the idea. They are full of -admiration of his vast bulk and his prodigious strength; they -speak with pride of the fact that he can do a hundred marvels -which are far and away beyond their own powers; and they speak -with the same pride of the fact that in his wrath he is able -to drive a thousand men before him. But does that make him one -of _them_? No; the raggedest tramp in the pit would smile at -the idea. He couldn't comprehend it; couldn't take it in; couldn't -in any remote way conceive of it. Well, to the king, the nobles, -and all the nation, down to the very slaves and tramps, I was -just that kind of an elephant, and nothing more. I was admired, -also feared; but it was as an animal is admired and feared. -The animal is not reverenced, neither was I; I was not even -respected. I had no pedigree, no inherited title; so in the king's -and nobles' eyes I was mere dirt; the people regarded me with -wonder and awe, but there was no reverence mixed with it; through -the force of inherited ideas they were not able to conceive of -anything being entitled to that except pedigree and lordship. -There you see the hand of that awful power, the Roman Catholic -Church. In two or three little centuries it had converted a nation -of men to a nation of worms. Before the day of the Church's -supremacy in the world, men were men, and held their heads up, -and had a man's pride and spirit and independence; and what -of greatness and position a person got, he got mainly by achievement, -not by birth. But then the Church came to the front, with an axe -to grind; and she was wise, subtle, and knew more than one way -to skin a cat--or a nation; she invented "divine right of kings," -and propped it all around, brick by brick, with the Beatitudes ---wrenching them from their good purpose to make them fortify -an evil one; she preached (to the commoner) humility, obedience -to superiors, the beauty of self-sacrifice; she preached (to the -commoner) meekness under insult; preached (still to the commoner, -always to the commoner) patience, meanness of spirit, non-resistance -under oppression; and she introduced heritable ranks and -aristocracies, and taught all the Christian populations of the earth -to bow down to them and worship them. Even down to my birth-century -that poison was still in the blood of Christendom, and the best -of English commoners was still content to see his inferiors -impudently continuing to hold a number of positions, such as -lordships and the throne, to which the grotesque laws of his country -did not allow him to aspire; in fact, he was not merely contented -with this strange condition of things, he was even able to persuade -himself that he was proud of it. It seems to show that there isn't -anything you can't stand, if you are only born and bred to it. -Of course that taint, that reverence for rank and title, had been -in our American blood, too--I know that; but when I left America -it had disappeared--at least to all intents and purposes. The -remnant of it was restricted to the dudes and dudesses. When -a disease has worked its way down to that level, it may fairly -be said to be out of the system. - -But to return to my anomalous position in King Arthur's kingdom. -Here I was, a giant among pigmies, a man among children, a master -intelligence among intellectual moles: by all rational measurement -the one and only actually great man in that whole British world; -and yet there and then, just as in the remote England of my -birth-time, the sheep-witted earl who could claim long descent -from a king's leman, acquired at second-hand from the slums of -London, was a better man than I was. Such a personage was fawned -upon in Arthur's realm and reverently looked up to by everybody, -even though his dispositions were as mean as his intelligence, -and his morals as base as his lineage. There were times when -_he_ could sit down in the king's presence, but I couldn't. I could -have got a title easily enough, and that would have raised me -a large step in everybody's eyes; even in the king's, the giver -of it. But I didn't ask for it; and I declined it when it was -offered. I couldn't have enjoyed such a thing with my notions; -and it wouldn't have been fair, anyway, because as far back as -I could go, our tribe had always been short of the bar sinister. -I couldn't have felt really and satisfactorily fine and proud -and set-up over any title except one that should come from the nation -itself, the only legitimate source; and such an one I hoped to win; -and in the course of years of honest and honorable endeavor, I did -win it and did wear it with a high and clean pride. This title -fell casually from the lips of a blacksmith, one day, in a village, -was caught up as a happy thought and tossed from mouth to mouth -with a laugh and an affirmative vote; in ten days it had swept -the kingdom, and was become as familiar as the king's name. I was -never known by any other designation afterward, whether in the -nation's talk or in grave debate upon matters of state at the -council-board of the sovereign. This title, translated into modern -speech, would be THE BOSS. Elected by the nation. That suited me. -And it was a pretty high title. There were very few THE'S, and -I was one of them. If you spoke of the duke, or the earl, or -the bishop, how could anybody tell which one you meant? But if -you spoke of The King or The Queen or The Boss, it was different. - -Well, I liked the king, and as king I respected him--respected -the office; at least respected it as much as I was capable of -respecting any unearned supremacy; but as MEN I looked down upon -him and his nobles--privately. And he and they liked me, and -respected my office; but as an animal, without birth or sham title, -they looked down upon me--and were not particularly private about it, -either. I didn't charge for my opinion about them, and they didn't -charge for their opinion about me: the account was square, the -books balanced, everybody was satisfied. - - - -CHAPTER IX - -THE TOURNAMENT - -They were always having grand tournaments there at Camelot; and -very stirring and picturesque and ridiculous human bull-fights -they were, too, but just a little wearisome to the practical mind. -However, I was generally on hand--for two reasons: a man must -not hold himself aloof from the things which his friends and his -community have at heart if he would be liked--especially as -a statesman; and both as business man and statesman I wanted -to study the tournament and see if I couldn't invent an improvement -on it. That reminds me to remark, in passing, that the very first -official thing I did, in my administration--and it was on the very -first day of it, too--was to start a patent office; for I knew -that a country without a patent office and good patent laws was -just a crab, and couldn't travel any way but sideways or backways. - -Things ran along, a tournament nearly every week; and now and then -the boys used to want me to take a hand--I mean Sir Launcelot and -the rest--but I said I would by and by; no hurry yet, and too much -government machinery to oil up and set to rights and start a-going. - -We had one tournament which was continued from day to day during -more than a week, and as many as five hundred knights took part -in it, from first to last. They were weeks gathering. They came -on horseback from everywhere; from the very ends of the country, -and even from beyond the sea; and many brought ladies, and all -brought squires and troops of servants. It was a most gaudy and -gorgeous crowd, as to costumery, and very characteristic of the -country and the time, in the way of high animal spirits, innocent -indecencies of language, and happy-hearted indifference to morals. -It was fight or look on, all day and every day; and sing, gamble, -dance, carouse half the night every night. They had a most noble -good time. You never saw such people. Those banks of beautiful -ladies, shining in their barbaric splendors, would see a knight -sprawl from his horse in the lists with a lanceshaft the thickness -of your ankle clean through him and the blood spouting, and instead -of fainting they would clap their hands and crowd each other for a -better view; only sometimes one would dive into her handkerchief, -and look ostentatiously broken-hearted, and then you could lay -two to one that there was a scandal there somewhere and she was -afraid the public hadn't found it out. - -The noise at night would have been annoying to me ordinarily, but -I didn't mind it in the present circumstances, because it kept me -from hearing the quacks detaching legs and arms from the day's -cripples. They ruined an uncommon good old cross-cut saw for me, -and broke the saw-buck, too, but I let it pass. And as for my -axe--well, I made up my mind that the next time I lent an axe -to a surgeon I would pick my century. - -I not only watched this tournament from day to day, but detailed -an intelligent priest from my Department of Public Morals and -Agriculture, and ordered him to report it; for it was my purpose -by and by, when I should have gotten the people along far enough, -to start a newspaper. The first thing you want in a new country, -is a patent office; then work up your school system; and after that, -out with your paper. A newspaper has its faults, and plenty of them, -but no matter, it's hark from the tomb for a dead nation, and don't -you forget it. You can't resurrect a dead nation without it; there -isn't any way. So I wanted to sample things, and be finding out -what sort of reporter-material I might be able to rake together out -of the sixth century when I should come to need it. - -Well, the priest did very well, considering. He got in all -the details, and that is a good thing in a local item: you see, -he had kept books for the undertaker-department of his church -when he was younger, and there, you know, the money's in the details; -the more details, the more swag: bearers, mutes, candles, prayers ---everything counts; and if the bereaved don't buy prayers enough -you mark up your candles with a forked pencil, and your bill -shows up all right. And he had a good knack at getting in the -complimentary thing here and there about a knight that was likely -to advertise--no, I mean a knight that had influence; and he also -had a neat gift of exaggeration, for in his time he had kept door -for a pious hermit who lived in a sty and worked miracles. - -Of course this novice's report lacked whoop and crash and lurid -description, and therefore wanted the true ring; but its antique -wording was quaint and sweet and simple, and full of the fragrances -and flavors of the time, and these little merits made up in a measure -for its more important lacks. Here is an extract from it: - - Then Sir Brian de les Isles and Grummore Grummorsum, - knights of the castle, encountered with Sir Aglovale and - Sir Tor, and Sir Tor smote down Sir Grummore Grummorsum - to the earth. Then came Sir Carados of the dolorous - tower, and Sir Turquine, knights of the castle, and - there encountered with them Sir Percivale de Galis - and Sir Lamorak de Galis, that were two brethren, and - there encountered Sir Percivale with Sir Carados, and - either brake their spears unto their hands, and then - Sir Turquine with Sir Lamorak, and either of them smote - down other, horse and all, to the earth, and either - parties rescued other and horsed them again. And Sir - Arnold, and Sir Gauter, knights of the castle, - encountered with Sir Brandiles and Sir Kay, and these - four knights encountered mightily, and brake their - spears to their hands. Then came Sir Pertolope from - the castle, and there encountered with him Sir Lionel, - and there Sir Pertolope the green knight smote down Sir - Lionel, brother to Sir Launcelot. All this was marked - by noble heralds, who bare him best, and their names. - Then Sir Bleobaris brake his spear upon Sir Gareth, - but of that stroke Sir Bleobaris fell to the earth. - When Sir Galihodin saw that, he bad Sir Gareth keep him, - and Sir Gareth smote him to the earth. Then Sir Galihud - gat a spear to avenge his brother, and in the same wise - Sir Gareth served him, and Sir Dinadan and his brother - La Cote Male Taile, and Sir Sagramore le Disirous, and - Sir Dodinas le Savage; all these he bare down with one - spear. When King Aswisance of Ireland saw Sir Gareth - fare so he marvelled what he might be, that one time - seemed green, and another time, at his again coming, - he seemed blue. And thus at every course that he rode - to and fro he changed his color, so that there might - neither king nor knight have ready cognizance of him. - Then Sir Agwisance the King of Ireland encountered - with Sir Gareth, and there Sir Gareth smote him from - his horse, saddle and all. And then came King Carados - of Scotland, and Sir Gareth smote him down horse and - man. And in the same wise he served King Uriens of the - land of Gore. And then there came in Sir Bagdemagus, - and Sir Gareth smote him down horse and man to the - earth. And Bagdemagus's son Meliganus brake a spear - upon Sir Gareth mightily and knightly. And then Sir - Galahault the noble prince cried on high, Knight with - the many colors, well hast thou justed; now make thee - ready that I may just with thee. Sir Gareth heard him, - and he gat a great spear, and so they encountered - together, and there the prince brake his spear; but Sir - Gareth smote him upon the left side of the helm, that - he reeled here and there, and he had fallen down had not - his men recovered him. Truly, said King Arthur, that - knight with the many colors is a good knight. Wherefore - the king called unto him Sir Launcelot, and prayed him - to encounter with that knight. Sir, said Launcelot, I - may as well find in my heart for to forbear him at - this time, for he hath had travail enough this day, and - when a good knight doth so well upon some day, it is - no good knight's part to let him of his worship, and, - namely, when he seeth a knight hath done so great - labour; for peradventure, said Sir Launcelot, his - quarrel is here this day, and peradventure he is best - beloved with this lady of all that be here, for I see - well he paineth himself and enforceth him to do great - deeds, and therefore, said Sir Launcelot, as for me, - this day he shall have the honour; though it lay in my - power to put him from it, I would not. - -There was an unpleasant little episode that day, which for reasons -of state I struck out of my priest's report. You will have noticed -that Garry was doing some great fighting in the engagement. When -I say Garry I mean Sir Gareth. Garry was my private pet name -for him; it suggests that I had a deep affection for him, and that -was the case. But it was a private pet name only, and never spoken -aloud to any one, much less to him; being a noble, he would not -have endured a familiarity like that from me. Well, to proceed: -I sat in the private box set apart for me as the king's minister. -While Sir Dinadan was waiting for his turn to enter the lists, -he came in there and sat down and began to talk; for he was always -making up to me, because I was a stranger and he liked to have -a fresh market for his jokes, the most of them having reached that -stage of wear where the teller has to do the laughing himself while -the other person looks sick. I had always responded to his efforts -as well as I could, and felt a very deep and real kindness for him, -too, for the reason that if by malice of fate he knew the one -particular anecdote which I had heard oftenest and had most hated -and most loathed all my life, he had at least spared it me. It was -one which I had heard attributed to every humorous person who -had ever stood on American soil, from Columbus down to Artemus Ward. -It was about a humorous lecturer who flooded an ignorant audience -with the killingest jokes for an hour and never got a laugh; and -then when he was leaving, some gray simpletons wrung him gratefully -by the hand and said it had been the funniest thing they had ever -heard, and "it was all they could do to keep from laughin' right -out in meetin'." That anecdote never saw the day that it was -worth the telling; and yet I had sat under the telling of it -hundreds and thousands and millions and billions of times, and -cried and cursed all the way through. Then who can hope to know -what my feelings were, to hear this armor-plated ass start in on -it again, in the murky twilight of tradition, before the dawn of -history, while even Lactantius might be referred to as "the late -Lactantius," and the Crusades wouldn't be born for five hundred -years yet? Just as he finished, the call-boy came; so, haw-hawing -like a demon, he went rattling and clanking out like a crate of -loose castings, and I knew nothing more. It was some minutes -before I came to, and then I opened my eyes just in time to see -Sir Gareth fetch him an awful welt, and I unconsciously out with -the prayer, "I hope to gracious he's killed!" But by ill-luck, -before I had got half through with the words, Sir Gareth crashed -into Sir Sagramor le Desirous and sent him thundering over his -horse's crupper, and Sir Sagramor caught my remark and thought -I meant it for _him_. - -Well, whenever one of those people got a thing into his head, -there was no getting it out again. I knew that, so I saved my -breath, and offered no explanations. As soon as Sir Sagramor -got well, he notified me that there was a little account to settle -between us, and he named a day three or four years in the future; -place of settlement, the lists where the offense had been given. -I said I would be ready when he got back. You see, he was going -for the Holy Grail. The boys all took a flier at the Holy Grail -now and then. It was a several years' cruise. They always put in -the long absence snooping around, in the most conscientious way, -though none of them had any idea where the Holy Grail really was, -and I don't think any of them actually expected to find it, or -would have known what to do with it if he _had_ run across it. -You see, it was just the Northwest Passage of that day, as you may -say; that was all. Every year expeditions went out holy grailing, -and next year relief expeditions went out to hunt for _them_. There -was worlds of reputation in it, but no money. Why, they actually -wanted _me_ to put in! Well, I should smile. - - - -CHAPTER X - -BEGINNINGS OF CIVILIZATION - -The Round Table soon heard of the challenge, and of course it was -a good deal discussed, for such things interested the boys. -The king thought I ought now to set forth in quest of adventures, -so that I might gain renown and be the more worthy to meet -Sir Sagramor when the several years should have rolled away. -I excused myself for the present; I said it would take me three -or four years yet to get things well fixed up and going smoothly; -then I should be ready; all the chances were that at the end of -that time Sir Sagramor would still be out grailing, so no valuable -time would be lost by the postponement; I should then have been -in office six or seven years, and I believed my system and machinery -would be so well developed that I could take a holiday without -its working any harm. - -I was pretty well satisfied with what I had already accomplished. -In various quiet nooks and corners I had the beginnings of all -sorts of industries under way--nuclei of future vast factories, -the iron and steel missionaries of my future civilization. In these -were gathered together the brightest young minds I could find, -and I kept agents out raking the country for more, all the time. -I was training a crowd of ignorant folk into experts--experts -in every sort of handiwork and scientific calling. These nurseries -of mine went smoothly and privately along undisturbed in their -obscure country retreats, for nobody was allowed to come into their -precincts without a special permit--for I was afraid of the Church. - -I had started a teacher-factory and a lot of Sunday-schools the -first thing; as a result, I now had an admirable system of graded -schools in full blast in those places, and also a complete variety -of Protestant congregations all in a prosperous and growing -condition. Everybody could be any kind of a Christian he wanted -to; there was perfect freedom in that matter. But I confined public -religious teaching to the churches and the Sunday-schools, permitting -nothing of it in my other educational buildings. I could have -given my own sect the preference and made everybody a Presbyterian -without any trouble, but that would have been to affront a law -of human nature: spiritual wants and instincts are as various in -the human family as are physical appetites, complexions, and -features, and a man is only at his best, morally, when he is -equipped with the religious garment whose color and shape and -size most nicely accommodate themselves to the spiritual complexion, -angularities, and stature of the individual who wears it; and, -besides, I was afraid of a united Church; it makes a mighty power, -the mightiest conceivable, and then when it by and by gets into -selfish hands, as it is always bound to do, it means death to -human liberty and paralysis to human thought. - -All mines were royal property, and there were a good many of them. -They had formerly been worked as savages always work mines--holes -grubbed in the earth and the mineral brought up in sacks of hide by -hand, at the rate of a ton a day; but I had begun to put the mining -on a scientific basis as early as I could. - -Yes, I had made pretty handsome progress when Sir Sagramor's -challenge struck me. - -Four years rolled by--and then! Well, you would never imagine -it in the world. Unlimited power is the ideal thing when it is in -safe hands. The despotism of heaven is the one absolutely perfect -government. An earthly despotism would be the absolutely perfect -earthly government, if the conditions were the same, namely, the -despot the perfectest individual of the human race, and his lease -of life perpetual. But as a perishable perfect man must die, and -leave his despotism in the hands of an imperfect successor, an -earthly despotism is not merely a bad form of government, it is -the worst form that is possible. - -My works showed what a despot could do with the resources of -a kingdom at his command. Unsuspected by this dark land, I had -the civilization of the nineteenth century booming under its very -nose! It was fenced away from the public view, but there it was, -a gigantic and unassailable fact--and to be heard from, yet, if -I lived and had luck. There it was, as sure a fact and as substantial -a fact as any serene volcano, standing innocent with its smokeless -summit in the blue sky and giving no sign of the rising hell in its -bowels. My schools and churches were children four years before; -they were grown-up now; my shops of that day were vast factories -now; where I had a dozen trained men then, I had a thousand now; -where I had one brilliant expert then, I had fifty now. I stood -with my hand on the cock, so to speak, ready to turn it on and -flood the midnight world with light at any moment. But I was not -going to do the thing in that sudden way. It was not my policy. -The people could not have stood it; and, moreover, I should have -had the Established Roman Catholic Church on my back in a minute. - -No, I had been going cautiously all the while. I had had confidential -agents trickling through the country some time, whose office was -to undermine knighthood by imperceptible degrees, and to gnaw -a little at this and that and the other superstition, and so prepare -the way gradually for a better order of things. I was turning on -my light one-candle-power at a time, and meant to continue to do so. - -I had scattered some branch schools secretly about the kingdom, -and they were doing very well. I meant to work this racket more -and more, as time wore on, if nothing occurred to frighten me. -One of my deepest secrets was my West Point--my military academy. -I kept that most jealously out of sight; and I did the same with my -naval academy which I had established at a remote seaport. Both -were prospering to my satisfaction. - -Clarence was twenty-two now, and was my head executive, my right -hand. He was a darling; he was equal to anything; there wasn't -anything he couldn't turn his hand to. Of late I had been training -him for journalism, for the time seemed about right for a start -in the newspaper line; nothing big, but just a small weekly for -experimental circulation in my civilization-nurseries. He took -to it like a duck; there was an editor concealed in him, sure. -Already he had doubled himself in one way; he talked sixth century -and wrote nineteenth. His journalistic style was climbing, -steadily; it was already up to the back settlement Alabama mark, -and couldn't be told from the editorial output of that region -either by matter or flavor. - -We had another large departure on hand, too. This was a telegraph -and a telephone; our first venture in this line. These wires were -for private service only, as yet, and must be kept private until -a riper day should come. We had a gang of men on the road, working -mainly by night. They were stringing ground wires; we were afraid -to put up poles, for they would attract too much inquiry. Ground -wires were good enough, in both instances, for my wires were -protected by an insulation of my own invention which was perfect. -My men had orders to strike across country, avoiding roads, and -establishing connection with any considerable towns whose lights -betrayed their presence, and leaving experts in charge. Nobody -could tell you how to find any place in the kingdom, for nobody -ever went intentionally to any place, but only struck it by -accident in his wanderings, and then generally left it without -thinking to inquire what its name was. At one time and another -we had sent out topographical expeditions to survey and map the -kingdom, but the priests had always interfered and raised trouble. -So we had given the thing up, for the present; it would be poor -wisdom to antagonize the Church. - -As for the general condition of the country, it was as it had been -when I arrived in it, to all intents and purposes. I had made -changes, but they were necessarily slight, and they were not -noticeable. Thus far, I had not even meddled with taxation, -outside of the taxes which provided the royal revenues. I had -systematized those, and put the service on an effective and -righteous basis. As a result, these revenues were already quadrupled, -and yet the burden was so much more equably distributed than -before, that all the kingdom felt a sense of relief, and the praises -of my administration were hearty and general. - -Personally, I struck an interruption, now, but I did not mind it, -it could not have happened at a better time. Earlier it could -have annoyed me, but now everything was in good hands and swimming -right along. The king had reminded me several times, of late, that -the postponement I had asked for, four years before, had about -run out now. It was a hint that I ought to be starting out to seek -adventures and get up a reputation of a size to make me worthy -of the honor of breaking a lance with Sir Sagramor, who was still -out grailing, but was being hunted for by various relief expeditions, -and might be found any year, now. So you see I was expecting -this interruption; it did not take me by surprise. - - - -CHAPTER XI - -THE YANKEE IN SEARCH OF ADVENTURES - -There never was such a country for wandering liars; and they were -of both sexes. Hardly a month went by without one of these tramps -arriving; and generally loaded with a tale about some princess or -other wanting help to get her out of some far-away castle where -she was held in captivity by a lawless scoundrel, usually a giant. -Now you would think that the first thing the king would do after -listening to such a novelette from an entire stranger, would be -to ask for credentials--yes, and a pointer or two as to locality -of castle, best route to it, and so on. But nobody ever thought -of so simple and common-sense a thing at that. No, everybody -swallowed these people's lies whole, and never asked a question -of any sort or about anything. Well, one day when I was not -around, one of these people came along--it was a she one, this -time--and told a tale of the usual pattern. Her mistress was -a captive in a vast and gloomy castle, along with forty-four other -young and beautiful girls, pretty much all of them princesses; -they had been languishing in that cruel captivity for twenty-six -years; the masters of the castle were three stupendous brothers, -each with four arms and one eye--the eye in the center of the -forehead, and as big as a fruit. Sort of fruit not mentioned; -their usual slovenliness in statistics. - -Would you believe it? The king and the whole Round Table were -in raptures over this preposterous opportunity for adventure. -Every knight of the Table jumped for the chance, and begged for it; -but to their vexation and chagrin the king conferred it upon me, -who had not asked for it at all. - -By an effort, I contained my joy when Clarence brought me the news. -But he--he could not contain his. His mouth gushed delight and -gratitude in a steady discharge--delight in my good fortune, -gratitude to the king for this splendid mark of his favor for me. -He could keep neither his legs nor his body still, but pirouetted -about the place in an airy ecstasy of happiness. - -On my side, I could have cursed the kindness that conferred upon -me this benefaction, but I kept my vexation under the surface -for policy's sake, and did what I could to let on to be glad. -Indeed, I _said_ I was glad. And in a way it was true; I was as -glad as a person is when he is scalped. - -Well, one must make the best of things, and not waste time with -useless fretting, but get down to business and see what can be -done. In all lies there is wheat among the chaff; I must get at -the wheat in this case: so I sent for the girl and she came. She -was a comely enough creature, and soft and modest, but, if signs -went for anything, she didn't know as much as a lady's watch. I said: - -"My dear, have you been questioned as to particulars?" - -She said she hadn't. - -"Well, I didn't expect you had, but I thought I would ask, to make -sure; it's the way I've been raised. Now you mustn't take it -unkindly if I remind you that as we don't know you, we must go -a little slow. You may be all right, of course, and we'll hope -that you are; but to take it for granted isn't business. _You_ -understand that. I'm obliged to ask you a few questions; just -answer up fair and square, and don't be afraid. Where do you -live, when you are at home?" - -"In the land of Moder, fair sir." - -"Land of Moder. I don't remember hearing of it before. -Parents living?" - -"As to that, I know not if they be yet on live, sith it is many -years that I have lain shut up in the castle." - -"Your name, please?" - -"I hight the Demoiselle Alisande la Carteloise, an it please you." - -"Do you know anybody here who can identify you?" - -"That were not likely, fair lord, I being come hither now for -the first time." - -"Have you brought any letters--any documents--any proofs that -you are trustworthy and truthful?" - -"Of a surety, no; and wherefore should I? Have I not a tongue, -and cannot I say all that myself?" - -"But _your_ saying it, you know, and somebody else's saying it, -is different." - -"Different? How might that be? I fear me I do not understand." - -"Don't _understand_? Land of--why, you see--you see--why, great Scott, -can't you understand a little thing like that? Can't you understand -the difference between your--_why_ do you look so innocent and idiotic!" - -"I? In truth I know not, but an it were the will of God." - -"Yes, yes, I reckon that's about the size of it. Don't mind my -seeming excited; I'm not. Let us change the subject. Now as -to this castle, with forty-five princesses in it, and three ogres -at the head of it, tell me--where is this harem?" - -"Harem?" - -"The _castle_, you understand; where is the castle?" - -"Oh, as to that, it is great, and strong, and well beseen, and -lieth in a far country. Yes, it is many leagues." - -"_How_ many?" - -"Ah, fair sir, it were woundily hard to tell, they are so many, -and do so lap the one upon the other, and being made all in the -same image and tincted with the same color, one may not know -the one league from its fellow, nor how to count them except -they be taken apart, and ye wit well it were God's work to do -that, being not within man's capacity; for ye will note--" - -"Hold on, hold on, never mind about the distance; _whereabouts_ -does the castle lie? What's the direction from here?" - -"Ah, please you sir, it hath no direction from here; by reason -that the road lieth not straight, but turneth evermore; wherefore -the direction of its place abideth not, but is some time under -the one sky and anon under another, whereso if ye be minded that -it is in the east, and wend thitherward, ye shall observe that -the way of the road doth yet again turn upon itself by the space -of half a circle, and this marvel happing again and yet again and -still again, it will grieve you that you had thought by vanities -of the mind to thwart and bring to naught the will of Him that -giveth not a castle a direction from a place except it pleaseth -Him, and if it please Him not, will the rather that even all castles -and all directions thereunto vanish out of the earth, leaving the -places wherein they tarried desolate and vacant, so warning His -creatures that where He will He will, and where He will not He--" - -"Oh, that's all right, that's all right, give us a rest; never mind -about the direction, _hang_ the direction--I beg pardon, I beg -a thousand pardons, I am not well to-day; pay no attention when -I soliloquize, it is an old habit, an old, bad habit, and hard -to get rid of when one's digestion is all disordered with eating -food that was raised forever and ever before he was born; good -land! a man can't keep his functions regular on spring chickens -thirteen hundred years old. But come--never mind about that; -let's--have you got such a thing as a map of that region about -you? Now a good map--" - -"Is it peradventure that manner of thing which of late the unbelievers -have brought from over the great seas, which, being boiled in oil, -and an onion and salt added thereto, doth--" - -"What, a map? What are you talking about? Don't you know what -a map is? There, there, never mind, don't explain, I hate -explanations; they fog a thing up so that you can't tell anything -about it. Run along, dear; good-day; show her the way, Clarence." - -Oh, well, it was reasonably plain, now, why these donkeys didn't -prospect these liars for details. It may be that this girl had -a fact in her somewhere, but I don't believe you could have sluiced -it out with a hydraulic; nor got it with the earlier forms of -blasting, even; it was a case for dynamite. Why, she was a perfect -ass; and yet the king and his knights had listened to her as if -she had been a leaf out of the gospel. It kind of sizes up the -whole party. And think of the simple ways of this court: this -wandering wench hadn't any more trouble to get access to the king -in his palace than she would have had to get into the poorhouse -in my day and country. In fact, he was glad to see her, glad -to hear her tale; with that adventure of hers to offer, she was -as welcome as a corpse is to a coroner. - -Just as I was ending-up these reflections, Clarence came back. -I remarked upon the barren result of my efforts with the girl; -hadn't got hold of a single point that could help me to find -the castle. The youth looked a little surprised, or puzzled, -or something, and intimated that he had been wondering to himself -what I had wanted to ask the girl all those questions for. - -"Why, great guns," I said, "don't I want to find the castle? And -how else would I go about it?" - -"La, sweet your worship, one may lightly answer that, I ween. -She will go with thee. They always do. She will ride with thee." - -"Ride with me? Nonsense!" - -"But of a truth she will. She will ride with thee. Thou shalt see." - -"What? She browse around the hills and scour the woods with me ---alone--and I as good as engaged to be married? Why, it's scandalous. -Think how it would look." - -My, the dear face that rose before me! The boy was eager to know -all about this tender matter. I swore him to secrecy and then -whispered her name--"Puss Flanagan." He looked disappointed, -and said he didn't remember the countess. How natural it was for -the little courtier to give her a rank. He asked me where she lived. - -"In East Har--" I came to myself and stopped, a little confused; -then I said, "Never mind, now; I'll tell you some time." - -And might he see her? Would I let him see her some day? - -It was but a little thing to promise--thirteen hundred years -or so--and he so eager; so I said Yes. But I sighed; I couldn't -help it. And yet there was no sense in sighing, for she wasn't -born yet. But that is the way we are made: we don't reason, -where we feel; we just feel. - -My expedition was all the talk that day and that night, and the -boys were very good to me, and made much of me, and seemed to have -forgotten their vexation and disappointment, and come to be as -anxious for me to hive those ogres and set those ripe old virgins -loose as if it were themselves that had the contract. Well, they -_were_ good children--but just children, that is all. And they -gave me no end of points about how to scout for giants, and how -to scoop them in; and they told me all sorts of charms against -enchantments, and gave me salves and other rubbish to put on my -wounds. But it never occurred to one of them to reflect that if -I was such a wonderful necromancer as I was pretending to be, -I ought not to need salves or instructions, or charms against -enchantments, and, least of all, arms and armor, on a foray of any -kind--even against fire-spouting dragons, and devils hot from -perdition, let alone such poor adversaries as these I was after, -these commonplace ogres of the back settlements. - -I was to have an early breakfast, and start at dawn, for that was -the usual way; but I had the demon's own time with my armor, -and this delayed me a little. It is troublesome to get into, and -there is so much detail. First you wrap a layer or two of blanket -around your body, for a sort of cushion and to keep off the cold -iron; then you put on your sleeves and shirt of chain mail--these -are made of small steel links woven together, and they form a fabric -so flexible that if you toss your shirt onto the floor, it slumps -into a pile like a peck of wet fish-net; it is very heavy and -is nearly the uncomfortablest material in the world for a night -shirt, yet plenty used it for that--tax collectors, and reformers, -and one-horse kings with a defective title, and those sorts of -people; then you put on your shoes--flat-boats roofed over with -interleaving bands of steel--and screw your clumsy spurs into -the heels. Next you buckle your greaves on your legs, and your -cuisses on your thighs; then come your backplate and your breastplate, -and you begin to feel crowded; then you hitch onto the breastplate -the half-petticoat of broad overlapping bands of steel which hangs -down in front but is scolloped out behind so you can sit down, -and isn't any real improvement on an inverted coal scuttle, either -for looks or for wear, or to wipe your hands on; next you belt -on your sword; then you put your stove-pipe joints onto your arms, -your iron gauntlets onto your hands, your iron rat-trap onto your -head, with a rag of steel web hitched onto it to hang over the back -of your neck--and there you are, snug as a candle in a candle-mould. -This is no time to dance. Well, a man that is packed away like -that is a nut that isn't worth the cracking, there is so little of -the meat, when you get down to it, by comparison with the shell. - -The boys helped me, or I never could have got in. Just as we -finished, Sir Bedivere happened in, and I saw that as like as not -I hadn't chosen the most convenient outfit for a long trip. How -stately he looked; and tall and broad and grand. He had on his -head a conical steel casque that only came down to his ears, and -for visor had only a narrow steel bar that extended down to his -upper lip and protected his nose; and all the rest of him, from -neck to heel, was flexible chain mail, trousers and all. But -pretty much all of him was hidden under his outside garment, which -of course was of chain mail, as I said, and hung straight from his -shoulders to his ankles; and from his middle to the bottom, both -before and behind, was divided, so that he could ride and let the -skirts hang down on each side. He was going grailing, and it was -just the outfit for it, too. I would have given a good deal for -that ulster, but it was too late now to be fooling around. The sun -was just up, the king and the court were all on hand to see me off -and wish me luck; so it wouldn't be etiquette for me to tarry. -You don't get on your horse yourself; no, if you tried it you -would get disappointed. They carry you out, just as they carry -a sun-struck man to the drug store, and put you on, and help get -you to rights, and fix your feet in the stirrups; and all the while -you do feel so strange and stuffy and like somebody else--like -somebody that has been married on a sudden, or struck by lightning, -or something like that, and hasn't quite fetched around yet, and -is sort of numb, and can't just get his bearings. Then they -stood up the mast they called a spear, in its socket by my left -foot, and I gripped it with my hand; lastly they hung my shield -around my neck, and I was all complete and ready to up anchor -and get to sea. Everybody was as good to me as they could be, -and a maid of honor gave me the stirrup-cup her own self. There was -nothing more to do now, but for that damsel to get up behind me on -a pillion, which she did, and put an arm or so around me to hold on. - -And so we started, and everybody gave us a goodbye and waved their -handkerchiefs or helmets. And everybody we met, going down the hill -and through the village was respectful to us, except some shabby -little boys on the outskirts. They said: - -"Oh, what a guy!" And hove clods at us. - -In my experience boys are the same in all ages. They don't respect -anything, they don't care for anything or anybody. They say -"Go up, baldhead" to the prophet going his unoffending way in -the gray of antiquity; they sass me in the holy gloom of the -Middle Ages; and I had seen them act the same way in Buchanan's -administration; I remember, because I was there and helped. The -prophet had his bears and settled with his boys; and I wanted -to get down and settle with mine, but it wouldn't answer, because -I couldn't have got up again. I hate a country without a derrick. - - - -CHAPTER XII - -SLOW TORTURE - -Straight off, we were in the country. It was most lovely and -pleasant in those sylvan solitudes in the early cool morning -in the first freshness of autumn. From hilltops we saw fair -green valleys lying spread out below, with streams winding through -them, and island groves of trees here and there, and huge lonely -oaks scattered about and casting black blots of shade; and beyond -the valleys we saw the ranges of hills, blue with haze, stretching -away in billowy perspective to the horizon, with at wide intervals -a dim fleck of white or gray on a wave-summit, which we knew was -a castle. We crossed broad natural lawns sparkling with dew, -and we moved like spirits, the cushioned turf giving out no sound -of footfall; we dreamed along through glades in a mist of green -light that got its tint from the sun-drenched roof of leaves -overhead, and by our feet the clearest and coldest of runlets -went frisking and gossiping over its reefs and making a sort of -whispering music, comfortable to hear; and at times we left the -world behind and entered into the solemn great deeps and rich -gloom of the forest, where furtive wild things whisked and scurried -by and were gone before you could even get your eye on the place -where the noise was; and where only the earliest birds were turning -out and getting to business with a song here and a quarrel yonder -and a mysterious far-off hammering and drumming for worms on -a tree trunk away somewhere in the impenetrable remotenesses of -the woods. And by and by out we would swing again into the glare. - -About the third or fourth or fifth time that we swung out into -the glare--it was along there somewhere, a couple of hours or so -after sun-up--it wasn't as pleasant as it had been. It was -beginning to get hot. This was quite noticeable. We had a very -long pull, after that, without any shade. Now it is curious how -progressively little frets grow and multiply after they once get -a start. Things which I didn't mind at all, at first, I began -to mind now--and more and more, too, all the time. The first -ten or fifteen times I wanted my handkerchief I didn't seem to care; -I got along, and said never mind, it isn't any matter, and dropped -it out of my mind. But now it was different; I wanted it all -the time; it was nag, nag, nag, right along, and no rest; I couldn't -get it out of my mind; and so at last I lost my temper and said -hang a man that would make a suit of armor without any pockets -in it. You see I had my handkerchief in my helmet; and some other -things; but it was that kind of a helmet that you can't take off -by yourself. That hadn't occurred to me when I put it there; -and in fact I didn't know it. I supposed it would be particularly -convenient there. And so now, the thought of its being there, -so handy and close by, and yet not get-at-able, made it all the -worse and the harder to bear. Yes, the thing that you can't get -is the thing that you want, mainly; every one has noticed that. -Well, it took my mind off from everything else; took it clear off, -and centered it in my helmet; and mile after mile, there it stayed, -imagining the handkerchief, picturing the handkerchief; and it -was bitter and aggravating to have the salt sweat keep trickling -down into my eyes, and I couldn't get at it. It seems like a little -thing, on paper, but it was not a little thing at all; it was -the most real kind of misery. I would not say it if it was not so. -I made up my mind that I would carry along a reticule next time, -let it look how it might, and people say what they would. Of course -these iron dudes of the Round Table would think it was scandalous, -and maybe raise Sheol about it, but as for me, give me comfort -first, and style afterwards. So we jogged along, and now and then -we struck a stretch of dust, and it would tumble up in clouds and -get into my nose and make me sneeze and cry; and of course I said -things I oughtn't to have said, I don't deny that. I am not -better than others. - -We couldn't seem to meet anybody in this lonesome Britain, not -even an ogre; and, in the mood I was in then, it was well for -the ogre; that is, an ogre with a handkerchief. Most knights -would have thought of nothing but getting his armor; but so I got -his bandanna, he could keep his hardware, for all of me. - -Meantime, it was getting hotter and hotter in there. You see, -the sun was beating down and warming up the iron more and more -all the time. Well, when you are hot, that way, every little thing -irritates you. When I trotted, I rattled like a crate of dishes, -and that annoyed me; and moreover I couldn't seem to stand that -shield slatting and banging, now about my breast, now around my -back; and if I dropped into a walk my joints creaked and screeched -in that wearisome way that a wheelbarrow does, and as we didn't -create any breeze at that gait, I was like to get fried in that -stove; and besides, the quieter you went the heavier the iron -settled down on you and the more and more tons you seemed to weigh -every minute. And you had to be always changing hands, and passing -your spear over to the other foot, it got so irksome for one hand -to hold it long at a time. - -Well, you know, when you perspire that way, in rivers, there comes -a time when you--when you--well, when you itch. You are inside, -your hands are outside; so there you are; nothing but iron between. -It is not a light thing, let it sound as it may. First it is one -place; then another; then some more; and it goes on spreading and -spreading, and at last the territory is all occupied, and nobody -can imagine what you feel like, nor how unpleasant it is. And -when it had got to the worst, and it seemed to me that I could -not stand anything more, a fly got in through the bars and settled -on my nose, and the bars were stuck and wouldn't work, and I -couldn't get the visor up; and I could only shake my head, which -was baking hot by this time, and the fly--well, you know how a fly -acts when he has got a certainty--he only minded the shaking enough -to change from nose to lip, and lip to ear, and buzz and buzz -all around in there, and keep on lighting and biting, in a way -that a person, already so distressed as I was, simply could not -stand. So I gave in, and got Alisande to unship the helmet and -relieve me of it. Then she emptied the conveniences out of it -and fetched it full of water, and I drank and then stood up, and -she poured the rest down inside the armor. One cannot think how -refreshing it was. She continued to fetch and pour until I was -well soaked and thoroughly comfortable. - -It was good to have a rest--and peace. But nothing is quite -perfect in this life, at any time. I had made a pipe a while back, -and also some pretty fair tobacco; not the real thing, but what -some of the Indians use: the inside bark of the willow, dried. -These comforts had been in the helmet, and now I had them again, -but no matches. - -Gradually, as the time wore along, one annoying fact was borne in -upon my understanding--that we were weather-bound. An armed novice -cannot mount his horse without help and plenty of it. Sandy was -not enough; not enough for me, anyway. We had to wait until -somebody should come along. Waiting, in silence, would have been -agreeable enough, for I was full of matter for reflection, and -wanted to give it a chance to work. I wanted to try and think out -how it was that rational or even half-rational men could ever -have learned to wear armor, considering its inconveniences; and -how they had managed to keep up such a fashion for generations -when it was plain that what I had suffered to-day they had had -to suffer all the days of their lives. I wanted to think that out; -and moreover I wanted to think out some way to reform this evil -and persuade the people to let the foolish fashion die out; but -thinking was out of the question in the circumstances. You couldn't -think, where Sandy was. - -She was a quite biddable creature and good-hearted, but she had -a flow of talk that was as steady as a mill, and made your head -sore like the drays and wagons in a city. If she had had a cork -she would have been a comfort. But you can't cork that kind; -they would die. Her clack was going all day, and you would think -something would surely happen to her works, by and by; but no, -they never got out of order; and she never had to slack up for -words. She could grind, and pump, and churn, and buzz by the week, -and never stop to oil up or blow out. And yet the result was just -nothing but wind. She never had any ideas, any more than a fog -has. She was a perfect blatherskite; I mean for jaw, jaw, jaw, -talk, talk, talk, jabber, jabber, jabber; but just as good as she -could be. I hadn't minded her mill that morning, on account of -having that hornets' nest of other troubles; but more than once -in the afternoon I had to say: - -"Take a rest, child; the way you are using up all the domestic air, -the kingdom will have to go to importing it by to-morrow, and it's -a low enough treasury without that." - - - -CHAPTER XIII - -FREEMEN - -Yes, it is strange how little a while at a time a person can be -contented. Only a little while back, when I was riding and -suffering, what a heaven this peace, this rest, this sweet serenity -in this secluded shady nook by this purling stream would have -seemed, where I could keep perfectly comfortable all the time -by pouring a dipper of water into my armor now and then; yet -already I was getting dissatisfied; partly because I could not -light my pipe--for, although I had long ago started a match factory, -I had forgotten to bring matches with me--and partly because we -had nothing to eat. Here was another illustration of the childlike -improvidence of this age and people. A man in armor always trusted -to chance for his food on a journey, and would have been scandalized -at the idea of hanging a basket of sandwiches on his spear. There -was probably not a knight of all the Round Table combination who -would not rather have died than been caught carrying such a thing -as that on his flagstaff. And yet there could not be anything more -sensible. It had been my intention to smuggle a couple of sandwiches -into my helmet, but I was interrupted in the act, and had to make -an excuse and lay them aside, and a dog got them. - -Night approached, and with it a storm. The darkness came on fast. -We must camp, of course. I found a good shelter for the demoiselle -under a rock, and went off and found another for myself. But -I was obliged to remain in my armor, because I could not get it off -by myself and yet could not allow Alisande to help, because it -would have seemed so like undressing before folk. It would not -have amounted to that in reality, because I had clothes on -underneath; but the prejudices of one's breeding are not gotten -rid of just at a jump, and I knew that when it came to stripping -off that bob-tailed iron petticoat I should be embarrassed. - -With the storm came a change of weather; and the stronger the wind -blew, and the wilder the rain lashed around, the colder and colder -it got. Pretty soon, various kinds of bugs and ants and worms -and things began to flock in out of the wet and crawl down inside -my armor to get warm; and while some of them behaved well enough, -and snuggled up amongst my clothes and got quiet, the majority -were of a restless, uncomfortable sort, and never stayed still, -but went on prowling and hunting for they did not know what; -especially the ants, which went tickling along in wearisome -procession from one end of me to the other by the hour, and are -a kind of creatures which I never wish to sleep with again. -It would be my advice to persons situated in this way, to not roll -or thrash around, because this excites the interest of all the -different sorts of animals and makes every last one of them want -to turn out and see what is going on, and this makes things worse -than they were before, and of course makes you objurgate harder, -too, if you can. Still, if one did not roll and thrash around -he would die; so perhaps it is as well to do one way as the other; -there is no real choice. Even after I was frozen solid I could -still distinguish that tickling, just as a corpse does when he is -taking electric treatment. I said I would never wear armor -after this trip. - -All those trying hours whilst I was frozen and yet was in a living -fire, as you may say, on account of that swarm of crawlers, that -same unanswerable question kept circling and circling through my -tired head: How do people stand this miserable armor? How have -they managed to stand it all these generations? How can they sleep -at night for dreading the tortures of next day? - -When the morning came at last, I was in a bad enough plight: seedy, -drowsy, fagged, from want of sleep; weary from thrashing around, -famished from long fasting; pining for a bath, and to get rid of -the animals; and crippled with rheumatism. And how had it fared -with the nobly born, the titled aristocrat, the Demoiselle Alisande -la Carteloise? Why, she was as fresh as a squirrel; she had slept -like the dead; and as for a bath, probably neither she nor any -other noble in the land had ever had one, and so she was not -missing it. Measured by modern standards, they were merely modified -savages, those people. This noble lady showed no impatience to get -to breakfast--and that smacks of the savage, too. On their journeys -those Britons were used to long fasts, and knew how to bear them; -and also how to freight up against probable fasts before starting, -after the style of the Indian and the anaconda. As like as not, -Sandy was loaded for a three-day stretch. - -We were off before sunrise, Sandy riding and I limping along -behind. In half an hour we came upon a group of ragged poor -creatures who had assembled to mend the thing which was regarded -as a road. They were as humble as animals to me; and when I -proposed to breakfast with them, they were so flattered, so -overwhelmed by this extraordinary condescension of mine that -at first they were not able to believe that I was in earnest. -My lady put up her scornful lip and withdrew to one side; she said -in their hearing that she would as soon think of eating with the -other cattle--a remark which embarrassed these poor devils merely -because it referred to them, and not because it insulted or offended -them, for it didn't. And yet they were not slaves, not chattels. -By a sarcasm of law and phrase they were freemen. Seven-tenths -of the free population of the country were of just their class and -degree: small "independent" farmers, artisans, etc.; which is -to say, they were the nation, the actual Nation; they were about -all of it that was useful, or worth saving, or really respect-worthy, -and to subtract them would have been to subtract the Nation and -leave behind some dregs, some refuse, in the shape of a king, -nobility and gentry, idle, unproductive, acquainted mainly with -the arts of wasting and destroying, and of no sort of use or value -in any rationally constructed world. And yet, by ingenious -contrivance, this gilded minority, instead of being in the tail -of the procession where it belonged, was marching head up and -banners flying, at the other end of it; had elected itself to be -the Nation, and these innumerable clams had permitted it so long -that they had come at last to accept it as a truth; and not only -that, but to believe it right and as it should be. The priests -had told their fathers and themselves that this ironical state -of things was ordained of God; and so, not reflecting upon how -unlike God it would be to amuse himself with sarcasms, and especially -such poor transparent ones as this, they had dropped the matter -there and become respectfully quiet. - -The talk of these meek people had a strange enough sound in -a formerly American ear. They were freemen, but they could not -leave the estates of their lord or their bishop without his -permission; they could not prepare their own bread, but must have -their corn ground and their bread baked at his mill and his bakery, -and pay roundly for the same; they could not sell a piece of their -own property without paying him a handsome percentage of the -proceeds, nor buy a piece of somebody else's without remembering -him in cash for the privilege; they had to harvest his grain for him -gratis, and be ready to come at a moment's notice, leaving their -own crop to destruction by the threatened storm; they had to let -him plant fruit trees in their fields, and then keep their indignation -to themselves when his heedless fruit-gatherers trampled the grain -around the trees; they had to smother their anger when his hunting -parties galloped through their fields laying waste the result of -their patient toil; they were not allowed to keep doves themselves, -and when the swarms from my lord's dovecote settled on their crops -they must not lose their temper and kill a bird, for awful would -the penalty be; when the harvest was at last gathered, then came -the procession of robbers to levy their blackmail upon it: first -the Church carted off its fat tenth, then the king's commissioner -took his twentieth, then my lord's people made a mighty inroad -upon the remainder; after which, the skinned freeman had liberty -to bestow the remnant in his barn, in case it was worth the trouble; -there were taxes, and taxes, and taxes, and more taxes, and taxes -again, and yet other taxes--upon this free and independent pauper, -but none upon his lord the baron or the bishop, none upon the -wasteful nobility or the all-devouring Church; if the baron would -sleep unvexed, the freeman must sit up all night after his day's -work and whip the ponds to keep the frogs quiet; if the freeman's -daughter--but no, that last infamy of monarchical government is -unprintable; and finally, if the freeman, grown desperate with his -tortures, found his life unendurable under such conditions, and -sacrificed it and fled to death for mercy and refuge, the gentle -Church condemned him to eternal fire, the gentle law buried him -at midnight at the cross-roads with a stake through his back, -and his master the baron or the bishop confiscated all his property -and turned his widow and his orphans out of doors. - -And here were these freemen assembled in the early morning to work -on their lord the bishop's road three days each--gratis; every -head of a family, and every son of a family, three days each, -gratis, and a day or so added for their servants. Why, it was -like reading about France and the French, before the ever memorable -and blessed Revolution, which swept a thousand years of such -villany away in one swift tidal-wave of blood--one: a settlement -of that hoary debt in the proportion of half a drop of blood for -each hogshead of it that had been pressed by slow tortures out of -that people in the weary stretch of ten centuries of wrong and -shame and misery the like of which was not to be mated but in hell. -There were two "Reigns of Terror," if we would but remember it -and consider it; the one wrought murder in hot passion, the other -in heartless cold blood; the one lasted mere months, the other had -lasted a thousand years; the one inflicted death upon ten thousand -persons, the other upon a hundred millions; but our shudders are -all for the "horrors" of the minor Terror, the momentary Terror, -so to speak; whereas, what is the horror of swift death by the axe, -compared with lifelong death from hunger, cold, insult, cruelty, -and heart-break? What is swift death by lightning compared with -death by slow fire at the stake? A city cemetery could contain the -coffins filled by that brief Terror which we have all been so -diligently taught to shiver at and mourn over; but all France could -hardly contain the coffins filled by that older and real Terror ---that unspeakably bitter and awful Terror which none of us has -been taught to see in its vastness or pity as it deserves. - -These poor ostensible freemen who were sharing their breakfast -and their talk with me, were as full of humble reverence for their -king and Church and nobility as their worst enemy could desire. -There was something pitifully ludicrous about it. I asked them -if they supposed a nation of people ever existed, who, with a free -vote in every man's hand, would elect that a single family and its -descendants should reign over it forever, whether gifted or boobies, -to the exclusion of all other families--including the voter's; and -would also elect that a certain hundred families should be raised -to dizzy summits of rank, and clothed on with offensive transmissible -glories and privileges to the exclusion of the rest of the nation's -families--_including his own_. - -They all looked unhit, and said they didn't know; that they had -never thought about it before, and it hadn't ever occurred to them -that a nation could be so situated that every man _could_ have -a say in the government. I said I had seen one--and that it would -last until it had an Established Church. Again they were all -unhit--at first. But presently one man looked up and asked me -to state that proposition again; and state it slowly, so it could -soak into his understanding. I did it; and after a little he had -the idea, and he brought his fist down and said _he_ didn't believe -a nation where every man had a vote would voluntarily get down -in the mud and dirt in any such way; and that to steal from a nation -its will and preference must be a crime and the first of all crimes. -I said to myself: - -"This one's a man. If I were backed by enough of his sort, I would -make a strike for the welfare of this country, and try to prove -myself its loyalest citizen by making a wholesome change in its -system of government." - -You see my kind of loyalty was loyalty to one's country, not to -its institutions or its office-holders. The country is the real -thing, the substantial thing, the eternal thing; it is the thing -to watch over, and care for, and be loyal to; institutions are -extraneous, they are its mere clothing, and clothing can wear out, -become ragged, cease to be comfortable, cease to protect the body -from winter, disease, and death. To be loyal to rags, to shout -for rags, to worship rags, to die for rags--that is a loyalty -of unreason, it is pure animal; it belongs to monarchy, was invented -by monarchy; let monarchy keep it. I was from Connecticut, whose -Constitution declares "that all political power is inherent in -the people, and all free governments are founded on their authority -and instituted for their benefit; and that they have _at all times_ -an undeniable and indefeasible right to _alter their form of -government_ in such a manner as they may think expedient." - -Under that gospel, the citizen who thinks he sees that the -commonwealth's political clothes are worn out, and yet holds his -peace and does not agitate for a new suit, is disloyal; he is -a traitor. That he may be the only one who thinks he sees this -decay, does not excuse him; it is his duty to agitate anyway, and -it is the duty of the others to vote him down if they do not see -the matter as he does. - -And now here I was, in a country where a right to say how the -country should be governed was restricted to six persons in each -thousand of its population. For the nine hundred and ninety-four -to express dissatisfaction with the regnant system and propose -to change it, would have made the whole six shudder as one man, -it would have been so disloyal, so dishonorable, such putrid black -treason. So to speak, I was become a stockholder in a corporation -where nine hundred and ninety-four of the members furnished all -the money and did all the work, and the other six elected themselves -a permanent board of direction and took all the dividends. It seemed -to me that what the nine hundred and ninety-four dupes needed was -a new deal. The thing that would have best suited the circus side -of my nature would have been to resign the Boss-ship and get up -an insurrection and turn it into a revolution; but I knew that the -Jack Cade or the Wat Tyler who tries such a thing without first -educating his materials up to revolution grade is almost absolutely -certain to get left. I had never been accustomed to getting left, -even if I do say it myself. Wherefore, the "deal" which had been -for some time working into shape in my mind was of a quite different -pattern from the Cade-Tyler sort. - -So I did not talk blood and insurrection to that man there who sat -munching black bread with that abused and mistaught herd of human -sheep, but took him aside and talked matter of another sort to him. -After I had finished, I got him to lend me a little ink from his -veins; and with this and a sliver I wrote on a piece of bark-- - - Put him in the Man-factory-- - -and gave it to him, and said: - -"Take it to the palace at Camelot and give it into the hands of -Amyas le Poulet, whom I call Clarence, and he will understand." - -"He is a priest, then," said the man, and some of the enthusiasm -went out of his face. - -"How--a priest? Didn't I tell you that no chattel of the Church, -no bond-slave of pope or bishop can enter my Man-Factory? Didn't -I tell you that _you_ couldn't enter unless your religion, whatever -it might be, was your own free property?" - -"Marry, it is so, and for that I was glad; wherefore it liked me not, -and bred in me a cold doubt, to hear of this priest being there." - -"But he isn't a priest, I tell you." - -The man looked far from satisfied. He said: - -"He is not a priest, and yet can read?" - -"He is not a priest and yet can read--yes, and write, too, for that -matter. I taught him myself." The man's face cleared. "And it is -the first thing that you yourself will be taught in that Factory--" - -"I? I would give blood out of my heart to know that art. Why, -I will be your slave, your--" - -"No you won't, you won't be anybody's slave. Take your family -and go along. Your lord the bishop will confiscate your small -property, but no matter. Clarence will fix you all right." - - - -CHAPTER XIV - -"DEFEND THEE, LORD" - -I paid three pennies for my breakfast, and a most extravagant -price it was, too, seeing that one could have breakfasted a dozen -persons for that money; but I was feeling good by this time, and -I had always been a kind of spendthrift anyway; and then these -people had wanted to give me the food for nothing, scant as -their provision was, and so it was a grateful pleasure to emphasize -my appreciation and sincere thankfulness with a good big financial -lift where the money would do so much more good than it would -in my helmet, where, these pennies being made of iron and not -stinted in weight, my half-dollar's worth was a good deal of a -burden to me. I spent money rather too freely in those days, -it is true; but one reason for it was that I hadn't got the -proportions of things entirely adjusted, even yet, after so long -a sojourn in Britain--hadn't got along to where I was able to -absolutely realize that a penny in Arthur's land and a couple of -dollars in Connecticut were about one and the same thing: just -twins, as you may say, in purchasing power. If my start from -Camelot could have been delayed a very few days I could have paid -these people in beautiful new coins from our own mint, and that -would have pleased me; and them, too, not less. I had adopted -the American values exclusively. In a week or two now, cents, -nickels, dimes, quarters, and half-dollars, and also a trifle of -gold, would be trickling in thin but steady streams all through -the commercial veins of the kingdom, and I looked to see this -new blood freshen up its life. - -The farmers were bound to throw in something, to sort of offset -my liberality, whether I would or no; so I let them give me a flint -and steel; and as soon as they had comfortably bestowed Sandy -and me on our horse, I lit my pipe. When the first blast of smoke -shot out through the bars of my helmet, all those people broke -for the woods, and Sandy went over backwards and struck the ground -with a dull thud. They thought I was one of those fire-belching -dragons they had heard so much about from knights and other -professional liars. I had infinite trouble to persuade those people -to venture back within explaining distance. Then I told them that -this was only a bit of enchantment which would work harm to none -but my enemies. And I promised, with my hand on my heart, that -if all who felt no enmity toward me would come forward and pass -before me they should see that only those who remained behind would -be struck dead. The procession moved with a good deal of promptness. -There were no casualties to report, for nobody had curiosity enough -to remain behind to see what would happen. - -I lost some time, now, for these big children, their fears gone, -became so ravished with wonder over my awe-compelling fireworks -that I had to stay there and smoke a couple of pipes out before -they would let me go. Still the delay was not wholly unproductive, -for it took all that time to get Sandy thoroughly wonted to the new -thing, she being so close to it, you know. It plugged up her -conversation mill, too, for a considerable while, and that was -a gain. But above all other benefits accruing, I had learned -something. I was ready for any giant or any ogre that might come -along, now. - -We tarried with a holy hermit, that night, and my opportunity -came about the middle of the next afternoon. We were crossing -a vast meadow by way of short-cut, and I was musing absently, -hearing nothing, seeing nothing, when Sandy suddenly interrupted -a remark which she had begun that morning, with the cry: - -"Defend thee, lord!--peril of life is toward!" - -And she slipped down from the horse and ran a little way and stood. -I looked up and saw, far off in the shade of a tree, half a dozen -armed knights and their squires; and straightway there was bustle -among them and tightening of saddle-girths for the mount. My pipe -was ready and would have been lit, if I had not been lost in -thinking about how to banish oppression from this land and restore -to all its people their stolen rights and manhood without disobliging -anybody. I lit up at once, and by the time I had got a good head -of reserved steam on, here they came. All together, too; none of -those chivalrous magnanimities which one reads so much about ---one courtly rascal at a time, and the rest standing by to see fair -play. No, they came in a body, they came with a whirr and a rush, -they came like a volley from a battery; came with heads low down, -plumes streaming out behind, lances advanced at a level. It was -a handsome sight, a beautiful sight--for a man up a tree. I laid -my lance in rest and waited, with my heart beating, till the iron -wave was just ready to break over me, then spouted a column of -white smoke through the bars of my helmet. You should have seen -the wave go to pieces and scatter! This was a finer sight than -the other one. - -But these people stopped, two or three hundred yards away, and -this troubled me. My satisfaction collapsed, and fear came; -I judged I was a lost man. But Sandy was radiant; and was going -to be eloquent--but I stopped her, and told her my magic had -miscarried, somehow or other, and she must mount, with all despatch, -and we must ride for life. No, she wouldn't. She said that my -enchantment had disabled those knights; they were not riding on, -because they couldn't; wait, they would drop out of their saddles -presently, and we would get their horses and harness. I could not -deceive such trusting simplicity, so I said it was a mistake; that -when my fireworks killed at all, they killed instantly; no, the men -would not die, there was something wrong about my apparatus, -I couldn't tell what; but we must hurry and get away, for those -people would attack us again, in a minute. Sandy laughed, and said: - -"Lack-a-day, sir, they be not of that breed! Sir Launcelot will -give battle to dragons, and will abide by them, and will assail -them again, and yet again, and still again, until he do conquer -and destroy them; and so likewise will Sir Pellinore and Sir Aglovale -and Sir Carados, and mayhap others, but there be none else that -will venture it, let the idle say what the idle will. And, la, -as to yonder base rufflers, think ye they have not their fill, -but yet desire more?" - -"Well, then, what are they waiting for? Why don't they leave? -Nobody's hindering. Good land, I'm willing to let bygones be -bygones, I'm sure." - -"Leave, is it? Oh, give thyself easement as to that. They dream -not of it, no, not they. They wait to yield them." - -"Come--really, is that 'sooth'--as you people say? If they want to, -why don't they?" - -"It would like them much; but an ye wot how dragons are esteemed, -ye would not hold them blamable. They fear to come." - -"Well, then, suppose I go to them instead, and--" - -"Ah, wit ye well they would not abide your coming. I will go." - -And she did. She was a handy person to have along on a raid. -I would have considered this a doubtful errand, myself. I presently -saw the knights riding away, and Sandy coming back. That was -a relief. I judged she had somehow failed to get the first innings ---I mean in the conversation; otherwise the interview wouldn't have -been so short. But it turned out that she had managed the business -well; in fact, admirably. She said that when she told those people -I was The Boss, it hit them where they lived: "smote them sore -with fear and dread" was her word; and then they were ready to -put up with anything she might require. So she swore them to appear -at Arthur's court within two days and yield them, with horse and -harness, and be my knights henceforth, and subject to my command. -How much better she managed that thing than I should have done -it myself! She was a daisy. - - - -CHAPTER XV - -SANDY'S TALE - -"And so I'm proprietor of some knights," said I, as we rode off. -"Who would ever have supposed that I should live to list up assets -of that sort. I shan't know what to do with them; unless I raffle -them off. How many of them are there, Sandy?" - -"Seven, please you, sir, and their squires." - -"It is a good haul. Who are they? Where do they hang out?" - -"Where do they hang out?" - -"Yes, where do they live?" - -"Ah, I understood thee not. That will I tell eftsoons." Then she -said musingly, and softly, turning the words daintily over her -tongue: "Hang they out--hang they out--where hang--where do they -hang out; eh, right so; where do they hang out. Of a truth the -phrase hath a fair and winsome grace, and is prettily worded -withal. I will repeat it anon and anon in mine idlesse, whereby -I may peradventure learn it. Where do they hang out. Even so! -already it falleth trippingly from my tongue, and forasmuch as--" - -"Don't forget the cowboys, Sandy." - -"Cowboys?" - -"Yes; the knights, you know: You were going to tell me about them. -A while back, you remember. Figuratively speaking, game's called." - -"Game--" - -"Yes, yes, yes! Go to the bat. I mean, get to work on your -statistics, and don't burn so much kindling getting your fire -started. Tell me about the knights." - -"I will well, and lightly will begin. So they two departed and -rode into a great forest. And--" - -"Great Scott!" - -You see, I recognized my mistake at once. I had set her works -a-going; it was my own fault; she would be thirty days getting down -to those facts. And she generally began without a preface and -finished without a result. If you interrupted her she would either -go right along without noticing, or answer with a couple of words, -and go back and say the sentence over again. So, interruptions -only did harm; and yet I had to interrupt, and interrupt pretty -frequently, too, in order to save my life; a person would die if -he let her monotony drip on him right along all day. - -"Great Scott!" I said in my distress. She went right back and -began over again: - -"So they two departed and rode into a great forest. And--" - -"_Which_ two?" - -"Sir Gawaine and Sir Uwaine. And so they came to an abbey of monks, -and there were well lodged. So on the morn they heard their masses -in the abbey, and so they rode forth till they came to a great -forest; then was Sir Gawaine ware in a valley by a turret, of -twelve fair damsels, and two knights armed on great horses, and -the damsels went to and fro by a tree. And then was Sir Gawaine -ware how there hung a white shield on that tree, and ever as the -damsels came by it they spit upon it, and some threw mire upon -the shield--" - -"Now, if I hadn't seen the like myself in this country, Sandy, -I wouldn't believe it. But I've seen it, and I can just see those -creatures now, parading before that shield and acting like that. -The women here do certainly act like all possessed. Yes, and -I mean your best, too, society's very choicest brands. The humblest -hello-girl along ten thousand miles of wire could teach gentleness, -patience, modesty, manners, to the highest duchess in Arthur's land." - -"Hello-girl?" - -"Yes, but don't you ask me to explain; it's a new kind of a girl; -they don't have them here; one often speaks sharply to them when -they are not the least in fault, and he can't get over feeling -sorry for it and ashamed of himself in thirteen hundred years, -it's such shabby mean conduct and so unprovoked; the fact is, -no gentleman ever does it--though I--well, I myself, if I've got -to confess--" - -"Peradventure she--" - -"Never mind her; never mind her; I tell you I couldn't ever explain -her so you would understand." - -"Even so be it, sith ye are so minded. Then Sir Gawaine and -Sir Uwaine went and saluted them, and asked them why they did that -despite to the shield. Sirs, said the damsels, we shall tell you. -There is a knight in this country that owneth this white shield, -and he is a passing good man of his hands, but he hateth all -ladies and gentlewomen, and therefore we do all this despite to -the shield. I will say you, said Sir Gawaine, it beseemeth evil -a good knight to despise all ladies and gentlewomen, and peradventure -though he hate you he hath some cause, and peradventure he loveth -in some other places ladies and gentlewomen, and to be loved again, -and he such a man of prowess as ye speak of--" - -"Man of prowess--yes, that is the man to please them, Sandy. -Man of brains--that is a thing they never think of. Tom Sayers ---John Heenan--John L. Sullivan--pity but you could be here. You -would have your legs under the Round Table and a 'Sir' in front -of your names within the twenty-four hours; and you could bring -about a new distribution of the married princesses and duchesses -of the Court in another twenty-four. The fact is, it is just -a sort of polished-up court of Comanches, and there isn't a squaw -in it who doesn't stand ready at the dropping of a hat to desert -to the buck with the biggest string of scalps at his belt." - -"--and he be such a man of prowess as ye speak of, said Sir Gawaine. -Now, what is his name? Sir, said they, his name is Marhaus the -king's son of Ireland." - -"Son of the king of Ireland, you mean; the other form doesn't mean -anything. And look out and hold on tight, now, we must jump -this gully.... There, we are all right now. This horse belongs in -the circus; he is born before his time." - -"I know him well, said Sir Uwaine, he is a passing good knight as -any is on live." - -"_On live_. If you've got a fault in the world, Sandy, it is that -you are a shade too archaic. But it isn't any matter." - -"--for I saw him once proved at a justs where many knights were -gathered, and that time there might no man withstand him. Ah, said -Sir Gawaine, damsels, methinketh ye are to blame, for it is to -suppose he that hung that shield there will not be long therefrom, -and then may those knights match him on horseback, and that is -more your worship than thus; for I will abide no longer to see -a knight's shield dishonored. And therewith Sir Uwaine and -Sir Gawaine departed a little from them, and then were they ware -where Sir Marhaus came riding on a great horse straight toward -them. And when the twelve damsels saw Sir Marhaus they fled into -the turret as they were wild, so that some of them fell by the way. -Then the one of the knights of the tower dressed his shield, and -said on high, Sir Marhaus defend thee. And so they ran together -that the knight brake his spear on Marhaus, and Sir Marhaus smote -him so hard that he brake his neck and the horse's back--" - -"Well, that is just the trouble about this state of things, -it ruins so many horses." - -"That saw the other knight of the turret, and dressed him toward -Marhaus, and they went so eagerly together, that the knight of -the turret was soon smitten down, horse and man, stark dead--" - -"_Another_ horse gone; I tell you it is a custom that ought to be -broken up. I don't see how people with any feeling can applaud -and support it." - - . . . . - -"So these two knights came together with great random--" - -I saw that I had been asleep and missed a chapter, but I didn't -say anything. I judged that the Irish knight was in trouble with -the visitors by this time, and this turned out to be the case. - -"--that Sir Uwaine smote Sir Marhaus that his spear brast in pieces -on the shield, and Sir Marhaus smote him so sore that horse and -man he bare to the earth, and hurt Sir Uwaine on the left side--" - -"The truth is, Alisande, these archaics are a little _too_ simple; -the vocabulary is too limited, and so, by consequence, descriptions -suffer in the matter of variety; they run too much to level Saharas -of fact, and not enough to picturesque detail; this throws about -them a certain air of the monotonous; in fact the fights are all -alike: a couple of people come together with great random ---random is a good word, and so is exegesis, for that matter, and -so is holocaust, and defalcation, and usufruct and a hundred others, -but land! a body ought to discriminate--they come together with -great random, and a spear is brast, and one party brake his shield -and the other one goes down, horse and man, over his horse-tail -and brake his neck, and then the next candidate comes randoming in, -and brast _his_ spear, and the other man brast his shield, and down -_he_ goes, horse and man, over his horse-tail, and brake _his_ neck, -and then there's another elected, and another and another and still -another, till the material is all used up; and when you come to -figure up results, you can't tell one fight from another, nor who -whipped; and as a _picture_, of living, raging, roaring battle, -sho! why, it's pale and noiseless--just ghosts scuffling in a fog. -Dear me, what would this barren vocabulary get out of the mightiest -spectacle?--the burning of Rome in Nero's time, for instance? -Why, it would merely say, 'Town burned down; no insurance; boy -brast a window, fireman brake his neck!' Why, _that_ ain't a picture!" - -It was a good deal of a lecture, I thought, but it didn't disturb -Sandy, didn't turn a feather; her steam soared steadily up again, -the minute I took off the lid: - -"Then Sir Marhaus turned his horse and rode toward Gawaine with -his spear. And when Sir Gawaine saw that, he dressed his shield, -and they aventred their spears, and they came together with all -the might of their horses, that either knight smote other so hard -in the midst of their shields, but Sir Gawaine's spear brake--" - -"I knew it would." - ---"but Sir Marhaus's spear held; and therewith Sir Gawaine and -his horse rushed down to the earth--" - -"Just so--and brake his back." - ---"and lightly Sir Gawaine rose upon his feet and pulled out -his sword, and dressed him toward Sir Marhaus on foot, and therewith -either came unto other eagerly, and smote together with their -swords, that their shields flew in cantels, and they bruised their -helms and their hauberks, and wounded either other. But Sir Gawaine, -fro it passed nine of the clock, waxed by the space of three hours -ever stronger and stronger and thrice his might was increased. -All this espied Sir Marhaus, and had great wonder how his might -increased, and so they wounded other passing sore; and then when -it was come noon--" - -The pelting sing-song of it carried me forward to scenes and -sounds of my boyhood days: - -"N-e-e-ew Haven! ten minutes for refreshments--knductr'll strike -the gong-bell two minutes before train leaves--passengers for -the Shore line please take seats in the rear k'yar, this k'yar -don't go no furder--_ahh_-pls, _aw_-rnjz, b'_nan_ners, -_s-a-n-d_'ches, p--_op_-corn!" - ---"and waxed past noon and drew toward evensong. Sir Gawaine's -strength feebled and waxed passing faint, that unnethes he might -dure any longer, and Sir Marhaus was then bigger and bigger--" - -"Which strained his armor, of course; and yet little would one -of these people mind a small thing like that." - ---"and so, Sir Knight, said Sir Marhaus, I have well felt that -ye are a passing good knight, and a marvelous man of might as ever -I felt any, while it lasteth, and our quarrels are not great, and -therefore it were a pity to do you hurt, for I feel you are passing -feeble. Ah, said Sir Gawaine, gentle knight, ye say the word -that I should say. And therewith they took off their helms and -either kissed other, and there they swore together either to love -other as brethren--" - -But I lost the thread there, and dozed off to slumber, thinking -about what a pity it was that men with such superb strength ---strength enabling them to stand up cased in cruelly burdensome -iron and drenched with perspiration, and hack and batter and bang -each other for six hours on a stretch--should not have been born -at a time when they could put it to some useful purpose. Take -a jackass, for instance: a jackass has that kind of strength, and -puts it to a useful purpose, and is valuable to this world because -he is a jackass; but a nobleman is not valuable because he is -a jackass. It is a mixture that is always ineffectual, and should -never have been attempted in the first place. And yet, once you -start a mistake, the trouble is done and you never know what is -going to come of it. - -When I came to myself again and began to listen, I perceived that -I had lost another chapter, and that Alisande had wandered a long -way off with her people. - -"And so they rode and came into a deep valley full of stones, -and thereby they saw a fair stream of water; above thereby was -the head of the stream, a fair fountain, and three damsels sitting -thereby. In this country, said Sir Marhaus, came never knight -since it was christened, but he found strange adventures--" - -"This is not good form, Alisande. Sir Marhaus the king's son of -Ireland talks like all the rest; you ought to give him a brogue, -or at least a characteristic expletive; by this means one would -recognize him as soon as he spoke, without his ever being named. -It is a common literary device with the great authors. You should -make him say, 'In this country, be jabers, came never knight since -it was christened, but he found strange adventures, be jabers.' -You see how much better that sounds." - ---"came never knight but he found strange adventures, be jabers. -Of a truth it doth indeed, fair lord, albeit 'tis passing hard -to say, though peradventure that will not tarry but better speed -with usage. And then they rode to the damsels, and either saluted -other, and the eldest had a garland of gold about her head, and -she was threescore winter of age or more--" - -"The _damsel_ was?" - -"Even so, dear lord--and her hair was white under the garland--" - -"Celluloid teeth, nine dollars a set, as like as not--the loose-fit -kind, that go up and down like a portcullis when you eat, and -fall out when you laugh." - -"The second damsel was of thirty winter of age, with a circlet of -gold about her head. The third damsel was but fifteen year of age--" - -Billows of thought came rolling over my soul, and the voice faded -out of my hearing! - -Fifteen! Break--my heart! oh, my lost darling! Just her age -who was so gentle, and lovely, and all the world to me, and whom -I shall never see again! How the thought of her carries me back -over wide seas of memory to a vague dim time, a happy time, so many, -many centuries hence, when I used to wake in the soft summer -mornings, out of sweet dreams of her, and say "Hello, Central!" -just to hear her dear voice come melting back to me with a -"Hello, Hank!" that was music of the spheres to my enchanted ear. -She got three dollars a week, but she was worth it. - -I could not follow Alisande's further explanation of who our -captured knights were, now--I mean in case she should ever get -to explaining who they were. My interest was gone, my thoughts -were far away, and sad. By fitful glimpses of the drifting tale, -caught here and there and now and then, I merely noted in a vague -way that each of these three knights took one of these three damsels -up behind him on his horse, and one rode north, another east, -the other south, to seek adventures, and meet again and lie, after -year and day. Year and day--and without baggage. It was of -a piece with the general simplicity of the country. - -The sun was now setting. It was about three in the afternoon when -Alisande had begun to tell me who the cowboys were; so she had made -pretty good progress with it--for her. She would arrive some time -or other, no doubt, but she was not a person who could be hurried. - -We were approaching a castle which stood on high ground; a huge, -strong, venerable structure, whose gray towers and battlements were -charmingly draped with ivy, and whose whole majestic mass was -drenched with splendors flung from the sinking sun. It was the -largest castle we had seen, and so I thought it might be the one -we were after, but Sandy said no. She did not know who owned it; -she said she had passed it without calling, when she went down -to Camelot. - - - -CHAPTER XVI - -MORGAN LE FAY - -If knights errant were to be believed, not all castles were desirable -places to seek hospitality in. As a matter of fact, knights errant -were _not_ persons to be believed--that is, measured by modern -standards of veracity; yet, measured by the standards of their own -time, and scaled accordingly, you got the truth. It was very -simple: you discounted a statement ninety-seven per cent; the rest -was fact. Now after making this allowance, the truth remained -that if I could find out something about a castle before ringing -the door-bell--I mean hailing the warders--it was the sensible -thing to do. So I was pleased when I saw in the distance a horseman -making the bottom turn of the road that wound down from this castle. - -As we approached each other, I saw that he wore a plumed helmet, -and seemed to be otherwise clothed in steel, but bore a curious -addition also--a stiff square garment like a herald's tabard. -However, I had to smile at my own forgetfulness when I got nearer -and read this sign on his tabard: - - "Persimmon's Soap -- All the Prime-Donna Use It." - -That was a little idea of my own, and had several wholesome purposes -in view toward the civilizing and uplifting of this nation. In the -first place, it was a furtive, underhand blow at this nonsense -of knight errantry, though nobody suspected that but me. I had -started a number of these people out--the bravest knights I could -get--each sandwiched between bulletin-boards bearing one device -or another, and I judged that by and by when they got to be numerous -enough they would begin to look ridiculous; and then, even the -steel-clad ass that _hadn't_ any board would himself begin to look -ridiculous because he was out of the fashion. - -Secondly, these missionaries would gradually, and without creating -suspicion or exciting alarm, introduce a rudimentary cleanliness -among the nobility, and from them it would work down to the people, -if the priests could be kept quiet. This would undermine the Church. -I mean would be a step toward that. Next, education--next, freedom ---and then she would begin to crumble. It being my conviction that -any Established Church is an established crime, an established -slave-pen, I had no scruples, but was willing to assail it in -any way or with any weapon that promised to hurt it. Why, in my -own former day--in remote centuries not yet stirring in the womb -of time--there were old Englishmen who imagined that they had been -born in a free country: a "free" country with the Corporation Act -and the Test still in force in it--timbers propped against men's -liberties and dishonored consciences to shore up an Established -Anachronism with. - -My missionaries were taught to spell out the gilt signs on their -tabards--the showy gilding was a neat idea, I could have got the -king to wear a bulletin-board for the sake of that barbaric -splendor--they were to spell out these signs and then explain to -the lords and ladies what soap was; and if the lords and ladies -were afraid of it, get them to try it on a dog. The missionary's -next move was to get the family together and try it on himself; -he was to stop at no experiment, however desperate, that could -convince the nobility that soap was harmless; if any final doubt -remained, he must catch a hermit--the woods were full of them; -saints they called themselves, and saints they were believed to be. -They were unspeakably holy, and worked miracles, and everybody -stood in awe of them. If a hermit could survive a wash, and that -failed to convince a duke, give him up, let him alone. - -Whenever my missionaries overcame a knight errant on the road -they washed him, and when he got well they swore him to go and -get a bulletin-board and disseminate soap and civilization the rest -of his days. As a consequence the workers in the field were -increasing by degrees, and the reform was steadily spreading. -My soap factory felt the strain early. At first I had only two -hands; but before I had left home I was already employing fifteen, -and running night and day; and the atmospheric result was getting -so pronounced that the king went sort of fainting and gasping -around and said he did not believe he could stand it much longer, -and Sir Launcelot got so that he did hardly anything but walk up -and down the roof and swear, although I told him it was worse up -there than anywhere else, but he said he wanted plenty of air; and -he was always complaining that a palace was no place for a soap -factory anyway, and said if a man was to start one in his house -he would be damned if he wouldn't strangle him. There were ladies -present, too, but much these people ever cared for that; they would -swear before children, if the wind was their way when the factory -was going. - -This missionary knight's name was La Cote Male Taile, and he said -that this castle was the abode of Morgan le Fay, sister of -King Arthur, and wife of King Uriens, monarch of a realm about -as big as the District of Columbia--you could stand in the middle -of it and throw bricks into the next kingdom. "Kings" and "Kingdoms" -were as thick in Britain as they had been in little Palestine in -Joshua's time, when people had to sleep with their knees pulled up -because they couldn't stretch out without a passport. - -La Cote was much depressed, for he had scored here the worst -failure of his campaign. He had not worked off a cake; yet he had -tried all the tricks of the trade, even to the washing of a hermit; -but the hermit died. This was, indeed, a bad failure, for this -animal would now be dubbed a martyr, and would take his place -among the saints of the Roman calendar. Thus made he his moan, -this poor Sir La Cote Male Taile, and sorrowed passing sore. And -so my heart bled for him, and I was moved to comfort and stay him. -Wherefore I said: - -"Forbear to grieve, fair knight, for this is not a defeat. We have -brains, you and I; and for such as have brains there are no defeats, -but only victories. Observe how we will turn this seeming disaster -into an advertisement; an advertisement for our soap; and the -biggest one, to draw, that was ever thought of; an advertisement -that will transform that Mount Washington defeat into a Matterhorn -victory. We will put on your bulletin-board, '_Patronized by the -elect_.' How does that strike you?" - -"Verily, it is wonderly bethought!" - -"Well, a body is bound to admit that for just a modest little -one-line ad, it's a corker." - -So the poor colporteur's griefs vanished away. He was a brave -fellow, and had done mighty feats of arms in his time. His chief -celebrity rested upon the events of an excursion like this one -of mine, which he had once made with a damsel named Maledisant, -who was as handy with her tongue as was Sandy, though in a different -way, for her tongue churned forth only railings and insult, whereas -Sandy's music was of a kindlier sort. I knew his story well, and so -I knew how to interpret the compassion that was in his face when he -bade me farewell. He supposed I was having a bitter hard time of it. - -Sandy and I discussed his story, as we rode along, and she said -that La Cote's bad luck had begun with the very beginning of that -trip; for the king's fool had overthrown him on the first day, -and in such cases it was customary for the girl to desert to the -conqueror, but Maledisant didn't do it; and also persisted afterward -in sticking to him, after all his defeats. But, said I, suppose -the victor should decline to accept his spoil? She said that that -wouldn't answer--he must. He couldn't decline; it wouldn't be -regular. I made a note of that. If Sandy's music got to be too -burdensome, some time, I would let a knight defeat me, on the chance -that she would desert to him. - -In due time we were challenged by the warders, from the castle -walls, and after a parley admitted. I have nothing pleasant to -tell about that visit. But it was not a disappointment, for I knew -Mrs. le Fay by reputation, and was not expecting anything pleasant. -She was held in awe by the whole realm, for she had made everybody -believe she was a great sorceress. All her ways were wicked, all -her instincts devilish. She was loaded to the eyelids with cold -malice. All her history was black with crime; and among her crimes -murder was common. I was most curious to see her; as curious as -I could have been to see Satan. To my surprise she was beautiful; -black thoughts had failed to make her expression repulsive, age -had failed to wrinkle her satin skin or mar its bloomy freshness. -She could have passed for old Uriens' granddaughter, she could -have been mistaken for sister to her own son. - -As soon as we were fairly within the castle gates we were ordered -into her presence. King Uriens was there, a kind-faced old man -with a subdued look; and also the son, Sir Uwaine le Blanchemains, -in whom I was, of course, interested on account of the tradition -that he had once done battle with thirty knights, and also on -account of his trip with Sir Gawaine and Sir Marhaus, which Sandy -had been aging me with. But Morgan was the main attraction, the -conspicuous personality here; she was head chief of this household, -that was plain. She caused us to be seated, and then she began, -with all manner of pretty graces and graciousnesses, to ask me -questions. Dear me, it was like a bird or a flute, or something, -talking. I felt persuaded that this woman must have been -misrepresented, lied about. She trilled along, and trilled along, -and presently a handsome young page, clothed like the rainbow, and -as easy and undulatory of movement as a wave, came with something -on a golden salver, and, kneeling to present it to her, overdid -his graces and lost his balance, and so fell lightly against her -knee. She slipped a dirk into him in as matter-of-course a way as -another person would have harpooned a rat! - -Poor child! he slumped to the floor, twisted his silken limbs in -one great straining contortion of pain, and was dead. Out of the -old king was wrung an involuntary "O-h!" of compassion. The look -he got, made him cut it suddenly short and not put any more hyphens -in it. Sir Uwaine, at a sign from his mother, went to the anteroom -and called some servants, and meanwhile madame went rippling sweetly -along with her talk. - -I saw that she was a good housekeeper, for while she talked she -kept a corner of her eye on the servants to see that they made -no balks in handling the body and getting it out; when they came -with fresh clean towels, she sent back for the other kind; and -when they had finished wiping the floor and were going, she indicated -a crimson fleck the size of a tear which their duller eyes had -overlooked. It was plain to me that La Cote Male Taile had failed -to see the mistress of the house. Often, how louder and clearer -than any tongue, does dumb circumstantial evidence speak. - -Morgan le Fay rippled along as musically as ever. Marvelous woman. -And what a glance she had: when it fell in reproof upon those -servants, they shrunk and quailed as timid people do when the -lightning flashes out of a cloud. I could have got the habit -myself. It was the same with that poor old Brer Uriens; he was -always on the ragged edge of apprehension; she could not even turn -toward him but he winced. - -In the midst of the talk I let drop a complimentary word about -King Arthur, forgetting for the moment how this woman hated her -brother. That one little compliment was enough. She clouded up -like storm; she called for her guards, and said: - -"Hale me these varlets to the dungeons." - -That struck cold on my ears, for her dungeons had a reputation. -Nothing occurred to me to say--or do. But not so with Sandy. -As the guard laid a hand upon me, she piped up with the tranquilest -confidence, and said: - -"God's wounds, dost thou covet destruction, thou maniac? It is -The Boss!" - -Now what a happy idea that was!--and so simple; yet it would never -have occurred to me. I was born modest; not all over, but in spots; -and this was one of the spots. - -The effect upon madame was electrical. It cleared her countenance -and brought back her smiles and all her persuasive graces and -blandishments; but nevertheless she was not able to entirely cover up -with them the fact that she was in a ghastly fright. She said: - -"La, but do list to thine handmaid! as if one gifted with powers -like to mine might say the thing which I have said unto one who -has vanquished Merlin, and not be jesting. By mine enchantments -I foresaw your coming, and by them I knew you when you entered -here. I did but play this little jest with hope to surprise you -into some display of your art, as not doubting you would blast -the guards with occult fires, consuming them to ashes on the spot, -a marvel much beyond mine own ability, yet one which I have long -been childishly curious to see." - -The guards were less curious, and got out as soon as they got permission. - - - -CHAPTER XVII - -A ROYAL BANQUET - -Madame, seeing me pacific and unresentful, no doubt judged that -I was deceived by her excuse; for her fright dissolved away, and -she was soon so importunate to have me give an exhibition and kill -somebody, that the thing grew to be embarrassing. However, to my -relief she was presently interrupted by the call to prayers. I will -say this much for the nobility: that, tyrannical, murderous, -rapacious, and morally rotten as they were, they were deeply and -enthusiastically religious. Nothing could divert them from the -regular and faithful performance of the pieties enjoined by the -Church. More than once I had seen a noble who had gotten his -enemy at a disadvantage, stop to pray before cutting his throat; -more than once I had seen a noble, after ambushing and despatching -his enemy, retire to the nearest wayside shrine and humbly give -thanks, without even waiting to rob the body. There was to be -nothing finer or sweeter in the life of even Benvenuto Cellini, -that rough-hewn saint, ten centuries later. All the nobles of -Britain, with their families, attended divine service morning and -night daily, in their private chapels, and even the worst of them -had family worship five or six times a day besides. The credit -of this belonged entirely to the Church. Although I was no friend -to that Catholic Church, I was obliged to admit this. And often, -in spite of me, I found myself saying, "What would this country -be without the Church?" - -After prayers we had dinner in a great banqueting hall which was -lighted by hundreds of grease-jets, and everything was as fine and -lavish and rudely splendid as might become the royal degree of the -hosts. At the head of the hall, on a dais, was the table of the -king, queen, and their son, Prince Uwaine. Stretching down the hall -from this, was the general table, on the floor. At this, above -the salt, sat the visiting nobles and the grown members of their -families, of both sexes,--the resident Court, in effect--sixty-one -persons; below the salt sat minor officers of the household, with -their principal subordinates: altogether a hundred and eighteen -persons sitting, and about as many liveried servants standing -behind their chairs, or serving in one capacity or another. It was -a very fine show. In a gallery a band with cymbals, horns, harps, -and other horrors, opened the proceedings with what seemed to be -the crude first-draft or original agony of the wail known to later -centuries as "In the Sweet Bye and Bye." It was new, and ought -to have been rehearsed a little more. For some reason or other -the queen had the composer hanged, after dinner. - -After this music, the priest who stood behind the royal table said -a noble long grace in ostensible Latin. Then the battalion of -waiters broke away from their posts, and darted, rushed, flew, -fetched and carried, and the mighty feeding began; no words -anywhere, but absorbing attention to business. The rows of chops -opened and shut in vast unison, and the sound of it was like to -the muffled burr of subterranean machinery. - -The havoc continued an hour and a half, and unimaginable was the -destruction of substantials. Of the chief feature of the feast ---the huge wild boar that lay stretched out so portly and imposing -at the start--nothing was left but the semblance of a hoop-skirt; -and he was but the type and symbol of what had happened to all -the other dishes. - -With the pastries and so on, the heavy drinking began--and the talk. -Gallon after gallon of wine and mead disappeared, and everybody -got comfortable, then happy, then sparklingly joyous--both sexes, ---and by and by pretty noisy. Men told anecdotes that were terrific -to hear, but nobody blushed; and when the nub was sprung, the -assemblage let go with a horse-laugh that shook the fortress. -Ladies answered back with historiettes that would almost have made -Queen Margaret of Navarre or even the great Elizabeth of England -hide behind a handkerchief, but nobody hid here, but only laughed ---howled, you may say. In pretty much all of these dreadful stories, -ecclesiastics were the hardy heroes, but that didn't worry the -chaplain any, he had his laugh with the rest; more than that, upon -invitation he roared out a song which was of as daring a sort as -any that was sung that night. - -By midnight everybody was fagged out, and sore with laughing; and, -as a rule, drunk: some weepingly, some affectionately, some -hilariously, some quarrelsomely, some dead and under the table. -Of the ladies, the worst spectacle was a lovely young duchess, whose -wedding-eve this was; and indeed she was a spectacle, sure enough. -Just as she was she could have sat in advance for the portrait of the -young daughter of the Regent d'Orleans, at the famous dinner whence -she was carried, foul-mouthed, intoxicated, and helpless, to her bed, -in the lost and lamented days of the Ancient Regime. - -Suddenly, even while the priest was lifting his hands, and all -conscious heads were bowed in reverent expectation of the coming -blessing, there appeared under the arch of the far-off door at -the bottom of the hall an old and bent and white-haired lady, -leaning upon a crutch-stick; and she lifted the stick and pointed it -toward the queen and cried out: - -"The wrath and curse of God fall upon you, woman without pity, -who have slain mine innocent grandchild and made desolate this -old heart that had nor chick, nor friend nor stay nor comfort in -all this world but him!" - -Everybody crossed himself in a grisly fright, for a curse was an -awful thing to those people; but the queen rose up majestic, with -the death-light in her eye, and flung back this ruthless command: - -"Lay hands on her! To the stake with her!" - -The guards left their posts to obey. It was a shame; it was a -cruel thing to see. What could be done? Sandy gave me a look; -I knew she had another inspiration. I said: - -"Do what you choose." - -She was up and facing toward the queen in a moment. She indicated -me, and said: - -"Madame, _he_ saith this may not be. Recall the commandment, or he -will dissolve the castle and it shall vanish away like the instable -fabric of a dream!" - -Confound it, what a crazy contract to pledge a person to! What if -the queen-- - -But my consternation subsided there, and my panic passed off; -for the queen, all in a collapse, made no show of resistance but -gave a countermanding sign and sunk into her seat. When she reached -it she was sober. So were many of the others. The assemblage rose, -whiffed ceremony to the winds, and rushed for the door like a mob; -overturning chairs, smashing crockery, tugging, struggling, -shouldering, crowding--anything to get out before I should change -my mind and puff the castle into the measureless dim vacancies of -space. Well, well, well, they _were_ a superstitious lot. It is -all a body can do to conceive of it. - -The poor queen was so scared and humbled that she was even afraid -to hang the composer without first consulting me. I was very sorry -for her--indeed, any one would have been, for she was really -suffering; so I was willing to do anything that was reasonable, and -had no desire to carry things to wanton extremities. I therefore -considered the matter thoughtfully, and ended by having the -musicians ordered into our presence to play that Sweet Bye and -Bye again, which they did. Then I saw that she was right, and -gave her permission to hang the whole band. This little relaxation -of sternness had a good effect upon the queen. A statesman gains -little by the arbitrary exercise of iron-clad authority upon all -occasions that offer, for this wounds the just pride of his -subordinates, and thus tends to undermine his strength. A little -concession, now and then, where it can do no harm, is the wiser policy. - -Now that the queen was at ease in her mind once more, and measurably -happy, her wine naturally began to assert itself again, and it got -a little the start of her. I mean it set her music going--her silver -bell of a tongue. Dear me, she was a master talker. It would not -become me to suggest that it was pretty late and that I was a tired -man and very sleepy. I wished I had gone off to bed when I had -the chance. Now I must stick it out; there was no other way. So -she tinkled along and along, in the otherwise profound and ghostly -hush of the sleeping castle, until by and by there came, as if -from deep down under us, a far-away sound, as of a muffled shriek ---with an expression of agony about it that made my flesh crawl. -The queen stopped, and her eyes lighted with pleasure; she tilted -her graceful head as a bird does when it listens. The sound bored -its way up through the stillness again. - -"What is it?" I said. - -"It is truly a stubborn soul, and endureth long. It is many hours now." - -"Endureth what?" - -"The rack. Come--ye shall see a blithe sight. An he yield not -his secret now, ye shall see him torn asunder." - -What a silky smooth hellion she was; and so composed and serene, -when the cords all down my legs were hurting in sympathy with that -man's pain. Conducted by mailed guards bearing flaring torches, -we tramped along echoing corridors, and down stone stairways dank -and dripping, and smelling of mould and ages of imprisoned night ---a chill, uncanny journey and a long one, and not made the shorter -or the cheerier by the sorceress's talk, which was about this -sufferer and his crime. He had been accused by an anonymous -informer, of having killed a stag in the royal preserves. I said: - -"Anonymous testimony isn't just the right thing, your Highness. -It were fairer to confront the accused with the accuser." - -"I had not thought of that, it being but of small consequence. -But an I would, I could not, for that the accuser came masked by -night, and told the forester, and straightway got him hence again, -and so the forester knoweth him not." - -"Then is this Unknown the only person who saw the stag killed?" - -"Marry, _no_ man _saw_ the killing, but this Unknown saw this hardy -wretch near to the spot where the stag lay, and came with right -loyal zeal and betrayed him to the forester." - -"So the Unknown was near the dead stag, too? Isn't it just possible -that he did the killing himself? His loyal zeal--in a mask--looks -just a shade suspicious. But what is your highness's idea for -racking the prisoner? Where is the profit?" - -"He will not confess, else; and then were his soul lost. For his -crime his life is forfeited by the law--and of a surety will I see -that he payeth it!--but it were peril to my own soul to let him -die unconfessed and unabsolved. Nay, I were a fool to fling me -into hell for _his_ accommodation." - -"But, your Highness, suppose he has nothing to confess?" - -"As to that, we shall see, anon. An I rack him to death and he -confess not, it will peradventure show that he had indeed naught -to confess--ye will grant that that is sooth? Then shall I not be -damned for an unconfessed man that had naught to confess ---wherefore, I shall be safe." - -It was the stubborn unreasoning of the time. It was useless to -argue with her. Arguments have no chance against petrified -training; they wear it as little as the waves wear a cliff. And -her training was everybody's. The brightest intellect in the land -would not have been able to see that her position was defective. - -As we entered the rack-cell I caught a picture that will not go -from me; I wish it would. A native young giant of thirty or -thereabouts lay stretched upon the frame on his back, with his -wrists and ankles tied to ropes which led over windlasses at either -end. There was no color in him; his features were contorted and -set, and sweat-drops stood upon his forehead. A priest bent over -him on each side; the executioner stood by; guards were on duty; -smoking torches stood in sockets along the walls; in a corner -crouched a poor young creature, her face drawn with anguish, -a half-wild and hunted look in her eyes, and in her lap lay a little -child asleep. Just as we stepped across the threshold the -executioner gave his machine a slight turn, which wrung a cry -from both the prisoner and the woman; but I shouted, and the -executioner released the strain without waiting to see who spoke. -I could not let this horror go on; it would have killed me to -see it. I asked the queen to let me clear the place and speak -to the prisoner privately; and when she was going to object I spoke -in a low voice and said I did not want to make a scene before -her servants, but I must have my way; for I was King Arthur's -representative, and was speaking in his name. She saw she had -to yield. I asked her to indorse me to these people, and then -leave me. It was not pleasant for her, but she took the pill; -and even went further than I was meaning to require. I only wanted -the backing of her own authority; but she said: - -"Ye will do in all things as this lord shall command. It is The Boss." - -It was certainly a good word to conjure with: you could see it -by the squirming of these rats. The queen's guards fell into line, -and she and they marched away, with their torch-bearers, and woke -the echoes of the cavernous tunnels with the measured beat of their -retreating footfalls. I had the prisoner taken from the rack and -placed upon his bed, and medicaments applied to his hurts, and -wine given him to drink. The woman crept near and looked on, -eagerly, lovingly, but timorously,--like one who fears a repulse; -indeed, she tried furtively to touch the man's forehead, and jumped -back, the picture of fright, when I turned unconsciously toward -her. It was pitiful to see. - -"Lord," I said, "stroke him, lass, if you want to. Do anything -you're a mind to; don't mind me." - -Why, her eyes were as grateful as an animal's, when you do it -a kindness that it understands. The baby was out of her way and -she had her cheek against the man's in a minute and her hands -fondling his hair, and her happy tears running down. The man -revived and caressed his wife with his eyes, which was all he -could do. I judged I might clear the den, now, and I did; cleared -it of all but the family and myself. Then I said: - -"Now, my friend, tell me your side of this matter; I know -the other side." - -The man moved his head in sign of refusal. But the woman looked -pleased--as it seemed to me--pleased with my suggestion. I went on-- - -"You know of me?" - -"Yes. All do, in Arthur's realms." - -"If my reputation has come to you right and straight, you should -not be afraid to speak." - -The woman broke in, eagerly: - -"Ah, fair my lord, do thou persuade him! Thou canst an thou wilt. -Ah, he suffereth so; and it is for me--for _me_! And how can I bear it? -I would I might see him die--a sweet, swift death; oh, my Hugo, -I cannot bear this one!" - -And she fell to sobbing and grovelling about my feet, and still -imploring. Imploring what? The man's death? I could not quite -get the bearings of the thing. But Hugo interrupted her and said: - -"Peace! Ye wit not what ye ask. Shall I starve whom I love, -to win a gentle death? I wend thou knewest me better." - -"Well," I said, "I can't quite make this out. It is a puzzle. Now--" - -"Ah, dear my lord, an ye will but persuade him! Consider how -these his tortures wound me! Oh, and he will not speak!--whereas, -the healing, the solace that lie in a blessed swift death--" - -"What _are_ you maundering about? He's going out from here a free -man and whole--he's not going to die." - -The man's white face lit up, and the woman flung herself at me -in a most surprising explosion of joy, and cried out: - -"He is saved!--for it is the king's word by the mouth of the king's -servant--Arthur, the king whose word is gold!" - -"Well, then you do believe I can be trusted, after all. Why -didn't you before?" - -"Who doubted? Not I, indeed; and not she." - -"Well, why wouldn't you tell me your story, then?" - -"Ye had made no promise; else had it been otherwise." - -"I see, I see.... And yet I believe I don't quite see, after all. -You stood the torture and refused to confess; which shows plain -enough to even the dullest understanding that you had nothing -to confess--" - -"I, my lord? How so? It was I that killed the deer!" - -"You _did_? Oh, dear, this is the most mixed-up business that ever--" - -"Dear lord, I begged him on my knees to confess, but--" - -"You _did_! It gets thicker and thicker. What did you want him -to do that for?" - -"Sith it would bring him a quick death and save him all this -cruel pain." - -"Well--yes, there is reason in that. But _he_ didn't want the -quick death." - -"He? Why, of a surety he _did_." - -"Well, then, why in the world _didn't_ he confess?" - -"Ah, sweet sir, and leave my wife and chick without bread and shelter?" - -"Oh, heart of gold, now I see it! The bitter law takes the convicted -man's estate and beggars his widow and his orphans. They could -torture you to death, but without conviction or confession they -could not rob your wife and baby. You stood by them like a man; -and _you_--true wife and the woman that you are--you would have -bought him release from torture at cost to yourself of slow -starvation and death--well, it humbles a body to think what your -sex can do when it comes to self-sacrifice. I'll book you both -for my colony; you'll like it there; it's a Factory where I'm going -to turn groping and grubbing automata into _men_." - - - -CHAPTER XVIII - -IN THE QUEEN'S DUNGEONS - -Well, I arranged all that; and I had the man sent to his home. -I had a great desire to rack the executioner; not because he was -a good, painstaking and paingiving official,--for surely it was -not to his discredit that he performed his functions well--but to -pay him back for wantonly cuffing and otherwise distressing that -young woman. The priests told me about this, and were generously -hot to have him punished. Something of this disagreeable sort -was turning up every now and then. I mean, episodes that showed -that not all priests were frauds and self-seekers, but that many, -even the great majority, of these that were down on the ground -among the common people, were sincere and right-hearted, and -devoted to the alleviation of human troubles and sufferings. -Well, it was a thing which could not be helped, so I seldom fretted -about it, and never many minutes at a time; it has never been my -way to bother much about things which you can't cure. But I did -not like it, for it was just the sort of thing to keep people -reconciled to an Established Church. We _must_ have a religion ---it goes without saying--but my idea is, to have it cut up into -forty free sects, so that they will police each other, as had been -the case in the United States in my time. Concentration of power -in a political machine is bad; and an Established Church is -only a political machine; it was invented for that; it is nursed, -cradled, preserved for that; it is an enemy to human liberty, and -does no good which it could not better do in a split-up and scattered -condition. That wasn't law; it wasn't gospel: it was only -an opinion--my opinion, and I was only a man, one man: so it wasn't -worth any more than the pope's--or any less, for that matter. - -Well, I couldn't rack the executioner, neither would I overlook -the just complaint of the priests. The man must be punished -somehow or other, so I degraded him from his office and made him -leader of the band--the new one that was to be started. He begged -hard, and said he couldn't play--a plausible excuse, but too thin; -there wasn't a musician in the country that could. - -The queen was a good deal outraged, next morning when she found -she was going to have neither Hugo's life nor his property. But -I told her she must bear this cross; that while by law and custom -she certainly was entitled to both the man's life and his property, -there were extenuating circumstances, and so in Arthur the king's -name I had pardoned him. The deer was ravaging the man's fields, -and he had killed it in sudden passion, and not for gain; and he -had carried it into the royal forest in the hope that that might make -detection of the misdoer impossible. Confound her, I couldn't -make her see that sudden passion is an extenuating circumstance -in the killing of venison--or of a person--so I gave it up and let -her sulk it out. I _did_ think I was going to make her see it by -remarking that her own sudden passion in the case of the page -modified that crime. - -"Crime!" she exclaimed. "How thou talkest! Crime, forsooth! -Man, I am going to _pay_ for him!" - -Oh, it was no use to waste sense on her. Training--training is -everything; training is all there is _to_ a person. We speak of -nature; it is folly; there is no such thing as nature; what we -call by that misleading name is merely heredity and training. -We have no thoughts of our own, no opinions of our own; they are -transmitted to us, trained into us. All that is original in us, -and therefore fairly creditable or discreditable to us, can be -covered up and hidden by the point of a cambric needle, all the -rest being atoms contributed by, and inherited from, a procession -of ancestors that stretches back a billion years to the Adam-clam -or grasshopper or monkey from whom our race has been so tediously -and ostentatiously and unprofitably developed. And as for me, -all that I think about in this plodding sad pilgrimage, this -pathetic drift between the eternities, is to look out and humbly -live a pure and high and blameless life, and save that one -microscopic atom in me that is truly _me_: the rest may land in -Sheol and welcome for all I care. - -No, confound her, her intellect was good, she had brains enough, -but her training made her an ass--that is, from a many-centuries-later -point of view. To kill the page was no crime--it was her right; -and upon her right she stood, serenely and unconscious of offense. -She was a result of generations of training in the unexamined and -unassailed belief that the law which permitted her to kill a subject -when she chose was a perfectly right and righteous one. - -Well, we must give even Satan his due. She deserved a compliment -for one thing; and I tried to pay it, but the words stuck in my -throat. She had a right to kill the boy, but she was in no wise -obliged to pay for him. That was law for some other people, but -not for her. She knew quite well that she was doing a large and -generous thing to pay for that lad, and that I ought in common -fairness to come out with something handsome about it, but I -couldn't--my mouth refused. I couldn't help seeing, in my fancy, -that poor old grandma with the broken heart, and that fair young -creature lying butchered, his little silken pomps and vanities -laced with his golden blood. How could she _pay_ for him! _Whom_ -could she pay? And so, well knowing that this woman, trained -as she had been, deserved praise, even adulation, I was yet not -able to utter it, trained as I had been. The best I could do was -to fish up a compliment from outside, so to speak--and the pity -of it was, that it was true: - -"Madame, your people will adore you for this." - -Quite true, but I meant to hang her for it some day if I lived. -Some of those laws were too bad, altogether too bad. A master -might kill his slave for nothing--for mere spite, malice, or -to pass the time--just as we have seen that the crowned head could -do it with _his_ slave, that is to say, anybody. A gentleman could -kill a free commoner, and pay for him--cash or garden-truck. -A noble could kill a noble without expense, as far as the law was -concerned, but reprisals in kind were to be expected. _Any_body -could kill _some_body, except the commoner and the slave; these had -no privileges. If they killed, it was murder, and the law wouldn't -stand murder. It made short work of the experimenter--and of -his family, too, if he murdered somebody who belonged up among -the ornamental ranks. If a commoner gave a noble even so much -as a Damiens-scratch which didn't kill or even hurt, he got Damiens' -dose for it just the same; they pulled him to rags and tatters -with horses, and all the world came to see the show, and crack -jokes, and have a good time; and some of the performances of the -best people present were as tough, and as properly unprintable, -as any that have been printed by the pleasant Casanova in his -chapter about the dismemberment of Louis XV's poor awkward enemy. - -I had had enough of this grisly place by this time, and wanted -to leave, but I couldn't, because I had something on my mind that -my conscience kept prodding me about, and wouldn't let me forget. -If I had the remaking of man, he wouldn't have any conscience. -It is one of the most disagreeable things connected with a person; -and although it certainly does a great deal of good, it cannot -be said to pay, in the long run; it would be much better to have -less good and more comfort. Still, this is only my opinion, and -I am only one man; others, with less experience, may think -differently. They have a right to their view. I only stand -to this: I have noticed my conscience for many years, and I know -it is more trouble and bother to me than anything else I started -with. I suppose that in the beginning I prized it, because we -prize anything that is ours; and yet how foolish it was to think so. -If we look at it in another way, we see how absurd it is: if I had -an anvil in me would I prize it? Of course not. And yet when you -come to think, there is no real difference between a conscience -and an anvil--I mean for comfort. I have noticed it a thousand -times. And you could dissolve an anvil with acids, when you -couldn't stand it any longer; but there isn't any way that you can -work off a conscience--at least so it will stay worked off; not -that I know of, anyway. - -There was something I wanted to do before leaving, but it was -a disagreeable matter, and I hated to go at it. Well, it bothered -me all the morning. I could have mentioned it to the old king, -but what would be the use?--he was but an extinct volcano; he had -been active in his time, but his fire was out, this good while, -he was only a stately ash-pile now; gentle enough, and kindly -enough for my purpose, without doubt, but not usable. He was -nothing, this so-called king: the queen was the only power there. -And she was a Vesuvius. As a favor, she might consent to warm -a flock of sparrows for you, but then she might take that very -opportunity to turn herself loose and bury a city. However, -I reflected that as often as any other way, when you are expecting -the worst, you get something that is not so bad, after all. - -So I braced up and placed my matter before her royal Highness. -I said I had been having a general jail-delivery at Camelot and -among neighboring castles, and with her permission I would like -to examine her collection, her bric-a-brac--that is to say, her -prisoners. She resisted; but I was expecting that. But she finally -consented. I was expecting that, too, but not so soon. That about -ended my discomfort. She called her guards and torches, and -we went down into the dungeons. These were down under the castle's -foundations, and mainly were small cells hollowed out of the living -rock. Some of these cells had no light at all. In one of them was -a woman, in foul rags, who sat on the ground, and would not answer -a question or speak a word, but only looked up at us once or twice, -through a cobweb of tangled hair, as if to see what casual thing -it might be that was disturbing with sound and light the meaningless -dull dream that was become her life; after that, she sat bowed, -with her dirt-caked fingers idly interlocked in her lap, and gave -no further sign. This poor rack of bones was a woman of middle -age, apparently; but only apparently; she had been there nine -years, and was eighteen when she entered. She was a commoner, -and had been sent here on her bridal night by Sir Breuse Sance Pite, -a neighboring lord whose vassal her father was, and to which said -lord she had refused what has since been called le droit du -seigneur, and, moreover, had opposed violence to violence and spilt -half a gill of his almost sacred blood. The young husband had -interfered at that point, believing the bride's life in danger, -and had flung the noble out into the midst of the humble and -trembling wedding guests, in the parlor, and left him there -astonished at this strange treatment, and implacably embittered -against both bride and groom. The said lord being cramped for -dungeon-room had asked the queen to accommodate his two criminals, -and here in her bastile they had been ever since; hither, indeed, -they had come before their crime was an hour old, and had never -seen each other since. Here they were, kenneled like toads in the -same rock; they had passed nine pitch dark years within fifty feet -of each other, yet neither knew whether the other was alive or not. -All the first years, their only question had been--asked with -beseechings and tears that might have moved stones, in time, -perhaps, but hearts are not stones: "Is he alive?" "Is she alive?" -But they had never got an answer; and at last that question was -not asked any more--or any other. - -I wanted to see the man, after hearing all this. He was thirty-four -years old, and looked sixty. He sat upon a squared block of -stone, with his head bent down, his forearms resting on his knees, -his long hair hanging like a fringe before his face, and he was -muttering to himself. He raised his chin and looked us slowly -over, in a listless dull way, blinking with the distress of the -torchlight, then dropped his head and fell to muttering again -and took no further notice of us. There were some pathetically -suggestive dumb witnesses present. On his wrists and ankles were -cicatrices, old smooth scars, and fastened to the stone on which -he sat was a chain with manacles and fetters attached; but this -apparatus lay idle on the ground, and was thick with rust. Chains -cease to be needed after the spirit has gone out of a prisoner. - -I could not rouse the man; so I said we would take him to her, -and see--to the bride who was the fairest thing in the earth to him, -once--roses, pearls, and dew made flesh, for him; a wonder-work, -the master-work of nature: with eyes like no other eyes, and voice -like no other voice, and a freshness, and lithe young grace, and -beauty, that belonged properly to the creatures of dreams--as he -thought--and to no other. The sight of her would set his stagnant -blood leaping; the sight of her-- - -But it was a disappointment. They sat together on the ground and -looked dimly wondering into each other's faces a while, with a -sort of weak animal curiosity; then forgot each other's presence, -and dropped their eyes, and you saw that they were away again and -wandering in some far land of dreams and shadows that we know -nothing about. - -I had them taken out and sent to their friends. The queen did not -like it much. Not that she felt any personal interest in the matter, -but she thought it disrespectful to Sir Breuse Sance Pite. However, -I assured her that if he found he couldn't stand it I would fix him -so that he could. - -I set forty-seven prisoners loose out of those awful rat-holes, -and left only one in captivity. He was a lord, and had killed -another lord, a sort of kinsman of the queen. That other lord -had ambushed him to assassinate him, but this fellow had got the -best of him and cut his throat. However, it was not for that that -I left him jailed, but for maliciously destroying the only public -well in one of his wretched villages. The queen was bound to hang -him for killing her kinsman, but I would not allow it: it was no -crime to kill an assassin. But I said I was willing to let her -hang him for destroying the well; so she concluded to put up with -that, as it was better than nothing. - -Dear me, for what trifling offenses the most of those forty-seven -men and women were shut up there! Indeed, some were there for -no distinct offense at all, but only to gratify somebody's spite; -and not always the queen's by any means, but a friend's. The newest -prisoner's crime was a mere remark which he had made. He said -he believed that men were about all alike, and one man as good -as another, barring clothes. He said he believed that if you were -to strip the nation naked and send a stranger through the crowd, he -couldn't tell the king from a quack doctor, nor a duke from a hotel -clerk. Apparently here was a man whose brains had not been reduced -to an ineffectual mush by idiotic training. I set him loose and -sent him to the Factory. - -Some of the cells carved in the living rock were just behind the -face of the precipice, and in each of these an arrow-slit had been -pierced outward to the daylight, and so the captive had a thin -ray from the blessed sun for his comfort. The case of one of -these poor fellows was particularly hard. From his dusky swallow's -hole high up in that vast wall of native rock he could peer out -through the arrow-slit and see his own home off yonder in the -valley; and for twenty-two years he had watched it, with heartache -and longing, through that crack. He could see the lights shine -there at night, and in the daytime he could see figures go in and -come out--his wife and children, some of them, no doubt, though -he could not make out at that distance. In the course of years -he noted festivities there, and tried to rejoice, and wondered -if they were weddings or what they might be. And he noted funerals; -and they wrung his heart. He could make out the coffin, but he -could not determine its size, and so could not tell whether it was -wife or child. He could see the procession form, with priests -and mourners, and move solemnly away, bearing the secret with -them. He had left behind him five children and a wife; and in -nineteen years he had seen five funerals issue, and none of them -humble enough in pomp to denote a servant. So he had lost five -of his treasures; there must still be one remaining--one now -infinitely, unspeakably precious,--but _which_ one? wife, or child? -That was the question that tortured him, by night and by day, -asleep and awake. Well, to have an interest, of some sort, and -half a ray of light, when you are in a dungeon, is a great support -to the body and preserver of the intellect. This man was in pretty -good condition yet. By the time he had finished telling me his -distressful tale, I was in the same state of mind that you would -have been in yourself, if you have got average human curiosity; -that is to say, I was as burning up as he was to find out which -member of the family it was that was left. So I took him over -home myself; and an amazing kind of a surprise party it was, too ---typhoons and cyclones of frantic joy, and whole Niagaras of happy -tears; and by George! we found the aforetime young matron graying -toward the imminent verge of her half century, and the babies all -men and women, and some of them married and experimenting familywise -themselves--for not a soul of the tribe was dead! Conceive of the -ingenious devilishness of that queen: she had a special hatred for -this prisoner, and she had _invented_ all those funerals herself, -to scorch his heart with; and the sublimest stroke of genius of -the whole thing was leaving the family-invoice a funeral _short_, -so as to let him wear his poor old soul out guessing. - -But for me, he never would have got out. Morgan le Fay hated him -with her whole heart, and she never would have softened toward him. -And yet his crime was committed more in thoughtlessness than -deliberate depravity. He had said she had red hair. Well, she -had; but that was no way to speak of it. When red-headed people -are above a certain social grade their hair is auburn. - -Consider it: among these forty-seven captives there were five -whose names, offenses, and dates of incarceration were no longer -known! One woman and four men--all bent, and wrinkled, and -mind-extinguished patriarchs. They themselves had long ago forgotten -these details; at any rate they had mere vague theories about them, -nothing definite and nothing that they repeated twice in the same -way. The succession of priests whose office it had been to pray -daily with the captives and remind them that God had put them -there, for some wise purpose or other, and teach them that patience, -humbleness, and submission to oppression was what He loved to see -in parties of a subordinate rank, had traditions about these poor -old human ruins, but nothing more. These traditions went but -little way, for they concerned the length of the incarceration only, -and not the names of the offenses. And even by the help of -tradition the only thing that could be proven was that none of -the five had seen daylight for thirty-five years: how much longer -this privation has lasted was not guessable. The king and the queen -knew nothing about these poor creatures, except that they were -heirlooms, assets inherited, along with the throne, from the former -firm. Nothing of their history had been transmitted with their -persons, and so the inheriting owners had considered them of no -value, and had felt no interest in them. I said to the queen: - -"Then why in the world didn't you set them free?" - -The question was a puzzler. She didn't know _why_ she hadn't, the -thing had never come up in her mind. So here she was, forecasting -the veritable history of future prisoners of the Castle d'If, -without knowing it. It seemed plain to me now, that with her -training, those inherited prisoners were merely property--nothing -more, nothing less. Well, when we inherit property, it does not -occur to us to throw it away, even when we do not value it. - -When I brought my procession of human bats up into the open world -and the glare of the afternoon sun--previously blindfolding them, -in charity for eyes so long untortured by light--they were a -spectacle to look at. Skeletons, scarecrows, goblins, pathetic -frights, every one; legitimatest possible children of Monarchy -by the Grace of God and the Established Church. I muttered absently: - -"I _wish_ I could photograph them!" - -You have seen that kind of people who will never let on that they -don't know the meaning of a new big word. The more ignorant they -are, the more pitifully certain they are to pretend you haven't -shot over their heads. The queen was just one of that sort, and -was always making the stupidest blunders by reason of it. She -hesitated a moment; then her face brightened up with sudden -comprehension, and she said she would do it for me. - -I thought to myself: She? why what can she know about photography? -But it was a poor time to be thinking. When I looked around, she -was moving on the procession with an axe! - -Well, she certainly was a curious one, was Morgan le Fay. I have -seen a good many kinds of women in my time, but she laid over them -all for variety. And how sharply characteristic of her this episode -was. She had no more idea than a horse of how to photograph -a procession; but being in doubt, it was just like her to try -to do it with an axe. - - - -CHAPTER XIX - -KNIGHT-ERRANTRY AS A TRADE - -Sandy and I were on the road again, next morning, bright and early. -It was so good to open up one's lungs and take in whole luscious -barrels-ful of the blessed God's untainted, dew-fashioned, -woodland-scented air once more, after suffocating body and mind for two -days and nights in the moral and physical stenches of that intolerable -old buzzard-roost! I mean, for me: of course the place was all -right and agreeable enough for Sandy, for she had been used to -high life all her days. - -Poor girl, her jaws had had a wearisome rest now for a while, -and I was expecting to get the consequences. I was right; but she -had stood by me most helpfully in the castle, and had mightily -supported and reinforced me with gigantic foolishnesses which were -worth more for the occasion than wisdoms double their size; so -I thought she had earned a right to work her mill for a while, -if she wanted to, and I felt not a pang when she started it up: - -"Now turn we unto Sir Marhaus that rode with the damsel of thirty -winter of age southward--" - -"Are you going to see if you can work up another half-stretch on -the trail of the cowboys, Sandy?" - -"Even so, fair my lord." - -"Go ahead, then. I won't interrupt this time, if I can help it. -Begin over again; start fair, and shake out all your reefs, and -I will load my pipe and give good attention." - -"Now turn we unto Sir Marhaus that rode with the damsel of thirty -winter of age southward. And so they came into a deep forest, -and by fortune they were nighted, and rode along in a deep way, -and at the last they came into a courtelage where abode the duke -of South Marches, and there they asked harbour. And on the morn -the duke sent unto Sir Marhaus, and bad him make him ready. And -so Sir Marhaus arose and armed him, and there was a mass sung -afore him, and he brake his fast, and so mounted on horseback in -the court of the castle, there they should do the battle. So there -was the duke already on horseback, clean armed, and his six sons -by him, and every each had a spear in his hand, and so they -encountered, whereas the duke and his two sons brake their spears -upon him, but Sir Marhaus held up his spear and touched none of -them. Then came the four sons by couples, and two of them brake -their spears, and so did the other two. And all this while -Sir Marhaus touched them not. Then Sir Marhaus ran to the duke, -and smote him with his spear that horse and man fell to the earth. -And so he served his sons. And then Sir Marhaus alight down, and -bad the duke yield him or else he would slay him. And then some -of his sons recovered, and would have set upon Sir Marhaus. Then -Sir Marhaus said to the duke, Cease thy sons, or else I will do -the uttermost to you all. When the duke saw he might not escape -the death, he cried to his sons, and charged them to yield them -to Sir Marhaus. And they kneeled all down and put the pommels -of their swords to the knight, and so he received them. And then -they holp up their father, and so by their common assent promised -unto Sir Marhaus never to be foes unto King Arthur, and thereupon -at Whitsuntide after, to come he and his sons, and put them in -the king's grace.* - -[*Footnote: The story is borrowed, language and all, from the -Morte d'Arthur.--M.T.] - -"Even so standeth the history, fair Sir Boss. Now ye shall wit -that that very duke and his six sons are they whom but few days -past you also did overcome and send to Arthur's court!" - -"Why, Sandy, you can't mean it!" - -"An I speak not sooth, let it be the worse for me." - -"Well, well, well,--now who would ever have thought it? One -whole duke and six dukelets; why, Sandy, it was an elegant haul. -Knight-errantry is a most chuckle-headed trade, and it is tedious -hard work, too, but I begin to see that there _is_ money in it, -after all, if you have luck. Not that I would ever engage in it -as a business, for I wouldn't. No sound and legitimate business -can be established on a basis of speculation. A successful whirl -in the knight-errantry line--now what is it when you blow away -the nonsense and come down to the cold facts? It's just a corner -in pork, that's all, and you can't make anything else out of it. -You're rich--yes,--suddenly rich--for about a day, maybe a week; -then somebody corners the market on _you_, and down goes your -bucket-shop; ain't that so, Sandy?" - -"Whethersoever it be that my mind miscarrieth, bewraying simple -language in such sort that the words do seem to come endlong -and overthwart--" - -"There's no use in beating about the bush and trying to get around -it that way, Sandy, it's _so_, just as I say. I _know_ it's so. And, -moreover, when you come right down to the bedrock, knight-errantry -is _worse_ than pork; for whatever happens, the pork's left, and -so somebody's benefited anyway; but when the market breaks, in a -knight-errantry whirl, and every knight in the pool passes in his -checks, what have you got for assets? Just a rubbish-pile of -battered corpses and a barrel or two of busted hardware. Can you -call _those_ assets? Give me pork, every time. Am I right?" - -"Ah, peradventure my head being distraught by the manifold matters -whereunto the confusions of these but late adventured haps and -fortunings whereby not I alone nor you alone, but every each of us, -meseemeth--" - -"No, it's not your head, Sandy. Your head's all right, as far as -it goes, but you don't know business; that's where the trouble -is. It unfits you to argue about business, and you're wrong -to be always trying. However, that aside, it was a good haul, -anyway, and will breed a handsome crop of reputation in Arthur's -court. And speaking of the cowboys, what a curious country this -is for women and men that never get old. Now there's Morgan le Fay, -as fresh and young as a Vassar pullet, to all appearances, and -here is this old duke of the South Marches still slashing away with -sword and lance at his time of life, after raising such a family -as he has raised. As I understand it, Sir Gawaine killed seven -of his sons, and still he had six left for Sir Marhaus and me to -take into camp. And then there was that damsel of sixty winter -of age still excursioning around in her frosty bloom--How old -are you, Sandy?" - -It was the first time I ever struck a still place in her. The mill -had shut down for repairs, or something. - - - -CHAPTER XX - -THE OGRE'S CASTLE - -Between six and nine we made ten miles, which was plenty for a -horse carrying triple--man, woman, and armor; then we stopped -for a long nooning under some trees by a limpid brook. - -Right so came by and by a knight riding; and as he drew near he -made dolorous moan, and by the words of it I perceived that he -was cursing and swearing; yet nevertheless was I glad of his -coming, for that I saw he bore a bulletin-board whereon in letters -all of shining gold was writ: - - "USE PETERSON'S PROPHYLACTIC TOOTH-BRUSH--ALL THE GO." - -I was glad of his coming, for even by this token I knew him for -knight of mine. It was Sir Madok de la Montaine, a burly great -fellow whose chief distinction was that he had come within an ace -of sending Sir Launcelot down over his horse-tail once. He was -never long in a stranger's presence without finding some pretext -or other to let out that great fact. But there was another fact -of nearly the same size, which he never pushed upon anybody unasked, -and yet never withheld when asked: that was, that the reason he -didn't quite succeed was, that he was interrupted and sent down -over horse-tail himself. This innocent vast lubber did not see -any particular difference between the two facts. I liked him, -for he was earnest in his work, and very valuable. And he was so -fine to look at, with his broad mailed shoulders, and the grand -leonine set of his plumed head, and his big shield with its quaint -device of a gauntleted hand clutching a prophylactic tooth-brush, -with motto: "Try Noyoudont." This was a tooth-wash that I was -introducing. - -He was aweary, he said, and indeed he looked it; but he would not -alight. He said he was after the stove-polish man; and with this -he broke out cursing and swearing anew. The bulletin-boarder -referred to was Sir Ossaise of Surluse, a brave knight, and of -considerable celebrity on account of his having tried conclusions -in a tournament once, with no less a Mogul than Sir Gaheris -himself--although not successfully. He was of a light and laughing -disposition, and to him nothing in this world was serious. It was -for this reason that I had chosen him to work up a stove-polish -sentiment. There were no stoves yet, and so there could be nothing -serious about stove-polish. All that the agent needed to do was -to deftly and by degrees prepare the public for the great change, -and have them established in predilections toward neatness against -the time when the stove should appear upon the stage. - -Sir Madok was very bitter, and brake out anew with cursings. He -said he had cursed his soul to rags; and yet he would not get down -from his horse, neither would he take any rest, or listen to any -comfort, until he should have found Sir Ossaise and settled this -account. It appeared, by what I could piece together of the -unprofane fragments of his statement, that he had chanced upon -Sir Ossaise at dawn of the morning, and been told that if he would -make a short cut across the fields and swamps and broken hills and -glades, he could head off a company of travelers who would be rare -customers for prophylactics and tooth-wash. With characteristic -zeal Sir Madok had plunged away at once upon this quest, and after -three hours of awful crosslot riding had overhauled his game. And -behold, it was the five patriarchs that had been released from the -dungeons the evening before! Poor old creatures, it was all of -twenty years since any one of them had known what it was to be -equipped with any remaining snag or remnant of a tooth. - -"Blank-blank-blank him," said Sir Madok, "an I do not stove-polish -him an I may find him, leave it to me; for never no knight that -hight Ossaise or aught else may do me this disservice and bide -on live, an I may find him, the which I have thereunto sworn a -great oath this day." - -And with these words and others, he lightly took his spear and -gat him thence. In the middle of the afternoon we came upon one -of those very patriarchs ourselves, in the edge of a poor village. -He was basking in the love of relatives and friends whom he had not -seen for fifty years; and about him and caressing him were also -descendants of his own body whom he had never seen at all till now; -but to him these were all strangers, his memory was gone, his mind -was stagnant. It seemed incredible that a man could outlast half -a century shut up in a dark hole like a rat, but here were his old -wife and some old comrades to testify to it. They could remember -him as he was in the freshness and strength of his young manhood, -when he kissed his child and delivered it to its mother's hands -and went away into that long oblivion. The people at the castle -could not tell within half a generation the length of time the man -had been shut up there for his unrecorded and forgotten offense; -but this old wife knew; and so did her old child, who stood there -among her married sons and daughters trying to realize a father -who had been to her a name, a thought, a formless image, a tradition, -all her life, and now was suddenly concreted into actual flesh -and blood and set before her face. - -It was a curious situation; yet it is not on that account that -I have made room for it here, but on account of a thing which -seemed to me still more curious. To wit, that this dreadful matter -brought from these downtrodden people no outburst of rage against -these oppressors. They had been heritors and subjects of cruelty -and outrage so long that nothing could have startled them but -a kindness. Yes, here was a curious revelation, indeed, of the -depth to which this people had been sunk in slavery. Their entire -being was reduced to a monotonous dead level of patience, resignation, -dumb uncomplaining acceptance of whatever might befall them in -this life. Their very imagination was dead. When you can say -that of a man, he has struck bottom, I reckon; there is no lower -deep for him. - -I rather wished I had gone some other road. This was not the sort -of experience for a statesman to encounter who was planning out -a peaceful revolution in his mind. For it could not help bringing -up the unget-aroundable fact that, all gentle cant and philosophizing -to the contrary notwithstanding, no people in the world ever did -achieve their freedom by goody-goody talk and moral suasion: -it being immutable law that all revolutions that will succeed must -_begin_ in blood, whatever may answer afterward. If history teaches -anything, it teaches that. What this folk needed, then, was a -Reign of Terror and a guillotine, and I was the wrong man for them. - -Two days later, toward noon, Sandy began to show signs of excitement -and feverish expectancy. She said we were approaching the ogre's -castle. I was surprised into an uncomfortable shock. The object -of our quest had gradually dropped out of my mind; this sudden -resurrection of it made it seem quite a real and startling thing -for a moment, and roused up in me a smart interest. Sandy's -excitement increased every moment; and so did mine, for that sort -of thing is catching. My heart got to thumping. You can't reason -with your heart; it has its own laws, and thumps about things which -the intellect scorns. Presently, when Sandy slid from the horse, -motioned me to stop, and went creeping stealthily, with her head -bent nearly to her knees, toward a row of bushes that bordered -a declivity, the thumpings grew stronger and quicker. And they -kept it up while she was gaining her ambush and getting her glimpse -over the declivity; and also while I was creeping to her side on -my knees. Her eyes were burning now, as she pointed with her -finger, and said in a panting whisper: - -"The castle! The castle! Lo, where it looms!" - -What a welcome disappointment I experienced! I said: - -"Castle? It is nothing but a pigsty; a pigsty with a wattled -fence around it." - -She looked surprised and distressed. The animation faded out of -her face; and during many moments she was lost in thought and -silent. Then: - -"It was not enchanted aforetime," she said in a musing fashion, -as if to herself. "And how strange is this marvel, and how awful ---that to the one perception it is enchanted and dight in a base -and shameful aspect; yet to the perception of the other it is not -enchanted, hath suffered no change, but stands firm and stately -still, girt with its moat and waving its banners in the blue air -from its towers. And God shield us, how it pricks the heart to -see again these gracious captives, and the sorrow deepened in their -sweet faces! We have tarried along, and are to blame." - -I saw my cue. The castle was enchanted to _me_, not to her. It would -be wasted time to try to argue her out of her delusion, it couldn't -be done; I must just humor it. So I said: - -"This is a common case--the enchanting of a thing to one eye and -leaving it in its proper form to another. You have heard of it -before, Sandy, though you haven't happened to experience it. -But no harm is done. In fact, it is lucky the way it is. If these -ladies were hogs to everybody and to themselves, it would be -necessary to break the enchantment, and that might be impossible -if one failed to find out the particular process of the enchantment. -And hazardous, too; for in attempting a disenchantment without the -true key, you are liable to err, and turn your hogs into dogs, -and the dogs into cats, the cats into rats, and so on, and end by -reducing your materials to nothing finally, or to an odorless gas -which you can't follow--which, of course, amounts to the same -thing. But here, by good luck, no one's eyes but mine are under -the enchantment, and so it is of no consequence to dissolve it. -These ladies remain ladies to you, and to themselves, and to -everybody else; and at the same time they will suffer in no way -from my delusion, for when I know that an ostensible hog is a -lady, that is enough for me, I know how to treat her." - -"Thanks, oh, sweet my lord, thou talkest like an angel. And I know -that thou wilt deliver them, for that thou art minded to great -deeds and art as strong a knight of your hands and as brave to will -and to do, as any that is on live." - -"I will not leave a princess in the sty, Sandy. Are those three -yonder that to my disordered eyes are starveling swine-herds--" - -"The ogres, Are _they_ changed also? It is most wonderful. Now -am I fearful; for how canst thou strike with sure aim when five of -their nine cubits of stature are to thee invisible? Ah, go warily, -fair sir; this is a mightier emprise than I wend." - -"You be easy, Sandy. All I need to know is, how _much_ of an ogre -is invisible; then I know how to locate his vitals. Don't you be -afraid, I will make short work of these bunco-steerers. Stay -where you are." - -I left Sandy kneeling there, corpse-faced but plucky and hopeful, -and rode down to the pigsty, and struck up a trade with the -swine-herds. I won their gratitude by buying out all the hogs -at the lump sum of sixteen pennies, which was rather above latest -quotations. I was just in time; for the Church, the lord of the -manor, and the rest of the tax-gatherers would have been along -next day and swept off pretty much all the stock, leaving the -swine-herds very short of hogs and Sandy out of princesses. But -now the tax people could be paid in cash, and there would be -a stake left besides. One of the men had ten children; and he -said that last year when a priest came and of his ten pigs took -the fattest one for tithes, the wife burst out upon him, and offered -him a child and said: - -"Thou beast without bowels of mercy, why leave me my child, yet -rob me of the wherewithal to feed it?" - -How curious. The same thing had happened in the Wales of my day, -under this same old Established Church, which was supposed by many -to have changed its nature when it changed its disguise. - -I sent the three men away, and then opened the sty gate and beckoned -Sandy to come--which she did; and not leisurely, but with the rush -of a prairie fire. And when I saw her fling herself upon those -hogs, with tears of joy running down her cheeks, and strain them -to her heart, and kiss them, and caress them, and call them -reverently by grand princely names, I was ashamed of her, ashamed -of the human race. - -We had to drive those hogs home--ten miles; and no ladies were -ever more fickle-minded or contrary. They would stay in no road, -no path; they broke out through the brush on all sides, and flowed -away in all directions, over rocks, and hills, and the roughest -places they could find. And they must not be struck, or roughly -accosted; Sandy could not bear to see them treated in ways unbecoming -their rank. The troublesomest old sow of the lot had to be called -my Lady, and your Highness, like the rest. It is annoying and -difficult to scour around after hogs, in armor. There was one -small countess, with an iron ring in her snout and hardly any hair -on her back, that was the devil for perversity. She gave me a race -of an hour, over all sorts of country, and then we were right where -we had started from, having made not a rod of real progress. -I seized her at last by the tail, and brought her along squealing. -When I overtook Sandy she was horrified, and said it was in the -last degree indelicate to drag a countess by her train. - -We got the hogs home just at dark--most of them. The princess -Nerovens de Morganore was missing, and two of her ladies in waiting: -namely, Miss Angela Bohun, and the Demoiselle Elaine Courtemains, -the former of these two being a young black sow with a white star -in her forehead, and the latter a brown one with thin legs and a -slight limp in the forward shank on the starboard side--a couple -of the tryingest blisters to drive that I ever saw. Also among -the missing were several mere baronesses--and I wanted them to -stay missing; but no, all that sausage-meat had to be found; so -servants were sent out with torches to scour the woods and hills -to that end. - -Of course, the whole drove was housed in the house, and, great -guns!--well, I never saw anything like it. Nor ever heard anything -like it. And never smelt anything like it. It was like an -insurrection in a gasometer. - - - -CHAPTER XXI - -THE PILGRIMS - -When I did get to bed at last I was unspeakably tired; the stretching -out, and the relaxing of the long-tense muscles, how luxurious, -how delicious! but that was as far as I could get--sleep was out of -the question for the present. The ripping and tearing and squealing -of the nobility up and down the halls and corridors was pandemonium -come again, and kept me broad awake. Being awake, my thoughts -were busy, of course; and mainly they busied themselves with Sandy's -curious delusion. Here she was, as sane a person as the kingdom -could produce; and yet, from my point of view she was acting like -a crazy woman. My land, the power of training! of influence! -of education! It can bring a body up to believe anything. I had -to put myself in Sandy's place to realize that she was not a -lunatic. Yes, and put her in mine, to demonstrate how easy it is -to seem a lunatic to a person who has not been taught as you have -been taught. If I had told Sandy I had seen a wagon, uninfluenced -by enchantment, spin along fifty miles an hour; had seen a man, -unequipped with magic powers, get into a basket and soar out of -sight among the clouds; and had listened, without any necromancer's -help, to the conversation of a person who was several hundred miles -away, Sandy would not merely have supposed me to be crazy, she -would have thought she knew it. Everybody around her believed in -enchantments; nobody had any doubts; to doubt that a castle could -be turned into a sty, and its occupants into hogs, would have been -the same as my doubting among Connecticut people the actuality -of the telephone and its wonders,--and in both cases would be -absolute proof of a diseased mind, an unsettled reason. Yes, Sandy -was sane; that must be admitted. If I also would be sane--to Sandy ---I must keep my superstitions about unenchanted and unmiraculous -locomotives, balloons, and telephones, to myself. Also, I believed -that the world was not flat, and hadn't pillars under it to support -it, nor a canopy over it to turn off a universe of water that -occupied all space above; but as I was the only person in the kingdom -afflicted with such impious and criminal opinions, I recognized -that it would be good wisdom to keep quiet about this matter, too, -if I did not wish to be suddenly shunned and forsaken by everybody -as a madman. - -The next morning Sandy assembled the swine in the dining-room and -gave them their breakfast, waiting upon them personally and -manifesting in every way the deep reverence which the natives of -her island, ancient and modern, have always felt for rank, let its -outward casket and the mental and moral contents be what they may. -I could have eaten with the hogs if I had had birth approaching my -lofty official rank; but I hadn't, and so accepted the unavoidable -slight and made no complaint. Sandy and I had our breakfast at -the second table. The family were not at home. I said: - -"How many are in the family, Sandy, and where do they keep themselves?" - -"Family?" - -"Yes." - -"Which family, good my lord?" - -"Why, this family; your own family." - -"Sooth to say, I understand you not. I have no family." - -"No family? Why, Sandy, isn't this your home?" - -"Now how indeed might that be? I have no home." - -"Well, then, whose house is this?" - -"Ah, wit you well I would tell you an I knew myself." - -"Come--you don't even know these people? Then who invited us here?" - -"None invited us. We but came; that is all." - -"Why, woman, this is a most extraordinary performance. The -effrontery of it is beyond admiration. We blandly march into -a man's house, and cram it full of the only really valuable nobility -the sun has yet discovered in the earth, and then it turns out -that we don't even know the man's name. How did you ever venture -to take this extravagant liberty? I supposed, of course, it was -your home. What will the man say?" - -"What will he say? Forsooth what can he say but give thanks?" - -"Thanks for what?" - -Her face was filled with a puzzled surprise: - -"Verily, thou troublest mine understanding with strange words. -Do ye dream that one of his estate is like to have the honor twice -in his life to entertain company such as we have brought to grace -his house withal?" - -"Well, no--when you come to that. No, it's an even bet that this -is the first time he has had a treat like this." - -"Then let him be thankful, and manifest the same by grateful speech -and due humility; he were a dog, else, and the heir and ancestor -of dogs." - -To my mind, the situation was uncomfortable. It might become more so. -It might be a good idea to muster the hogs and move on. So I said: - -"The day is wasting, Sandy. It is time to get the nobility together -and be moving." - -"Wherefore, fair sir and Boss?" - -"We want to take them to their home, don't we?" - -"La, but list to him! They be of all the regions of the earth! -Each must hie to her own home; wend you we might do all these -journeys in one so brief life as He hath appointed that created -life, and thereto death likewise with help of Adam, who by sin -done through persuasion of his helpmeet, she being wrought upon -and bewrayed by the beguilements of the great enemy of man, that -serpent hight Satan, aforetime consecrated and set apart unto that -evil work by overmastering spite and envy begotten in his heart -through fell ambitions that did blight and mildew a nature erst -so white and pure whenso it hove with the shining multitudes -its brethren-born in glade and shade of that fair heaven wherein -all such as native be to that rich estate and--" - -"Great Scott!" - -"My lord?" - -"Well, you know we haven't got time for this sort of thing. Don't -you see, we could distribute these people around the earth in less -time than it is going to take you to explain that we can't. We -mustn't talk now, we must act. You want to be careful; you mustn't -let your mill get the start of you that way, at a time like this. -To business now--and sharp's the word. Who is to take the -aristocracy home?" - -"Even their friends. These will come for them from the far parts -of the earth." - -This was lightning from a clear sky, for unexpectedness; and the -relief of it was like pardon to a prisoner. She would remain to -deliver the goods, of course. - -"Well, then, Sandy, as our enterprise is handsomely and successfully -ended, I will go home and report; and if ever another one--" - -"I also am ready; I will go with thee." - -This was recalling the pardon. - -"How? You will go with me? Why should you?" - -"Will I be traitor to my knight, dost think? That were dishonor. -I may not part from thee until in knightly encounter in the field -some overmatching champion shall fairly win and fairly wear me. -I were to blame an I thought that that might ever hap." - -"Elected for the long term," I sighed to myself. "I may as well -make the best of it." So then I spoke up and said: - -"All right; let us make a start." - -While she was gone to cry her farewells over the pork, I gave that -whole peerage away to the servants. And I asked them to take -a duster and dust around a little where the nobilities had mainly -lodged and promenaded; but they considered that that would be -hardly worth while, and would moreover be a rather grave departure -from custom, and therefore likely to make talk. A departure from -custom--that settled it; it was a nation capable of committing any -crime but that. The servants said they would follow the fashion, -a fashion grown sacred through immemorial observance; they would -scatter fresh rushes in all the rooms and halls, and then the -evidence of the aristocratic visitation would be no longer visible. -It was a kind of satire on Nature: it was the scientific method, -the geologic method; it deposited the history of the family in -a stratified record; and the antiquary could dig through it and -tell by the remains of each period what changes of diet the family -had introduced successively for a hundred years. - -The first thing we struck that day was a procession of pilgrims. -It was not going our way, but we joined it, nevertheless; for it -was hourly being borne in upon me now, that if I would govern -this country wisely, I must be posted in the details of its life, -and not at second hand, but by personal observation and scrutiny. - -This company of pilgrims resembled Chaucer's in this: that it -had in it a sample of about all the upper occupations and professions -the country could show, and a corresponding variety of costume. -There were young men and old men, young women and old women, -lively folk and grave folk. They rode upon mules and horses, and -there was not a side-saddle in the party; for this specialty was -to remain unknown in England for nine hundred years yet. - -It was a pleasant, friendly, sociable herd; pious, happy, merry and -full of unconscious coarsenesses and innocent indecencies. What -they regarded as the merry tale went the continual round and caused -no more embarrassment than it would have caused in the best English -society twelve centuries later. Practical jokes worthy of the -English wits of the first quarter of the far-off nineteenth century -were sprung here and there and yonder along the line, and compelled -the delightedest applause; and sometimes when a bright remark was -made at one end of the procession and started on its travels toward -the other, you could note its progress all the way by the sparkling -spray of laughter it threw off from its bows as it plowed along; -and also by the blushes of the mules in its wake. - -Sandy knew the goal and purpose of this pilgrimage, and she posted -me. She said: - -"They journey to the Valley of Holiness, for to be blessed of the -godly hermits and drink of the miraculous waters and be cleansed -from sin." - -"Where is this watering place?" - -"It lieth a two-day journey hence, by the borders of the land that -hight the Cuckoo Kingdom." - -"Tell me about it. Is it a celebrated place?" - -"Oh, of a truth, yes. There be none more so. Of old time there -lived there an abbot and his monks. Belike were none in the world -more holy than these; for they gave themselves to study of pious -books, and spoke not the one to the other, or indeed to any, and -ate decayed herbs and naught thereto, and slept hard, and prayed -much, and washed never; also they wore the same garment until it -fell from their bodies through age and decay. Right so came they -to be known of all the world by reason of these holy austerities, -and visited by rich and poor, and reverenced." - -"Proceed." - -"But always there was lack of water there. Whereas, upon a time, -the holy abbot prayed, and for answer a great stream of clear -water burst forth by miracle in a desert place. Now were the -fickle monks tempted of the Fiend, and they wrought with their -abbot unceasingly by beggings and beseechings that he would construct -a bath; and when he was become aweary and might not resist more, -he said have ye your will, then, and granted that they asked. -Now mark thou what 'tis to forsake the ways of purity the which -He loveth, and wanton with such as be worldly and an offense. -These monks did enter into the bath and come thence washed as -white as snow; and lo, in that moment His sign appeared, in -miraculous rebuke! for His insulted waters ceased to flow, and -utterly vanished away." - -"They fared mildly, Sandy, considering how that kind of crime -is regarded in this country." - -"Belike; but it was their first sin; and they had been of perfect -life for long, and differing in naught from the angels. Prayers, -tears, torturings of the flesh, all was vain to beguile that water -to flow again. Even processions; even burnt-offerings; even votive -candles to the Virgin, did fail every each of them; and all in -the land did marvel." - -"How odd to find that even this industry has its financial panics, -and at times sees its assignats and greenbacks languish to zero, -and everything come to a standstill. Go on, Sandy." - -"And so upon a time, after year and day, the good abbot made humble -surrender and destroyed the bath. And behold, His anger was in that -moment appeased, and the waters gushed richly forth again, and even -unto this day they have not ceased to flow in that generous measure." - -"Then I take it nobody has washed since." - -"He that would essay it could have his halter free; yes, and -swiftly would he need it, too." - -"The community has prospered since?" - -"Even from that very day. The fame of the miracle went abroad -into all lands. From every land came monks to join; they came -even as the fishes come, in shoals; and the monastery added building -to building, and yet others to these, and so spread wide its arms -and took them in. And nuns came, also; and more again, and yet -more; and built over against the monastery on the yon side of the -vale, and added building to building, until mighty was that nunnery. -And these were friendly unto those, and they joined their loving -labors together, and together they built a fair great foundling -asylum midway of the valley between." - -"You spoke of some hermits, Sandy." - -"These have gathered there from the ends of the earth. A hermit -thriveth best where there be multitudes of pilgrims. Ye shall not -find no hermit of no sort wanting. If any shall mention a hermit -of a kind he thinketh new and not to be found but in some far -strange land, let him but scratch among the holes and caves and -swamps that line that Valley of Holiness, and whatsoever be his -breed, it skills not, he shall find a sample of it there." - -I closed up alongside of a burly fellow with a fat good-humored -face, purposing to make myself agreeable and pick up some further -crumbs of fact; but I had hardly more than scraped acquaintance -with him when he began eagerly and awkwardly to lead up, in the -immemorial way, to that same old anecdote--the one Sir Dinadan -told me, what time I got into trouble with Sir Sagramor and was -challenged of him on account of it. I excused myself and dropped -to the rear of the procession, sad at heart, willing to go hence -from this troubled life, this vale of tears, this brief day of -broken rest, of cloud and storm, of weary struggle and monotonous -defeat; and yet shrinking from the change, as remembering how long -eternity is, and how many have wended thither who know that anecdote. - -Early in the afternoon we overtook another procession of pilgrims; -but in this one was no merriment, no jokes, no laughter, no playful -ways, nor any happy giddiness, whether of youth or age. Yet both -were here, both age and youth; gray old men and women, strong men -and women of middle age, young husbands, young wives, little boys -and girls, and three babies at the breast. Even the children were -smileless; there was not a face among all these half a hundred -people but was cast down, and bore that set expression of hopelessness -which is bred of long and hard trials and old acquaintance with -despair. They were slaves. Chains led from their fettered feet -and their manacled hands to a sole-leather belt about their waists; -and all except the children were also linked together in a file -six feet apart, by a single chain which led from collar to collar -all down the line. They were on foot, and had tramped three -hundred miles in eighteen days, upon the cheapest odds and ends -of food, and stingy rations of that. They had slept in these -chains every night, bundled together like swine. They had upon -their bodies some poor rags, but they could not be said to be -clothed. Their irons had chafed the skin from their ankles and -made sores which were ulcerated and wormy. Their naked feet were -torn, and none walked without a limp. Originally there had been a -hundred of these unfortunates, but about half had been sold on -the trip. The trader in charge of them rode a horse and carried -a whip with a short handle and a long heavy lash divided into -several knotted tails at the end. With this whip he cut the -shoulders of any that tottered from weariness and pain, and -straightened them up. He did not speak; the whip conveyed his -desire without that. None of these poor creatures looked up as -we rode along by; they showed no consciousness of our presence. -And they made no sound but one; that was the dull and awful clank -of their chains from end to end of the long file, as forty-three -burdened feet rose and fell in unison. The file moved in a cloud -of its own making. - -All these faces were gray with a coating of dust. One has seen -the like of this coating upon furniture in unoccupied houses, and -has written his idle thought in it with his finger. I was reminded -of this when I noticed the faces of some of those women, young -mothers carrying babes that were near to death and freedom, how -a something in their hearts was written in the dust upon their -faces, plain to see, and lord, how plain to read! for it was the -track of tears. One of these young mothers was but a girl, and -it hurt me to the heart to read that writing, and reflect that it -was come up out of the breast of such a child, a breast that ought -not to know trouble yet, but only the gladness of the morning of -life; and no doubt-- - -She reeled just then, giddy with fatigue, and down came the lash -and flicked a flake of skin from her naked shoulder. It stung me -as if I had been hit instead. The master halted the file and -jumped from his horse. He stormed and swore at this girl, and -said she had made annoyance enough with her laziness, and as this -was the last chance he should have, he would settle the account now. -She dropped on her knees and put up her hands and began to beg, -and cry, and implore, in a passion of terror, but the master gave -no attention. He snatched the child from her, and then made the -men-slaves who were chained before and behind her throw her on -the ground and hold her there and expose her body; and then he -laid on with his lash like a madman till her back was flayed, she -shrieking and struggling the while piteously. One of the men who -was holding her turned away his face, and for this humanity he was -reviled and flogged. - -All our pilgrims looked on and commented--on the expert way in -which the whip was handled. They were too much hardened by lifelong -everyday familiarity with slavery to notice that there was anything -else in the exhibition that invited comment. This was what slavery -could do, in the way of ossifying what one may call the superior -lobe of human feeling; for these pilgrims were kind-hearted people, -and they would not have allowed that man to treat a horse like that. - -I wanted to stop the whole thing and set the slaves free, but that -would not do. I must not interfere too much and get myself a name -for riding over the country's laws and the citizen's rights -roughshod. If I lived and prospered I would be the death of -slavery, that I was resolved upon; but I would try to fix it so -that when I became its executioner it should be by command of -the nation. - -Just here was the wayside shop of a smith; and now arrived a landed -proprietor who had bought this girl a few miles back, deliverable -here where her irons could be taken off. They were removed; then -there was a squabble between the gentleman and the dealer as to -which should pay the blacksmith. The moment the girl was delivered -from her irons, she flung herself, all tears and frantic sobbings, -into the arms of the slave who had turned away his face when she -was whipped. He strained her to his breast, and smothered her -face and the child's with kisses, and washed them with the rain -of his tears. I suspected. I inquired. Yes, I was right; it was -husband and wife. They had to be torn apart by force; the girl -had to be dragged away, and she struggled and fought and shrieked -like one gone mad till a turn of the road hid her from sight; and -even after that, we could still make out the fading plaint of those -receding shrieks. And the husband and father, with his wife and -child gone, never to be seen by him again in life?--well, the look -of him one might not bear at all, and so I turned away; but I knew -I should never get his picture out of my mind again, and there -it is to this day, to wring my heartstrings whenever I think of it. - -We put up at the inn in a village just at nightfall, and when -I rose next morning and looked abroad, I was ware where a knight -came riding in the golden glory of the new day, and recognized him -for knight of mine--Sir Ozana le Cure Hardy. He was in the -gentlemen's furnishing line, and his missionarying specialty was -plug hats. He was clothed all in steel, in the beautifulest armor -of the time--up to where his helmet ought to have been; but he -hadn't any helmet, he wore a shiny stove-pipe hat, and was ridiculous -a spectacle as one might want to see. It was another of my -surreptitious schemes for extinguishing knighthood by making it -grotesque and absurd. Sir Ozana's saddle was hung about with -leather hat boxes, and every time he overcame a wandering knight -he swore him into my service and fitted him with a plug and made -him wear it. I dressed and ran down to welcome Sir Ozana and -get his news. - -"How is trade?" I asked. - -"Ye will note that I have but these four left; yet were they sixteen -whenas I got me from Camelot." - -"Why, you have certainly done nobly, Sir Ozana. Where have you -been foraging of late?" - -"I am but now come from the Valley of Holiness, please you sir." - -"I am pointed for that place myself. Is there anything stirring -in the monkery, more than common?" - -"By the mass ye may not question it!.... Give him good feed, -boy, and stint it not, an thou valuest thy crown; so get ye lightly -to the stable and do even as I bid.... Sir, it is parlous news -I bring, and--be these pilgrims? Then ye may not do better, good -folk, than gather and hear the tale I have to tell, sith it -concerneth you, forasmuch as ye go to find that ye will not find, -and seek that ye will seek in vain, my life being hostage for my -word, and my word and message being these, namely: That a hap -has happened whereof the like has not been seen no more but once -this two hundred years, which was the first and last time that -that said misfortune strake the holy valley in that form by -commandment of the Most High whereto by reasons just and causes -thereunto contributing, wherein the matter--" - -"The miraculous fount hath ceased to flow!" This shout burst from -twenty pilgrim mouths at once. - -"Ye say well, good people. I was verging to it, even when ye spake." - -"Has somebody been washing again?" - -"Nay, it is suspected, but none believe it. It is thought to be -some other sin, but none wit what." - -"How are they feeling about the calamity?" - -"None may describe it in words. The fount is these nine days dry. -The prayers that did begin then, and the lamentations in sackcloth -and ashes, and the holy processions, none of these have ceased -nor night nor day; and so the monks and the nuns and the foundlings -be all exhausted, and do hang up prayers writ upon parchment, -sith that no strength is left in man to lift up voice. And at last -they sent for thee, Sir Boss, to try magic and enchantment; and -if you could not come, then was the messenger to fetch Merlin, -and he is there these three days now, and saith he will fetch that -water though he burst the globe and wreck its kingdoms to accomplish -it; and right bravely doth he work his magic and call upon his -hellions to hie them hither and help, but not a whiff of moisture -hath he started yet, even so much as might qualify as mist upon -a copper mirror an ye count not the barrel of sweat he sweateth -betwixt sun and sun over the dire labors of his task; and if ye--" - -Breakfast was ready. As soon as it was over I showed to Sir Ozana -these words which I had written on the inside of his hat: "Chemical -Department, Laboratory extension, Section G. Pxxp. Send two of -first size, two of No. 3, and six of No. 4, together with the proper -complementary details--and two of my trained assistants." And I said: - -"Now get you to Camelot as fast as you can fly, brave knight, and -show the writing to Clarence, and tell him to have these required -matters in the Valley of Holiness with all possible dispatch." - -"I will well, Sir Boss," and he was off. - - - -CHAPTER XXII - -THE HOLY FOUNTAIN - -The pilgrims were human beings. Otherwise they would have acted -differently. They had come a long and difficult journey, and now -when the journey was nearly finished, and they learned that the main -thing they had come for had ceased to exist, they didn't do as -horses or cats or angle-worms would probably have done--turn back -and get at something profitable--no, anxious as they had before -been to see the miraculous fountain, they were as much as forty -times as anxious now to see the place where it had used to be. -There is no accounting for human beings. - -We made good time; and a couple of hours before sunset we stood -upon the high confines of the Valley of Holiness, and our eyes -swept it from end to end and noted its features. That is, its -large features. These were the three masses of buildings. They -were distant and isolated temporalities shrunken to toy constructions -in the lonely waste of what seemed a desert--and was. Such a scene -is always mournful, it is so impressively still, and looks so -steeped in death. But there was a sound here which interrupted -the stillness only to add to its mournfulness; this was the faint -far sound of tolling bells which floated fitfully to us on the -passing breeze, and so faintly, so softly, that we hardly knew -whether we heard it with our ears or with our spirits. - -We reached the monastery before dark, and there the males were -given lodging, but the women were sent over to the nunnery. The -bells were close at hand now, and their solemn booming smote -upon the ear like a message of doom. A superstitious despair -possessed the heart of every monk and published itself in his -ghastly face. Everywhere, these black-robed, soft-sandaled, -tallow-visaged specters appeared, flitted about and disappeared, -noiseless as the creatures of a troubled dream, and as uncanny. - -The old abbot's joy to see me was pathetic. Even to tears; but -he did the shedding himself. He said: - -"Delay not, son, but get to thy saving work. An we bring not -the water back again, and soon, we are ruined, and the good work -of two hundred years must end. And see thou do it with enchantments -that be holy, for the Church will not endure that work in her cause -be done by devil's magic." - -"When I work, Father, be sure there will be no devil's work -connected with it. I shall use no arts that come of the devil, -and no elements not created by the hand of God. But is Merlin -working strictly on pious lines?" - -"Ah, he said he would, my son, he said he would, and took oath -to make his promise good." - -"Well, in that case, let him proceed." - -"But surely you will not sit idle by, but help?" - -"It will not answer to mix methods, Father; neither would it be -professional courtesy. Two of a trade must not underbid each -other. We might as well cut rates and be done with it; it would -arrive at that in the end. Merlin has the contract; no other -magician can touch it till he throws it up." - -"But I will take it from him; it is a terrible emergency and the -act is thereby justified. And if it were not so, who will give -law to the Church? The Church giveth law to all; and what she -wills to do, that she may do, hurt whom it may. I will take it -from him; you shall begin upon the moment." - -"It may not be, Father. No doubt, as you say, where power is -supreme, one can do as one likes and suffer no injury; but we poor -magicians are not so situated. Merlin is a very good magician -in a small way, and has quite a neat provincial reputation. He -is struggling along, doing the best he can, and it would not be -etiquette for me to take his job until he himself abandons it." - -The abbot's face lighted. - -"Ah, that is simple. There are ways to persuade him to abandon it." - -"No-no, Father, it skills not, as these people say. If he were -persuaded against his will, he would load that well with a malicious -enchantment which would balk me until I found out its secret. -It might take a month. I could set up a little enchantment of -mine which I call the telephone, and he could not find out its -secret in a hundred years. Yes, you perceive, he might block me -for a month. Would you like to risk a month in a dry time like this?" - -"A month! The mere thought of it maketh me to shudder. Have it -thy way, my son. But my heart is heavy with this disappointment. -Leave me, and let me wear my spirit with weariness and waiting, -even as I have done these ten long days, counterfeiting thus -the thing that is called rest, the prone body making outward sign -of repose where inwardly is none." - -Of course, it would have been best, all round, for Merlin to waive -etiquette and quit and call it half a day, since he would never be -able to start that water, for he was a true magician of the time; -which is to say, the big miracles, the ones that gave him his -reputation, always had the luck to be performed when nobody but -Merlin was present; he couldn't start this well with all this crowd -around to see; a crowd was as bad for a magician's miracle in -that day as it was for a spiritualist's miracle in mine; there was -sure to be some skeptic on hand to turn up the gas at the crucial -moment and spoil everything. But I did not want Merlin to retire -from the job until I was ready to take hold of it effectively -myself; and I could not do that until I got my things from Camelot, -and that would take two or three days. - -My presence gave the monks hope, and cheered them up a good deal; -insomuch that they ate a square meal that night for the first time -in ten days. As soon as their stomachs had been properly reinforced -with food, their spirits began to rise fast; when the mead began to -go round they rose faster. By the time everybody was half-seas over, -the holy community was in good shape to make a night of it; so we -stayed by the board and put it through on that line. Matters got -to be very jolly. Good old questionable stories were told that made -the tears run down and cavernous mouths stand wide and the round -bellies shake with laughter; and questionable songs were bellowed out -in a mighty chorus that drowned the boom of the tolling bells. - -At last I ventured a story myself; and vast was the success of it. -Not right off, of course, for the native of those islands does -not, as a rule, dissolve upon the early applications of a humorous -thing; but the fifth time I told it, they began to crack in places; -the eight time I told it, they began to crumble; at the twelfth -repetition they fell apart in chunks; and at the fifteenth they -disintegrated, and I got a broom and swept them up. This language -is figurative. Those islanders--well, they are slow pay at first, -in the matter of return for your investment of effort, but in the end -they make the pay of all other nations poor and small by contrast. - -I was at the well next day betimes. Merlin was there, enchanting -away like a beaver, but not raising the moisture. He was not in -a pleasant humor; and every time I hinted that perhaps this contract -was a shade too hefty for a novice he unlimbered his tongue and -cursed like a bishop--French bishop of the Regency days, I mean. - -Matters were about as I expected to find them. The "fountain" was -an ordinary well, it had been dug in the ordinary way, and stoned up -in the ordinary way. There was no miracle about it. Even the lie -that had created its reputation was not miraculous; I could have -told it myself, with one hand tied behind me. The well was in a -dark chamber which stood in the center of a cut-stone chapel, whose -walls were hung with pious pictures of a workmanship that would -have made a chromo feel good; pictures historically commemorative -of curative miracles which had been achieved by the waters when -nobody was looking. That is, nobody but angels; they are always -on deck when there is a miracle to the fore--so as to get put in -the picture, perhaps. Angels are as fond of that as a fire company; -look at the old masters. - -The well-chamber was dimly lighted by lamps; the water was drawn -with a windlass and chain by monks, and poured into troughs which -delivered it into stone reservoirs outside in the chapel--when -there was water to draw, I mean--and none but monks could enter -the well-chamber. I entered it, for I had temporary authority -to do so, by courtesy of my professional brother and subordinate. -But he hadn't entered it himself. He did everything by incantations; -he never worked his intellect. If he had stepped in there and used -his eyes, instead of his disordered mind, he could have cured -the well by natural means, and then turned it into a miracle in -the customary way; but no, he was an old numskull, a magician who -believed in his own magic; and no magician can thrive who is -handicapped with a superstition like that. - -I had an idea that the well had sprung a leak; that some of the -wall stones near the bottom had fallen and exposed fissures that -allowed the water to escape. I measured the chain--98 feet. Then -I called in a couple of monks, locked the door, took a candle, and -made them lower me in the bucket. When the chain was all paid out, -the candle confirmed my suspicion; a considerable section of the -wall was gone, exposing a good big fissure. - -I almost regretted that my theory about the well's trouble was -correct, because I had another one that had a showy point or two -about it for a miracle. I remembered that in America, many -centuries later, when an oil well ceased to flow, they used to -blast it out with a dynamite torpedo. If I should find this well -dry and no explanation of it, I could astonish these people most -nobly by having a person of no especial value drop a dynamite -bomb into it. It was my idea to appoint Merlin. However, it was -plain that there was no occasion for the bomb. One cannot have -everything the way he would like it. A man has no business to -be depressed by a disappointment, anyway; he ought to make up his -mind to get even. That is what I did. I said to myself, I am in no -hurry, I can wait; that bomb will come good yet. And it did, too. - -When I was above ground again, I turned out the monks, and let down -a fish-line; the well was a hundred and fifty feet deep, and there -was forty-one feet of water in it. I called in a monk and asked: - -"How deep is the well?" - -"That, sir, I wit not, having never been told." - -"How does the water usually stand in it?" - -"Near to the top, these two centuries, as the testimony goeth, -brought down to us through our predecessors." - -It was true--as to recent times at least--for there was witness -to it, and better witness than a monk; only about twenty or thirty -feet of the chain showed wear and use, the rest of it was unworn -and rusty. What had happened when the well gave out that other -time? Without doubt some practical person had come along and -mended the leak, and then had come up and told the abbot he had -discovered by divination that if the sinful bath were destroyed -the well would flow again. The leak had befallen again now, and -these children would have prayed, and processioned, and tolled -their bells for heavenly succor till they all dried up and blew -away, and no innocent of them all would ever have thought to drop -a fish-line into the well or go down in it and find out what was -really the matter. Old habit of mind is one of the toughest things -to get away from in the world. It transmits itself like physical -form and feature; and for a man, in those days, to have had an idea -that his ancestors hadn't had, would have brought him under suspicion -of being illegitimate. I said to the monk: - -"It is a difficult miracle to restore water in a dry well, but we -will try, if my brother Merlin fails. Brother Merlin is a very -passable artist, but only in the parlor-magic line, and he may -not succeed; in fact, is not likely to succeed. But that should -be nothing to his discredit; the man that can do _this_ kind of -miracle knows enough to keep hotel." - -"Hotel? I mind not to have heard--" - -"Of hotel? It's what you call hostel. The man that can do this -miracle can keep hostel. I can do this miracle; I shall do this -miracle; yet I do not try to conceal from you that it is a miracle -to tax the occult powers to the last strain." - -"None knoweth that truth better than the brotherhood, indeed; for -it is of record that aforetime it was parlous difficult and took -a year. Natheless, God send you good success, and to that end -will we pray." - -As a matter of business it was a good idea to get the notion around -that the thing was difficult. Many a small thing has been made -large by the right kind of advertising. That monk was filled up -with the difficulty of this enterprise; he would fill up the others. -In two days the solicitude would be booming. - -On my way home at noon, I met Sandy. She had been sampling the -hermits. I said: - -"I would like to do that myself. This is Wednesday. Is there -a matinee?" - -"A which, please you, sir?" - -"Matinee. Do they keep open afternoons?" - -"Who?" - -"The hermits, of course." - -"Keep open?" - -"Yes, keep open. Isn't that plain enough? Do they knock off at noon?" - -"Knock off?" - -"Knock off?--yes, knock off. What is the matter with knock off? -I never saw such a dunderhead; can't you understand anything at all? -In plain terms, do they shut up shop, draw the game, bank the fires--" - -"Shut up shop, draw--" - -"There, never mind, let it go; you make me tired. You can't seem -to understand the simplest thing." - -"I would I might please thee, sir, and it is to me dole and sorrow -that I fail, albeit sith I am but a simple damsel and taught of -none, being from the cradle unbaptized in those deep waters of -learning that do anoint with a sovereignty him that partaketh of -that most noble sacrament, investing him with reverend state to -the mental eye of the humble mortal who, by bar and lack of that -great consecration seeth in his own unlearned estate but a symbol -of that other sort of lack and loss which men do publish to the -pitying eye with sackcloth trappings whereon the ashes of grief -do lie bepowdered and bestrewn, and so, when such shall in the -darkness of his mind encounter these golden phrases of high mystery, -these shut-up-shops, and draw-the-game, and bank-the-fires, it is -but by the grace of God that he burst not for envy of the mind that -can beget, and tongue that can deliver so great and mellow-sounding -miracles of speech, and if there do ensue confusion in that humbler -mind, and failure to divine the meanings of these wonders, then -if so be this miscomprehension is not vain but sooth and true, -wit ye well it is the very substance of worshipful dear homage and -may not lightly be misprized, nor had been, an ye had noted this -complexion of mood and mind and understood that that I would -I could not, and that I could not I might not, nor yet nor might -_nor_ could, nor might-not nor could-not, might be by advantage -turned to the desired _would_, and so I pray you mercy of my fault, -and that ye will of your kindness and your charity forgive it, good -my master and most dear lord." - -I couldn't make it all out--that is, the details--but I got the -general idea; and enough of it, too, to be ashamed. It was not -fair to spring those nineteenth century technicalities upon the -untutored infant of the sixth and then rail at her because she -couldn't get their drift; and when she was making the honest best -drive at it she could, too, and no fault of hers that she couldn't -fetch the home plate; and so I apologized. Then we meandered -pleasantly away toward the hermit holes in sociable converse -together, and better friends than ever. - -I was gradually coming to have a mysterious and shuddery reverence -for this girl; nowadays whenever she pulled out from the station -and got her train fairly started on one of those horizonless -transcontinental sentences of hers, it was borne in upon me that -I was standing in the awful presence of the Mother of the German -Language. I was so impressed with this, that sometimes when she -began to empty one of these sentences on me I unconsciously took -the very attitude of reverence, and stood uncovered; and if words -had been water, I had been drowned, sure. She had exactly the -German way; whatever was in her mind to be delivered, whether a -mere remark, or a sermon, or a cyclopedia, or the history of a war, -she would get it into a single sentence or die. Whenever the literary -German dives into a sentence, that is the last you are going to see -of him till he emerges on the other side of his Atlantic with his -verb in his mouth. - -We drifted from hermit to hermit all the afternoon. It was a most -strange menagerie. The chief emulation among them seemed to be, -to see which could manage to be the uncleanest and most prosperous -with vermin. Their manner and attitudes were the last expression -of complacent self-righteousness. It was one anchorite's pride -to lie naked in the mud and let the insects bite him and blister -him unmolested; it was another's to lean against a rock, all day -long, conspicuous to the admiration of the throng of pilgrims -and pray; it was another's to go naked and crawl around on all fours; -it was another's to drag about with him, year in and year out, -eighty pounds of iron; it was another's to never lie down when -he slept, but to stand among the thorn-bushes and snore when there -were pilgrims around to look; a woman, who had the white hair of -age, and no other apparel, was black from crown to heel with -forty-seven years of holy abstinence from water. Groups of gazing -pilgrims stood around all and every of these strange objects, lost -in reverent wonder, and envious of the fleckless sanctity which -these pious austerities had won for them from an exacting heaven. - -By and by we went to see one of the supremely great ones. He was -a mighty celebrity; his fame had penetrated all Christendom; the -noble and the renowned journeyed from the remotest lands on the globe -to pay him reverence. His stand was in the center of the widest part -of the valley; and it took all that space to hold his crowds. - -His stand was a pillar sixty feet high, with a broad platform on -the top of it. He was now doing what he had been doing every day -for twenty years up there--bowing his body ceaselessly and rapidly -almost to his feet. It was his way of praying. I timed him with a -stop watch, and he made 1,244 revolutions in 24 minutes and -46 seconds. It seemed a pity to have all this power going to waste. -It was one of the most useful motions in mechanics, the pedal -movement; so I made a note in my memorandum book, purposing some -day to apply a system of elastic cords to him and run a sewing -machine with it. I afterward carried out that scheme, and got -five years' good service out of him; in which time he turned out -upward of eighteen thousand first-rate tow-linen shirts, which -was ten a day. I worked him Sundays and all; he was going, Sundays, -the same as week days, and it was no use to waste the power. -These shirts cost me nothing but just the mere trifle for the -materials--I furnished those myself, it would not have been right -to make him do that--and they sold like smoke to pilgrims at a -dollar and a half apiece, which was the price of fifty cows or -a blooded race horse in Arthurdom. They were regarded as a perfect -protection against sin, and advertised as such by my knights -everywhere, with the paint-pot and stencil-plate; insomuch that -there was not a cliff or a bowlder or a dead wall in England but -you could read on it at a mile distance: - -"Buy the only genuine St. Stylite; patronized by the Nobility. -Patent applied for." - -There was more money in the business than one knew what to do with. -As it extended, I brought out a line of goods suitable for kings, -and a nobby thing for duchesses and that sort, with ruffles down -the forehatch and the running-gear clewed up with a featherstitch -to leeward and then hauled aft with a back-stay and triced up with -a half-turn in the standing rigging forward of the weather-gaskets. -Yes, it was a daisy. - -But about that time I noticed that the motive power had taken to -standing on one leg, and I found that there was something the matter -with the other one; so I stocked the business and unloaded, taking -Sir Bors de Ganis into camp financially along with certain of his -friends; for the works stopped within a year, and the good saint -got him to his rest. But he had earned it. I can say that for him. - -When I saw him that first time--however, his personal condition -will not quite bear description here. You can read it in the -Lives of the Saints.* - -[*All the details concerning the hermits, in this chapter, are from -Lecky--but greatly modified. This book not being a history but -only a tale, the majority of the historian's frank details were too -strong for reproduction in it.--_Editor_] - - - -CHAPTER XXIII - -RESTORATION OF THE FOUNTAIN - -Saturday noon I went to the well and looked on a while. Merlin -was still burning smoke-powders, and pawing the air, and muttering -gibberish as hard as ever, but looking pretty down-hearted, for -of course he had not started even a perspiration in that well yet. -Finally I said: - -"How does the thing promise by this time, partner?" - -"Behold, I am even now busied with trial of the powerfulest -enchantment known to the princes of the occult arts in the lands -of the East; an it fail me, naught can avail. Peace, until I finish." - -He raised a smoke this time that darkened all the region, and must -have made matters uncomfortable for the hermits, for the wind -was their way, and it rolled down over their dens in a dense and -billowy fog. He poured out volumes of speech to match, and contorted -his body and sawed the air with his hands in a most extraordinary -way. At the end of twenty minutes he dropped down panting, and -about exhausted. Now arrived the abbot and several hundred monks -and nuns, and behind them a multitude of pilgrims and a couple of -acres of foundlings, all drawn by the prodigious smoke, and all -in a grand state of excitement. The abbot inquired anxiously for -results. Merlin said: - -"If any labor of mortal might break the spell that binds these -waters, this which I have but just essayed had done it. It has -failed; whereby I do now know that that which I had feared is -a truth established; the sign of this failure is, that the most -potent spirit known to the magicians of the East, and whose name -none may utter and live, has laid his spell upon this well. The -mortal does not breathe, nor ever will, who can penetrate the secret -of that spell, and without that secret none can break it. The -water will flow no more forever, good Father. I have done what -man could. Suffer me to go." - -Of course this threw the abbot into a good deal of a consternation. -He turned to me with the signs of it in his face, and said: - -"Ye have heard him. Is it true?" - -"Part of it is." - -"Not all, then, not all! What part is true?" - -"That that spirit with the Russian name has put his spell -upon the well." - -"God's wounds, then are we ruined!" - -"Possibly." - -"But not certainly? Ye mean, not certainly?" - -"That is it." - -"Wherefore, ye also mean that when he saith none can break the spell--" - -"Yes, when he says that, he says what isn't necessarily true. -There are conditions under which an effort to break it may have -some chance--that is, some small, some trifling chance--of success." - -"The conditions--" - -"Oh, they are nothing difficult. Only these: I want the well -and the surroundings for the space of half a mile, entirely to -myself from sunset to-day until I remove the ban--and nobody -allowed to cross the ground but by my authority." - -"Are these all?" - -"Yes." - -"And you have no fear to try?" - -"Oh, none. One may fail, of course; and one may also succeed. -One can try, and I am ready to chance it. I have my conditions?" - -"These and all others ye may name. I will issue commandment -to that effect." - -"Wait," said Merlin, with an evil smile. "Ye wit that he that -would break this spell must know that spirit's name?" - -"Yes, I know his name." - -"And wit you also that to know it skills not of itself, but ye -must likewise pronounce it? Ha-ha! Knew ye that?" - -"Yes, I knew that, too." - -"You had that knowledge! Art a fool? Are ye minded to utter -that name and die?" - -"Utter it? Why certainly. I would utter it if it was Welsh." - -"Ye are even a dead man, then; and I go to tell Arthur." - -"That's all right. Take your gripsack and get along. The thing -for _you_ to do is to go home and work the weather, John W. Merlin." - -It was a home shot, and it made him wince; for he was the worst -weather-failure in the kingdom. Whenever he ordered up the -danger-signals along the coast there was a week's dead calm, sure, -and every time he prophesied fair weather it rained brickbats. -But I kept him in the weather bureau right along, to undermine -his reputation. However, that shot raised his bile, and instead -of starting home to report my death, he said he would remain -and enjoy it. - -My two experts arrived in the evening, and pretty well fagged, -for they had traveled double tides. They had pack-mules along, -and had brought everything I needed--tools, pump, lead pipe, -Greek fire, sheaves of big rockets, roman candles, colored fire -sprays, electric apparatus, and a lot of sundries--everything -necessary for the stateliest kind of a miracle. They got their -supper and a nap, and about midnight we sallied out through a -solitude so wholly vacant and complete that it quite overpassed -the required conditions. We took possession of the well and its -surroundings. My boys were experts in all sorts of things, from -the stoning up of a well to the constructing of a mathematical -instrument. An hour before sunrise we had that leak mended in -ship-shape fashion, and the water began to rise. Then we stowed our -fireworks in the chapel, locked up the place, and went home to bed. - -Before the noon mass was over, we were at the well again; for there -was a deal to do yet, and I was determined to spring the miracle -before midnight, for business reasons: for whereas a miracle -worked for the Church on a week-day is worth a good deal, it is -worth six times as much if you get it in on a Sunday. In nine hours -the water had risen to its customary level--that is to say, it was -within twenty-three feet of the top. We put in a little iron pump, -one of the first turned out by my works near the capital; we bored -into a stone reservoir which stood against the outer wall of the -well-chamber and inserted a section of lead pipe that was long -enough to reach to the door of the chapel and project beyond -the threshold, where the gushing water would be visible to the -two hundred and fifty acres of people I was intending should be -present on the flat plain in front of this little holy hillock at -the proper time. - -We knocked the head out of an empty hogshead and hoisted this -hogshead to the flat roof of the chapel, where we clamped it down -fast, poured in gunpowder till it lay loosely an inch deep on the -bottom, then we stood up rockets in the hogshead as thick as they -could loosely stand, all the different breeds of rockets there are; -and they made a portly and imposing sheaf, I can tell you. We -grounded the wire of a pocket electrical battery in that powder, -we placed a whole magazine of Greek fire on each corner of the -roof--blue on one corner, green on another, red on another, and -purple on the last--and grounded a wire in each. - -About two hundred yards off, in the flat, we built a pen of -scantlings, about four feet high, and laid planks on it, and so -made a platform. We covered it with swell tapestries borrowed -for the occasion, and topped it off with the abbot's own throne. -When you are going to do a miracle for an ignorant race, you want -to get in every detail that will count; you want to make all the -properties impressive to the public eye; you want to make matters -comfortable for your head guest; then you can turn yourself loose -and play your effects for all they are worth. I know the value of -these things, for I know human nature. You can't throw too much -style into a miracle. It costs trouble, and work, and sometimes -money; but it pays in the end. Well, we brought the wires to -the ground at the chapel, and then brought them under the ground -to the platform, and hid the batteries there. We put a rope fence -a hundred feet square around the platform to keep off the common -multitude, and that finished the work. My idea was, doors open -at 10:30, performance to begin at 11:25 sharp. I wished I could -charge admission, but of course that wouldn't answer. I instructed -my boys to be in the chapel as early as 10, before anybody was -around, and be ready to man the pumps at the proper time, and -make the fur fly. Then we went home to supper. - -The news of the disaster to the well had traveled far by this time; -and now for two or three days a steady avalanche of people had -been pouring into the valley. The lower end of the valley was -become one huge camp; we should have a good house, no question -about that. Criers went the rounds early in the evening and -announced the coming attempt, which put every pulse up to fever -heat. They gave notice that the abbot and his official suite would -move in state and occupy the platform at 10:30, up to which time -all the region which was under my ban must be clear; the bells -would then cease from tolling, and this sign should be permission -to the multitudes to close in and take their places. - -I was at the platform and all ready to do the honors when the -abbot's solemn procession hove in sight--which it did not do till -it was nearly to the rope fence, because it was a starless black -night and no torches permitted. With it came Merlin, and took -a front seat on the platform; he was as good as his word for once. -One could not see the multitudes banked together beyond the ban, -but they were there, just the same. The moment the bells stopped, -those banked masses broke and poured over the line like a vast -black wave, and for as much as a half hour it continued to flow, -and then it solidified itself, and you could have walked upon -a pavement of human heads to--well, miles. - -We had a solemn stage-wait, now, for about twenty minutes--a thing -I had counted on for effect; it is always good to let your audience -have a chance to work up its expectancy. At length, out of the -silence a noble Latin chant--men's voices--broke and swelled up -and rolled away into the night, a majestic tide of melody. I had -put that up, too, and it was one of the best effects I ever invented. -When it was finished I stood up on the platform and extended my -hands abroad, for two minutes, with my face uplifted--that always -produces a dead hush--and then slowly pronounced this ghastly word -with a kind of awfulness which caused hundreds to tremble, and -many women to faint: - -"Constantinopolitanischerdudelsackspfeifenmachersgesellschafft!" - -Just as I was moaning out the closing hunks of that word, I touched -off one of my electric connections and all that murky world of -people stood revealed in a hideous blue glare! It was immense ---that effect! Lots of people shrieked, women curled up and quit -in every direction, foundlings collapsed by platoons. The abbot -and the monks crossed themselves nimbly and their lips fluttered -with agitated prayers. Merlin held his grip, but he was astonished -clear down to his corns; he had never seen anything to begin -with that, before. Now was the time to pile in the effects. I lifted -my hands and groaned out this word--as it were in agony: - -"Nihilistendynamittheaterkaestchenssprengungsattentaetsversuchungen!" - ---and turned on the red fire! You should have heard that Atlantic -of people moan and howl when that crimson hell joined the blue! -After sixty seconds I shouted: - -"Transvaaltruppentropentransporttrampelthiertreibertrauungsthraenen- -tragoedie!" - ---and lit up the green fire! After waiting only forty seconds this -time, I spread my arms abroad and thundered out the devastating -syllables of this word of words: - -"Mekkamuselmannenmassenmenchenmoerdermohrenmuttermarmormonumentenmacher!" - ---and whirled on the purple glare! There they were, all going -at once, red, blue, green, purple!--four furious volcanoes pouring -vast clouds of radiant smoke aloft, and spreading a blinding -rainbowed noonday to the furthest confines of that valley. In -the distance one could see that fellow on the pillar standing rigid -against the background of sky, his seesaw stopped for the first -time in twenty years. I knew the boys were at the pump now and -ready. So I said to the abbot: - -"The time is come, Father. I am about to pronounce the dread name -and command the spell to dissolve. You want to brace up, and take -hold of something." Then I shouted to the people: "Behold, in -another minute the spell will be broken, or no mortal can break it. -If it break, all will know it, for you will see the sacred water -gush from the chapel door!" - -I stood a few moments, to let the hearers have a chance to spread -my announcement to those who couldn't hear, and so convey it -to the furthest ranks, then I made a grand exhibition of extra -posturing and gesturing, and shouted: - -"Lo, I command the fell spirit that possesses the holy fountain -to now disgorge into the skies all the infernal fires that still -remain in him, and straightway dissolve his spell and flee hence -to the pit, there to lie bound a thousand years. By his own dread -name I command it--BGWJJILLIGKKK!" - -Then I touched off the hogshead of rockets, and a vast fountain of -dazzling lances of fire vomited itself toward the zenith with a -hissing rush, and burst in mid-sky into a storm of flashing jewels! -One mighty groan of terror started up from the massed people ---then suddenly broke into a wild hosannah of joy--for there, fair -and plain in the uncanny glare, they saw the freed water leaping -forth! The old abbot could not speak a word, for tears and the -chokings in his throat; without utterance of any sort, he folded me -in his arms and mashed me. It was more eloquent than speech. -And harder to get over, too, in a country where there were really -no doctors that were worth a damaged nickel. - -You should have seen those acres of people throw themselves down -in that water and kiss it; kiss it, and pet it, and fondle it, and -talk to it as if it were alive, and welcome it back with the dear -names they gave their darlings, just as if it had been a friend who -was long gone away and lost, and was come home again. Yes, it was -pretty to see, and made me think more of them than I had done before. - -I sent Merlin home on a shutter. He had caved in and gone down -like a landslide when I pronounced that fearful name, and had -never come to since. He never had heard that name before,--neither -had I--but to him it was the right one. Any jumble would have -been the right one. He admitted, afterward, that that spirit's own -mother could not have pronounced that name better than I did. -He never could understand how I survived it, and I didn't tell -him. It is only young magicians that give away a secret like that. -Merlin spent three months working enchantments to try to find out -the deep trick of how to pronounce that name and outlive it. -But he didn't arrive. - -When I started to the chapel, the populace uncovered and fell back -reverently to make a wide way for me, as if I had been some kind -of a superior being--and I was. I was aware of that. I took along -a night shift of monks, and taught them the mystery of the pump, -and set them to work, for it was plain that a good part of the -people out there were going to sit up with the water all night, -consequently it was but right that they should have all they wanted -of it. To those monks that pump was a good deal of a miracle -itself, and they were full of wonder over it; and of admiration, -too, of the exceeding effectiveness of its performance. - -It was a great night, an immense night. There was reputation in it. -I could hardly get to sleep for glorying over it. - - - -CHAPTER XXIV - -A RIVAL MAGICIAN - -My influence in the Valley of Holiness was something prodigious -now. It seemed worth while to try to turn it to some valuable -account. The thought came to me the next morning, and was suggested -by my seeing one of my knights who was in the soap line come -riding in. According to history, the monks of this place two -centuries before had been worldly minded enough to want to wash. -It might be that there was a leaven of this unrighteousness still -remaining. So I sounded a Brother: - -"Wouldn't you like a bath?" - -He shuddered at the thought--the thought of the peril of it to -the well--but he said with feeling: - -"One needs not to ask that of a poor body who has not known that -blessed refreshment sith that he was a boy. Would God I might -wash me! but it may not be, fair sir, tempt me not; it is forbidden." - -And then he sighed in such a sorrowful way that I was resolved -he should have at least one layer of his real estate removed, -if it sized up my whole influence and bankrupted the pile. So I -went to the abbot and asked for a permit for this Brother. He -blenched at the idea--I don't mean that you could see him blench, -for of course you couldn't see it without you scraped him, and -I didn't care enough about it to scrape him, but I knew the blench -was there, just the same, and within a book-cover's thickness of -the surface, too--blenched, and trembled. He said: - -"Ah, son, ask aught else thou wilt, and it is thine, and freely -granted out of a grateful heart--but this, oh, this! Would you -drive away the blessed water again?" - -"No, Father, I will not drive it away. I have mysterious knowledge -which teaches me that there was an error that other time when -it was thought the institution of the bath banished the fountain." -A large interest began to show up in the old man's face. "My -knowledge informs me that the bath was innocent of that misfortune, -which was caused by quite another sort of sin." - -"These are brave words--but--but right welcome, if they be true." - -"They are true, indeed. Let me build the bath again, Father. -Let me build it again, and the fountain shall flow forever." - -"You promise this?--you promise it? Say the word--say you promise it!" - -"I do promise it." - -"Then will I have the first bath myself! Go--get ye to your work. -Tarry not, tarry not, but go." - -I and my boys were at work, straight off. The ruins of the old -bath were there yet in the basement of the monastery, not a stone -missing. They had been left just so, all these lifetimes, and -avoided with a pious fear, as things accursed. In two days we -had it all done and the water in--a spacious pool of clear pure -water that a body could swim in. It was running water, too. -It came in, and went out, through the ancient pipes. The old abbot -kept his word, and was the first to try it. He went down black -and shaky, leaving the whole black community above troubled and -worried and full of bodings; but he came back white and joyful, -and the game was made! another triumph scored. - -It was a good campaign that we made in that Valley of Holiness, -and I was very well satisfied, and ready to move on now, but -I struck a disappointment. I caught a heavy cold, and it started -up an old lurking rheumatism of mine. Of course the rheumatism -hunted up my weakest place and located itself there. This was -the place where the abbot put his arms about me and mashed me, what -time he was moved to testify his gratitude to me with an embrace. - -When at last I got out, I was a shadow. But everybody was full -of attentions and kindnesses, and these brought cheer back into -my life, and were the right medicine to help a convalescent swiftly -up toward health and strength again; so I gained fast. - -Sandy was worn out with nursing; so I made up my mind to turn out -and go a cruise alone, leaving her at the nunnery to rest up. -My idea was to disguise myself as a freeman of peasant degree -and wander through the country a week or two on foot. This would -give me a chance to eat and lodge with the lowliest and poorest -class of free citizens on equal terms. There was no other way -to inform myself perfectly of their everyday life and the operation -of the laws upon it. If I went among them as a gentleman, there -would be restraints and conventionalities which would shut me out -from their private joys and troubles, and I should get no further -than the outside shell. - -One morning I was out on a long walk to get up muscle for my trip, -and had climbed the ridge which bordered the northern extremity -of the valley, when I came upon an artificial opening in the face -of a low precipice, and recognized it by its location as a hermitage -which had often been pointed out to me from a distance as the den -of a hermit of high renown for dirt and austerity. I knew he had -lately been offered a situation in the Great Sahara, where lions -and sandflies made the hermit-life peculiarly attractive and -difficult, and had gone to Africa to take possession, so I thought -I would look in and see how the atmosphere of this den agreed -with its reputation. - -My surprise was great: the place was newly swept and scoured. -Then there was another surprise. Back in the gloom of the cavern -I heard the clink of a little bell, and then this exclamation: - -"Hello Central! Is this you, Camelot?--Behold, thou mayst glad -thy heart an thou hast faith to believe the wonderful when that -it cometh in unexpected guise and maketh itself manifest in -impossible places--here standeth in the flesh his mightiness -The Boss, and with thine own ears shall ye hear him speak!" - -Now what a radical reversal of things this was; what a jumbling -together of extravagant incongruities; what a fantastic conjunction -of opposites and irreconcilables--the home of the bogus miracle -become the home of a real one, the den of a mediaeval hermit turned -into a telephone office! - -The telephone clerk stepped into the light, and I recognized one -of my young fellows. I said: - -"How long has this office been established here, Ulfius?" - -"But since midnight, fair Sir Boss, an it please you. We saw many -lights in the valley, and so judged it well to make a station, -for that where so many lights be needs must they indicate a town -of goodly size." - -"Quite right. It isn't a town in the customary sense, but it's -a good stand, anyway. Do you know where you are?" - -"Of that I have had no time to make inquiry; for whenas my -comradeship moved hence upon their labors, leaving me in charge, -I got me to needed rest, purposing to inquire when I waked, and -report the place's name to Camelot for record." - -"Well, this is the Valley of Holiness." - -It didn't take; I mean, he didn't start at the name, as I had -supposed he would. He merely said: - -"I will so report it." - -"Why, the surrounding regions are filled with the noise of late -wonders that have happened here! You didn't hear of them?" - -"Ah, ye will remember we move by night, and avoid speech with all. -We learn naught but that we get by the telephone from Camelot." - -"Why _they_ know all about this thing. Haven't they told you anything -about the great miracle of the restoration of a holy fountain?" - -"Oh, _that_? Indeed yes. But the name of _this_ valley doth woundily -differ from the name of _that_ one; indeed to differ wider were not pos--" - -"What was that name, then?" - -"The Valley of Hellishness." - -"_That_ explains it. Confound a telephone, anyway. It is the very -demon for conveying similarities of sound that are miracles of -divergence from similarity of sense. But no matter, you know -the name of the place now. Call up Camelot." - -He did it, and had Clarence sent for. It was good to hear my boy's -voice again. It was like being home. After some affectionate -interchanges, and some account of my late illness, I said: - -"What is new?" - -"The king and queen and many of the court do start even in this -hour, to go to your valley to pay pious homage to the waters ye -have restored, and cleanse themselves of sin, and see the place -where the infernal spirit spouted true hell-flames to the clouds ---an ye listen sharply ye may hear me wink and hear me likewise -smile a smile, sith 'twas I that made selection of those flames -from out our stock and sent them by your order." - -"Does the king know the way to this place?" - -"The king?--no, nor to any other in his realms, mayhap; but the lads -that holp you with your miracle will be his guide and lead the way, -and appoint the places for rests at noons and sleeps at night." - -"This will bring them here--when?" - -"Mid-afternoon, or later, the third day." - -"Anything else in the way of news?" - -"The king hath begun the raising of the standing army ye suggested -to him; one regiment is complete and officered." - -"The mischief! I wanted a main hand in that myself. There is -only one body of men in the kingdom that are fitted to officer -a regular army." - -"Yes--and now ye will marvel to know there's not so much as one -West Pointer in that regiment." - -"What are you talking about? Are you in earnest?" - -"It is truly as I have said." - -"Why, this makes me uneasy. Who were chosen, and what was the -method? Competitive examination?" - -"Indeed, I know naught of the method. I but know this--these -officers be all of noble family, and are born--what is it you -call it?--chuckleheads." - -"There's something wrong, Clarence." - -"Comfort yourself, then; for two candidates for a lieutenancy do -travel hence with the king--young nobles both--and if you but wait -where you are you will hear them questioned." - -"That is news to the purpose. I will get one West Pointer in, -anyway. Mount a man and send him to that school with a message; -let him kill horses, if necessary, but he must be there before -sunset to-night and say--" - -"There is no need. I have laid a ground wire to the school. -Prithee let me connect you with it." - -It sounded good! In this atmosphere of telephones and lightning -communication with distant regions, I was breathing the breath -of life again after long suffocation. I realized, then, what a -creepy, dull, inanimate horror this land had been to me all these -years, and how I had been in such a stifled condition of mind as -to have grown used to it almost beyond the power to notice it. - -I gave my order to the superintendent of the Academy personally. -I also asked him to bring me some paper and a fountain pen and -a box or so of safety matches. I was getting tired of doing -without these conveniences. I could have them now, as I wasn't -going to wear armor any more at present, and therefore could get -at my pockets. - -When I got back to the monastery, I found a thing of interest -going on. The abbot and his monks were assembled in the great -hall, observing with childish wonder and faith the performances -of a new magician, a fresh arrival. His dress was the extreme of -the fantastic; as showy and foolish as the sort of thing an Indian -medicine-man wears. He was mowing, and mumbling, and gesticulating, -and drawing mystical figures in the air and on the floor,--the -regular thing, you know. He was a celebrity from Asia--so he -said, and that was enough. That sort of evidence was as good -as gold, and passed current everywhere. - -How easy and cheap it was to be a great magician on this fellow's -terms. His specialty was to tell you what any individual on the -face of the globe was doing at the moment; and what he had done -at any time in the past, and what he would do at any time in the -future. He asked if any would like to know what the Emperor of -the East was doing now? The sparkling eyes and the delighted rubbing -of hands made eloquent answer--this reverend crowd _would_ like to -know what that monarch was at, just as this moment. The fraud -went through some more mummery, and then made grave announcement: - -"The high and mighty Emperor of the East doth at this moment put -money in the palm of a holy begging friar--one, two, three pieces, -and they be all of silver." - -A buzz of admiring exclamations broke out, all around: - -"It is marvelous!" "Wonderful!" "What study, what labor, to have -acquired a so amazing power as this!" - -Would they like to know what the Supreme Lord of Inde was doing? -Yes. He told them what the Supreme Lord of Inde was doing. Then -he told them what the Sultan of Egypt was at; also what the King -of the Remote Seas was about. And so on and so on; and with each -new marvel the astonishment at his accuracy rose higher and higher. -They thought he must surely strike an uncertain place some time; -but no, he never had to hesitate, he always knew, and always with -unerring precision. I saw that if this thing went on I should lose -my supremacy, this fellow would capture my following, I should -be left out in the cold. I must put a cog in his wheel, and do it -right away, too. I said: - -"If I might ask, I should very greatly like to know what a certain -person is doing." - -"Speak, and freely. I will tell you." - -"It will be difficult--perhaps impossible." - -"My art knoweth not that word. The more difficult it is, the more -certainly will I reveal it to you." - -You see, I was working up the interest. It was getting pretty -high, too; you could see that by the craning necks all around, -and the half-suspended breathing. So now I climaxed it: - -"If you make no mistake--if you tell me truly what I want to -know--I will give you two hundred silver pennies." - -"The fortune is mine! I will tell you what you would know." - -"Then tell me what I am doing with my right hand." - -"Ah-h!" There was a general gasp of surprise. It had not occurred -to anybody in the crowd--that simple trick of inquiring about -somebody who wasn't ten thousand miles away. The magician was -hit hard; it was an emergency that had never happened in his -experience before, and it corked him; he didn't know how to meet -it. He looked stunned, confused; he couldn't say a word. "Come," -I said, "what are you waiting for? Is it possible you can answer up, -right off, and tell what anybody on the other side of the earth is -doing, and yet can't tell what a person is doing who isn't three -yards from you? Persons behind me know what I am doing with my -right hand--they will indorse you if you tell correctly." He was -still dumb. "Very well, I'll tell you why you don't speak up and -tell; it is because you don't know. _You_ a magician! Good friends, -this tramp is a mere fraud and liar." - -This distressed the monks and terrified them. They were not used -to hearing these awful beings called names, and they did not know -what might be the consequence. There was a dead silence now; -superstitious bodings were in every mind. The magician began to -pull his wits together, and when he presently smiled an easy, -nonchalant smile, it spread a mighty relief around; for it indicated -that his mood was not destructive. He said: - -"It hath struck me speechless, the frivolity of this person's -speech. Let all know, if perchance there be any who know it not, -that enchanters of my degree deign not to concern themselves with -the doings of any but kings, princes, emperors, them that be born -in the purple and them only. Had ye asked me what Arthur the great -king is doing, it were another matter, and I had told ye; but the -doings of a subject interest me not." - -"Oh, I misunderstood you. I thought you said 'anybody,' and so -I supposed 'anybody' included--well, anybody; that is, everybody." - -"It doth--anybody that is of lofty birth; and the better if -he be royal." - -"That, it meseemeth, might well be," said the abbot, who saw his -opportunity to smooth things and avert disaster, "for it were not -likely that so wonderful a gift as this would be conferred for -the revelation of the concerns of lesser beings than such as be -born near to the summits of greatness. Our Arthur the king--" - -"Would you know of him?" broke in the enchanter. - -"Most gladly, yea, and gratefully." - -Everybody was full of awe and interest again right away, the -incorrigible idiots. They watched the incantations absorbingly, -and looked at me with a "There, now, what can you say to that?" -air, when the announcement came: - -"The king is weary with the chase, and lieth in his palace these -two hours sleeping a dreamless sleep." - -"God's benison upon him!" said the abbot, and crossed himself; -"may that sleep be to the refreshment of his body and his soul." - -"And so it might be, if he were sleeping," I said, "but the king -is not sleeping, the king rides." - -Here was trouble again--a conflict of authority. Nobody knew which -of us to believe; I still had some reputation left. The magician's -scorn was stirred, and he said: - -"Lo, I have seen many wonderful soothsayers and prophets and -magicians in my life days, but none before that could sit idle and -see to the heart of things with never an incantation to help." - -"You have lived in the woods, and lost much by it. I use incantations -myself, as this good brotherhood are aware--but only on occasions -of moment." - -When it comes to sarcasming, I reckon I know how to keep my end up. -That jab made this fellow squirm. The abbot inquired after the -queen and the court, and got this information: - -"They be all on sleep, being overcome by fatigue, like as to the king." - -I said: - -"That is merely another lie. Half of them are about their amusements, -the queen and the other half are not sleeping, they ride. Now -perhaps you can spread yourself a little, and tell us where the king -and queen and all that are this moment riding with them are going?" - -"They sleep now, as I said; but on the morrow they will ride, -for they go a journey toward the sea." - -"And where will they be the day after to-morrow at vespers?" - -"Far to the north of Camelot, and half their journey will be done." - -"That is another lie, by the space of a hundred and fifty miles. -Their journey will not be merely half done, it will be all done, -and they will be _here_, in this valley." - -_That_ was a noble shot! It set the abbot and the monks in a whirl -of excitement, and it rocked the enchanter to his base. I followed -the thing right up: - -"If the king does not arrive, I will have myself ridden on a rail: -if he does I will ride you on a rail instead." - -Next day I went up to the telephone office and found that the king -had passed through two towns that were on the line. I spotted -his progress on the succeeding day in the same way. I kept these -matters to myself. The third day's reports showed that if he -kept up his gait he would arrive by four in the afternoon. There -was still no sign anywhere of interest in his coming; there seemed -to be no preparations making to receive him in state; a strange -thing, truly. Only one thing could explain this: that other -magician had been cutting under me, sure. This was true. I asked -a friend of mine, a monk, about it, and he said, yes, the magician -had tried some further enchantments and found out that the court -had concluded to make no journey at all, but stay at home. Think -of that! Observe how much a reputation was worth in such a country. -These people had seen me do the very showiest bit of magic in -history, and the only one within their memory that had a positive -value, and yet here they were, ready to take up with an adventurer -who could offer no evidence of his powers but his mere unproven word. - -However, it was not good politics to let the king come without -any fuss and feathers at all, so I went down and drummed up a -procession of pilgrims and smoked out a batch of hermits and -started them out at two o'clock to meet him. And that was the -sort of state he arrived in. The abbot was helpless with rage -and humiliation when I brought him out on a balcony and showed -him the head of the state marching in and never a monk on hand to -offer him welcome, and no stir of life or clang of joy-bell to glad -his spirit. He took one look and then flew to rouse out his forces. -The next minute the bells were dinning furiously, and the various -buildings were vomiting monks and nuns, who went swarming in a -rush toward the coming procession; and with them went that magician ---and he was on a rail, too, by the abbot's order; and his reputation -was in the mud, and mine was in the sky again. Yes, a man can -keep his trademark current in such a country, but he can't sit -around and do it; he has got to be on deck and attending to business -right along. - - - -CHAPTER XXV - -A COMPETITIVE EXAMINATION - -When the king traveled for change of air, or made a progress, or -visited a distant noble whom he wished to bankrupt with the cost -of his keep, part of the administration moved with him. It was -a fashion of the time. The Commission charged with the examination -of candidates for posts in the army came with the king to the -Valley, whereas they could have transacted their business just -as well at home. And although this expedition was strictly a -holiday excursion for the king, he kept some of his business -functions going just the same. He touched for the evil, as usual; -he held court in the gate at sunrise and tried cases, for he was -himself Chief Justice of the King's Bench. - -He shone very well in this latter office. He was a wise and humane -judge, and he clearly did his honest best and fairest,--according -to his lights. That is a large reservation. His lights--I mean -his rearing--often colored his decisions. Whenever there was a -dispute between a noble or gentleman and a person of lower degree, -the king's leanings and sympathies were for the former class always, -whether he suspected it or not. It was impossible that this should -be otherwise. The blunting effects of slavery upon the slaveholder's -moral perceptions are known and conceded, the world over; and a -privileged class, an aristocracy, is but a band of slaveholders -under another name. This has a harsh sound, and yet should not -be offensive to any--even to the noble himself--unless the fact -itself be an offense: for the statement simply formulates a fact. -The repulsive feature of slavery is the _thing_, not its name. One -needs but to hear an aristocrat speak of the classes that are below -him to recognize--and in but indifferently modified measure ---the very air and tone of the actual slaveholder; and behind these -are the slaveholder's spirit, the slaveholder's blunted feeling. -They are the result of the same cause in both cases: the possessor's -old and inbred custom of regarding himself as a superior being. -The king's judgments wrought frequent injustices, but it was merely -the fault of his training, his natural and unalterable sympathies. -He was as unfitted for a judgeship as would be the average mother -for the position of milk-distributor to starving children in -famine-time; her own children would fare a shade better than the rest. - -One very curious case came before the king. A young girl, an -orphan, who had a considerable estate, married a fine young fellow -who had nothing. The girl's property was within a seigniory held -by the Church. The bishop of the diocese, an arrogant scion of -the great nobility, claimed the girl's estate on the ground that -she had married privately, and thus had cheated the Church out -of one of its rights as lord of the seigniory--the one heretofore -referred to as le droit du seigneur. The penalty of refusal or -avoidance was confiscation. The girl's defense was, that the -lordship of the seigniory was vested in the bishop, and the -particular right here involved was not transferable, but must be -exercised by the lord himself or stand vacated; and that an older -law, of the Church itself, strictly barred the bishop from exercising -it. It was a very odd case, indeed. - -It reminded me of something I had read in my youth about the -ingenious way in which the aldermen of London raised the money -that built the Mansion House. A person who had not taken the -Sacrament according to the Anglican rite could not stand as a -candidate for sheriff of London. Thus Dissenters were ineligible; -they could not run if asked, they could not serve if elected. -The aldermen, who without any question were Yankees in disguise, -hit upon this neat device: they passed a by-law imposing a fine -of L400 upon any one who should refuse to be a candidate for -sheriff, and a fine of L600 upon any person who, after being -elected sheriff, refused to serve. Then they went to work and -elected a lot of Dissenters, one after another, and kept it up -until they had collected L15,000 in fines; and there stands the -stately Mansion House to this day, to keep the blushing citizen -in mind of a long past and lamented day when a band of Yankees -slipped into London and played games of the sort that has given -their race a unique and shady reputation among all truly good -and holy peoples that be in the earth. - -The girl's case seemed strong to me; the bishop's case was just -as strong. I did not see how the king was going to get out of -this hole. But he got out. I append his decision: - -"Truly I find small difficulty here, the matter being even a -child's affair for simpleness. An the young bride had conveyed -notice, as in duty bound, to her feudal lord and proper master -and protector the bishop, she had suffered no loss, for the said -bishop could have got a dispensation making him, for temporary -conveniency, eligible to the exercise of his said right, and thus -would she have kept all she had. Whereas, failing in her first -duty, she hath by that failure failed in all; for whoso, clinging -to a rope, severeth it above his hands, must fall; it being no -defense to claim that the rest of the rope is sound, neither any -deliverance from his peril, as he shall find. Pardy, the woman's -case is rotten at the source. It is the decree of the court that -she forfeit to the said lord bishop all her goods, even to the -last farthing that she doth possess, and be thereto mulcted in -the costs. Next!" - -Here was a tragic end to a beautiful honeymoon not yet three months -old. Poor young creatures! They had lived these three months -lapped to the lips in worldly comforts. These clothes and trinkets -they were wearing were as fine and dainty as the shrewdest stretch -of the sumptuary laws allowed to people of their degree; and in -these pretty clothes, she crying on his shoulder, and he trying -to comfort her with hopeful words set to the music of despair, -they went from the judgment seat out into the world homeless, -bedless, breadless; why, the very beggars by the roadsides were -not so poor as they. - -Well, the king was out of the hole; and on terms satisfactory to -the Church and the rest of the aristocracy, no doubt. Men write -many fine and plausible arguments in support of monarchy, but -the fact remains that where every man in a State has a vote, brutal -laws are impossible. Arthur's people were of course poor material -for a republic, because they had been debased so long by monarchy; -and yet even they would have been intelligent enough to make short -work of that law which the king had just been administering if it -had been submitted to their full and free vote. There is a phrase -which has grown so common in the world's mouth that it has come -to seem to have sense and meaning--the sense and meaning implied -when it is used; that is the phrase which refers to this or that or -the other nation as possibly being "capable of self-government"; -and the implied sense of it is, that there has been a nation -somewhere, some time or other which _wasn't_ capable of it--wasn't as -able to govern itself as some self-appointed specialists were or -would be to govern it. The master minds of all nations, in all -ages, have sprung in affluent multitude from the mass of the nation, -and from the mass of the nation only--not from its privileged -classes; and so, no matter what the nation's intellectual grade -was; whether high or low, the bulk of its ability was in the long -ranks of its nameless and its poor, and so it never saw the day -that it had not the material in abundance whereby to govern itself. -Which is to assert an always self-proven fact: that even the best -governed and most free and most enlightened monarchy is still -behind the best condition attainable by its people; and that the -same is true of kindred governments of lower grades, all the way -down to the lowest. - -King Arthur had hurried up the army business altogether beyond -my calculations. I had not supposed he would move in the matter -while I was away; and so I had not mapped out a scheme for determining -the merits of officers; I had only remarked that it would be wise -to submit every candidate to a sharp and searching examination; -and privately I meant to put together a list of military qualifications -that nobody could answer to but my West Pointers. That ought -to have been attended to before I left; for the king was so taken -with the idea of a standing army that he couldn't wait but must -get about it at once, and get up as good a scheme of examination -as he could invent out of his own head. - -I was impatient to see what this was; and to show, too, how much -more admirable was the one which I should display to the Examining -Board. I intimated this, gently, to the king, and it fired his -curiosity. When the Board was assembled, I followed him in; and -behind us came the candidates. One of these candidates was a bright -young West Pointer of mine, and with him were a couple of my -West Point professors. - -When I saw the Board, I did not know whether to cry or to laugh. -The head of it was the officer known to later centuries as Norroy -King-at-Arms! The two other members were chiefs of bureaus in -his department; and all three were priests, of course; all officials -who had to know how to read and write were priests. - -My candidate was called first, out of courtesy to me, and the head -of the Board opened on him with official solemnity: - -"Name?" - -"Mal-ease." - -"Son of?" - -"Webster." - -"Webster--Webster. H'm--I--my memory faileth to recall the -name. Condition?" - -"Weaver." - -"Weaver!--God keep us!" - -The king was staggered, from his summit to his foundations; one -clerk fainted, and the others came near it. The chairman pulled -himself together, and said indignantly: - -"It is sufficient. Get you hence." - -But I appealed to the king. I begged that my candidate might be -examined. The king was willing, but the Board, who were all -well-born folk, implored the king to spare them the indignity of -examining the weaver's son. I knew they didn't know enough to -examine him anyway, so I joined my prayers to theirs and the king -turned the duty over to my professors. I had had a blackboard -prepared, and it was put up now, and the circus began. It was -beautiful to hear the lad lay out the science of war, and wallow -in details of battle and siege, of supply, transportation, mining -and countermining, grand tactics, big strategy and little strategy, -signal service, infantry, cavalry, artillery, and all about siege -guns, field guns, gatling guns, rifled guns, smooth bores, musket -practice, revolver practice--and not a solitary word of it all -could these catfish make head or tail of, you understand--and it -was handsome to see him chalk off mathematical nightmares on the -blackboard that would stump the angels themselves, and do it like -nothing, too--all about eclipses, and comets, and solstices, and -constellations, and mean time, and sidereal time, and dinner time, -and bedtime, and every other imaginable thing above the clouds or -under them that you could harry or bullyrag an enemy with and make -him wish he hadn't come--and when the boy made his military salute -and stood aside at last, I was proud enough to hug him, and all -those other people were so dazed they looked partly petrified, -partly drunk, and wholly caught out and snowed under. I judged -that the cake was ours, and by a large majority. - -Education is a great thing. This was the same youth who had come -to West Point so ignorant that when I asked him, "If a general -officer should have a horse shot under him on the field of battle, -what ought he to do?" answered up naively and said: - -"Get up and brush himself." - -One of the young nobles was called up now. I thought I would -question him a little myself. I said: - -"Can your lordship read?" - -His face flushed indignantly, and he fired this at me: - -"Takest me for a clerk? I trow I am not of a blood that--" - -"Answer the question!" - -He crowded his wrath down and made out to answer "No." - -"Can you write?" - -He wanted to resent this, too, but I said: - -"You will confine yourself to the questions, and make no comments. -You are not here to air your blood or your graces, and nothing -of the sort will be permitted. Can you write?" - -"No." - -"Do you know the multiplication table?" - -"I wit not what ye refer to." - -"How much is 9 times 6?" - -"It is a mystery that is hidden from me by reason that the emergency -requiring the fathoming of it hath not in my life-days occurred, -and so, not having no need to know this thing, I abide barren -of the knowledge." - -"If A trade a barrel of onions to B, worth 2 pence the bushel, -in exchange for a sheep worth 4 pence and a dog worth a penny, -and C kill the dog before delivery, because bitten by the same, -who mistook him for D, what sum is still due to A from B, and -which party pays for the dog, C or D, and who gets the money? -If A, is the penny sufficient, or may he claim consequential damages -in the form of additional money to represent the possible profit -which might have inured from the dog, and classifiable as earned -increment, that is to say, usufruct?" - -"Verily, in the all-wise and unknowable providence of God, who -moveth in mysterious ways his wonders to perform, have I never -heard the fellow to this question for confusion of the mind and -congestion of the ducts of thought. Wherefore I beseech you let -the dog and the onions and these people of the strange and godless -names work out their several salvations from their piteous and -wonderful difficulties without help of mine, for indeed their -trouble is sufficient as it is, whereas an I tried to help I should -but damage their cause the more and yet mayhap not live myself -to see the desolation wrought." - -"What do you know of the laws of attraction and gravitation?" - -"If there be such, mayhap his grace the king did promulgate them -whilst that I lay sick about the beginning of the year and thereby -failed to hear his proclamation." - -"What do you know of the science of optics?" - -"I know of governors of places, and seneschals of castles, and -sheriffs of counties, and many like small offices and titles of -honor, but him you call the Science of Optics I have not heard -of before; peradventure it is a new dignity." - -"Yes, in this country." - -Try to conceive of this mollusk gravely applying for an official -position, of any kind under the sun! Why, he had all the earmarks -of a typewriter copyist, if you leave out the disposition to -contribute uninvited emendations of your grammar and punctuation. -It was unaccountable that he didn't attempt a little help of that -sort out of his majestic supply of incapacity for the job. But that -didn't prove that he hadn't material in him for the disposition, -it only proved that he wasn't a typewriter copyist yet. After -nagging him a little more, I let the professors loose on him and -they turned him inside out, on the line of scientific war, and -found him empty, of course. He knew somewhat about the warfare -of the time--bushwhacking around for ogres, and bull-fights in -the tournament ring, and such things--but otherwise he was empty -and useless. Then we took the other young noble in hand, and he -was the first one's twin, for ignorance and incapacity. I delivered -them into the hands of the chairman of the Board with the comfortable -consciousness that their cake was dough. They were examined in -the previous order of precedence. - -"Name, so please you?" - -"Pertipole, son of Sir Pertipole, Baron of Barley Mash." - -"Grandfather?" - -"Also Sir Pertipole, Baron of Barley Mash." - -"Great-grandfather?" - -"The same name and title." - -"Great-great-grandfather?" - -"We had none, worshipful sir, the line failing before it had -reached so far back." - -"It mattereth not. It is a good four generations, and fulfilleth -the requirements of the rule." - -"Fulfills what rule?" I asked. - -"The rule requiring four generations of nobility or else the -candidate is not eligible." - -"A man not eligible for a lieutenancy in the army unless he can -prove four generations of noble descent?" - -"Even so; neither lieutenant nor any other officer may be commissioned -without that qualification." - -"Oh, come, this is an astonishing thing. What good is such a -qualification as that?" - -"What good? It is a hardy question, fair sir and Boss, since it doth -go far to impugn the wisdom of even our holy Mother Church herself." - -"As how?" - -"For that she hath established the self-same rule regarding -saints. By her law none may be canonized until he hath lain dead -four generations." - -"I see, I see--it is the same thing. It is wonderful. In the one -case a man lies dead-alive four generations--mummified in ignorance -and sloth--and that qualifies him to command live people, and take -their weal and woe into his impotent hands; and in the other case, -a man lies bedded with death and worms four generations, and that -qualifies him for office in the celestial camp. Does the king's -grace approve of this strange law?" - -The king said: - -"Why, truly I see naught about it that is strange. All places of -honor and of profit do belong, by natural right, to them that be -of noble blood, and so these dignities in the army are their -property and would be so without this or any rule. The rule is -but to mark a limit. Its purpose is to keep out too recent blood, -which would bring into contempt these offices, and men of lofty -lineage would turn their backs and scorn to take them. I were -to blame an I permitted this calamity. _You_ can permit it an you -are minded so to do, for you have the delegated authority, but -that the king should do it were a most strange madness and not -comprehensible to any." - -"I yield. Proceed, sir Chief of the Herald's College." - -The chairman resumed as follows: - -"By what illustrious achievement for the honor of the Throne and -State did the founder of your great line lift himself to the -sacred dignity of the British nobility?" - -"He built a brewery." - -"Sire, the Board finds this candidate perfect in all the requirements -and qualifications for military command, and doth hold his case -open for decision after due examination of his competitor." - -The competitor came forward and proved exactly four generations -of nobility himself. So there was a tie in military qualifications -that far. - -He stood aside a moment, and Sir Pertipole was questioned further: - -"Of what condition was the wife of the founder of your line?" - -"She came of the highest landed gentry, yet she was not noble; -she was gracious and pure and charitable, of a blameless life and -character, insomuch that in these regards was she peer of the -best lady in the land." - -"That will do. Stand down." He called up the competing lordling -again, and asked: "What was the rank and condition of the -great-grandmother who conferred British nobility upon your -great house?" - -"She was a king's leman and did climb to that splendid eminence -by her own unholpen merit from the sewer where she was born." - -"Ah, this, indeed, is true nobility, this is the right and perfect -intermixture. The lieutenancy is yours, fair lord. Hold it not in -contempt; it is the humble step which will lead to grandeurs more -worthy of the splendor of an origin like to thine." - -I was down in the bottomless pit of humiliation. I had promised -myself an easy and zenith-scouring triumph, and this was the outcome! - -I was almost ashamed to look my poor disappointed cadet in the -face. I told him to go home and be patient, this wasn't the end. - -I had a private audience with the king, and made a proposition. -I said it was quite right to officer that regiment with nobilities, -and he couldn't have done a wiser thing. It would also be a good -idea to add five hundred officers to it; in fact, add as many -officers as there were nobles and relatives of nobles in the -country, even if there should finally be five times as many officers -as privates in it; and thus make it the crack regiment, the envied -regiment, the King's Own regiment, and entitled to fight on its -own hook and in its own way, and go whither it would and come -when it pleased, in time of war, and be utterly swell and independent. -This would make that regiment the heart's desire of all the -nobility, and they would all be satisfied and happy. Then we -would make up the rest of the standing army out of commonplace -materials, and officer it with nobodies, as was proper--nobodies -selected on a basis of mere efficiency--and we would make this -regiment toe the line, allow it no aristocratic freedom from -restraint, and force it to do all the work and persistent hammering, -to the end that whenever the King's Own was tired and wanted to go -off for a change and rummage around amongst ogres and have a good -time, it could go without uneasiness, knowing that matters were in -safe hands behind it, and business going to be continued at the -old stand, same as usual. The king was charmed with the idea. - -When I noticed that, it gave me a valuable notion. I thought -I saw my way out of an old and stubborn difficulty at last. You -see, the royalties of the Pendragon stock were a long-lived race -and very fruitful. Whenever a child was born to any of these ---and it was pretty often--there was wild joy in the nation's mouth, -and piteous sorrow in the nation's heart. The joy was questionable, -but the grief was honest. Because the event meant another call -for a Royal Grant. Long was the list of these royalties, and -they were a heavy and steadily increasing burden upon the treasury -and a menace to the crown. Yet Arthur could not believe this -latter fact, and he would not listen to any of my various projects -for substituting something in the place of the royal grants. If I -could have persuaded him to now and then provide a support for -one of these outlying scions from his own pocket, I could have -made a grand to-do over it, and it would have had a good effect -with the nation; but no, he wouldn't hear of such a thing. He had -something like a religious passion for royal grant; he seemed to -look upon it as a sort of sacred swag, and one could not irritate -him in any way so quickly and so surely as by an attack upon that -venerable institution. If I ventured to cautiously hint that there -was not another respectable family in England that would humble -itself to hold out the hat--however, that is as far as I ever got; -he always cut me short there, and peremptorily, too. - -But I believed I saw my chance at last. I would form this crack -regiment out of officers alone--not a single private. Half of it -should consist of nobles, who should fill all the places up to -Major-General, and serve gratis and pay their own expenses; and -they would be glad to do this when they should learn that the rest -of the regiment would consist exclusively of princes of the blood. -These princes of the blood should range in rank from Lieutenant-General -up to Field Marshal, and be gorgeously salaried and equipped and -fed by the state. Moreover--and this was the master stroke ---it should be decreed that these princely grandees should be always -addressed by a stunningly gaudy and awe-compelling title (which -I would presently invent), and they and they only in all England -should be so addressed. Finally, all princes of the blood should -have free choice; join that regiment, get that great title, and -renounce the royal grant, or stay out and receive a grant. Neatest -touch of all: unborn but imminent princes of the blood could be -_born_ into the regiment, and start fair, with good wages and a -permanent situation, upon due notice from the parents. - -All the boys would join, I was sure of that; so, all existing -grants would be relinquished; that the newly born would always -join was equally certain. Within sixty days that quaint and -bizarre anomaly, the Royal Grant, would cease to be a living fact, -and take its place among the curiosities of the past. - - - -CHAPTER XXVI - -THE FIRST NEWSPAPER - -When I told the king I was going out disguised as a petty freeman -to scour the country and familiarize myself with the humbler life -of the people, he was all afire with the novelty of the thing -in a minute, and was bound to take a chance in the adventure -himself--nothing should stop him--he would drop everything and -go along--it was the prettiest idea he had run across for many -a day. He wanted to glide out the back way and start at once; -but I showed him that that wouldn't answer. You see, he was billed -for the king's-evil--to touch for it, I mean--and it wouldn't be -right to disappoint the house and it wouldn't make a delay worth -considering, anyway, it was only a one-night stand. And I thought -he ought to tell the queen he was going away. He clouded up at -that and looked sad. I was sorry I had spoken, especially when -he said mournfully: - -"Thou forgettest that Launcelot is here; and where Launcelot is, -she noteth not the going forth of the king, nor what day he returneth." - -Of course, I changed the Subject. Yes, Guenever was beautiful, -it is true, but take her all around she was pretty slack. I never -meddled in these matters, they weren't my affair, but I did hate -to see the way things were going on, and I don't mind saying that -much. Many's the time she had asked me, "Sir Boss, hast seen -Sir Launcelot about?" but if ever she went fretting around for -the king I didn't happen to be around at the time. - -There was a very good lay-out for the king's-evil business--very -tidy and creditable. The king sat under a canopy of state; about -him were clustered a large body of the clergy in full canonicals. -Conspicuous, both for location and personal outfit, stood Marinel, -a hermit of the quack-doctor species, to introduce the sick. All -abroad over the spacious floor, and clear down to the doors, -in a thick jumble, lay or sat the scrofulous, under a strong light. -It was as good as a tableau; in fact, it had all the look of being -gotten up for that, though it wasn't. There were eight hundred -sick people present. The work was slow; it lacked the interest -of novelty for me, because I had seen the ceremonies before; -the thing soon became tedious, but the proprieties required me -to stick it out. The doctor was there for the reason that in all -such crowds there were many people who only imagined something -was the matter with them, and many who were consciously sound -but wanted the immortal honor of fleshly contact with a king, and -yet others who pretended to illness in order to get the piece of -coin that went with the touch. Up to this time this coin had been -a wee little gold piece worth about a third of a dollar. When you -consider how much that amount of money would buy, in that age -and country, and how usual it was to be scrofulous, when not dead, -you would understand that the annual king's-evil appropriation was -just the River and Harbor bill of that government for the grip it -took on the treasury and the chance it afforded for skinning the -surplus. So I had privately concluded to touch the treasury itself -for the king's-evil. I covered six-sevenths of the appropriation -into the treasury a week before starting from Camelot on my -adventures, and ordered that the other seventh be inflated into -five-cent nickels and delivered into the hands of the head clerk -of the King's Evil Department; a nickel to take the place of each -gold coin, you see, and do its work for it. It might strain the -nickel some, but I judged it could stand it. As a rule, I do not -approve of watering stock, but I considered it square enough -in this case, for it was just a gift, anyway. Of course, you can -water a gift as much as you want to; and I generally do. The old -gold and silver coins of the country were of ancient and unknown -origin, as a rule, but some of them were Roman; they were ill-shapen, -and seldom rounder than a moon that is a week past the full; they -were hammered, not minted, and they were so worn with use that -the devices upon them were as illegible as blisters, and looked -like them. I judged that a sharp, bright new nickel, with a -first-rate likeness of the king on one side of it and Guenever -on the other, and a blooming pious motto, would take the tuck out -of scrofula as handy as a nobler coin and please the scrofulous -fancy more; and I was right. This batch was the first it was -tried on, and it worked to a charm. The saving in expense was -a notable economy. You will see that by these figures: We touched -a trifle over 700 of the 800 patients; at former rates, this would -have cost the government about $240; at the new rate we pulled -through for about $35, thus saving upward of $200 at one swoop. -To appreciate the full magnitude of this stroke, consider these -other figures: the annual expenses of a national government amount -to the equivalent of a contribution of three days' average wages of -every individual of the population, counting every individual as -if he were a man. If you take a nation of 60,000,000, where average -wages are $2 per day, three days' wages taken from each individual -will provide $360,000,000 and pay the government's expenses. In my -day, in my own country, this money was collected from imposts, -and the citizen imagined that the foreign importer paid it, and it -made him comfortable to think so; whereas, in fact, it was paid -by the American people, and was so equally and exactly distributed -among them that the annual cost to the 100-millionaire and the -annual cost to the sucking child of the day-laborer was precisely -the same--each paid $6. Nothing could be equaler than that, -I reckon. Well, Scotland and Ireland were tributary to Arthur, -and the united populations of the British Islands amounted to -something less than 1,000,000. A mechanic's average wage was -3 cents a day, when he paid his own keep. By this rule the national -government's expenses were $90,000 a year, or about $250 a day. -Thus, by the substitution of nickels for gold on a king's-evil -day, I not only injured no one, dissatisfied no one, but pleased -all concerned and saved four-fifths of that day's national expense -into the bargain--a saving which would have been the equivalent -of $800,000 in my day in America. In making this substitution -I had drawn upon the wisdom of a very remote source--the wisdom -of my boyhood--for the true statesman does not despise any wisdom, -howsoever lowly may be its origin: in my boyhood I had always -saved my pennies and contributed buttons to the foreign missionary -cause. The buttons would answer the ignorant savage as well as -the coin, the coin would answer me better than the buttons; all -hands were happy and nobody hurt. - -Marinel took the patients as they came. He examined the candidate; -if he couldn't qualify he was warned off; if he could he was passed -along to the king. A priest pronounced the words, "They shall -lay their hands on the sick, and they shall recover." Then the king -stroked the ulcers, while the reading continued; finally, the -patient graduated and got his nickel--the king hanging it around -his neck himself--and was dismissed. Would you think that that -would cure? It certainly did. Any mummery will cure if the -patient's faith is strong in it. Up by Astolat there was a chapel -where the Virgin had once appeared to a girl who used to herd -geese around there--the girl said so herself--and they built the -chapel upon that spot and hung a picture in it representing the -occurrence--a picture which you would think it dangerous for a sick -person to approach; whereas, on the contrary, thousands of the lame -and the sick came and prayed before it every year and went away -whole and sound; and even the well could look upon it and live. -Of course, when I was told these things I did not believe them; -but when I went there and saw them I had to succumb. I saw the -cures effected myself; and they were real cures and not questionable. -I saw cripples whom I had seen around Camelot for years on crutches, -arrive and pray before that picture, and put down their crutches -and walk off without a limp. There were piles of crutches there -which had been left by such people as a testimony. - -In other places people operated on a patient's mind, without saying -a word to him, and cured him. In others, experts assembled patients -in a room and prayed over them, and appealed to their faith, and -those patients went away cured. Wherever you find a king who can't -cure the king's-evil you can be sure that the most valuable -superstition that supports his throne--the subject's belief in -the divine appointment of his sovereign--has passed away. In my -youth the monarchs of England had ceased to touch for the evil, -but there was no occasion for this diffidence: they could have -cured it forty-nine times in fifty. - -Well, when the priest had been droning for three hours, and the -good king polishing the evidences, and the sick were still pressing -forward as plenty as ever, I got to feeling intolerably bored. -I was sitting by an open window not far from the canopy of state. -For the five hundredth time a patient stood forward to have his -repulsivenesses stroked; again those words were being droned out: -"they shall lay their hands on the sick"--when outside there rang -clear as a clarion a note that enchanted my soul and tumbled -thirteen worthless centuries about my ears: "Camelot _Weekly -Hosannah and Literary Volcano!_--latest irruption--only two cents ---all about the big miracle in the Valley of Holiness!" One greater -than kings had arrived--the newsboy. But I was the only person -in all that throng who knew the meaning of this mighty birth, and -what this imperial magician was come into the world to do. - -I dropped a nickel out of the window and got my paper; the -Adam-newsboy of the world went around the corner to get my change; -is around the corner yet. It was delicious to see a newspaper -again, yet I was conscious of a secret shock when my eye fell upon -the first batch of display head-lines. I had lived in a clammy -atmosphere of reverence, respect, deference, so long that they -sent a quivery little cold wave through me: - - - HIGH TIMES IN THE VALLEY - - OF HOLINESS! - - ---- - - THE WATER-WORKS CORKED! - - ---- - - BRER MERLIN WORKS HIS ARTS, BUT GETS - LEFT? - - ---- - - But the Boss scores on his first Innings! - - ---- - - The Miraculous Well Uncorked amid - awful outbursts of - - INFERNAL FIRE AND SMOKE - ATHUNDER! - - ---- - - THE BUZZARD-ROOST ASTONISHED! - - ---- - - UNPARALLELED REJOIBINGS! - - ---and so on, and so on. Yes, it was too loud. Once I could have -enjoyed it and seen nothing out of the way about it, but now its -note was discordant. It was good Arkansas journalism, but this -was not Arkansas. Moreover, the next to the last line was calculated -to give offense to the hermits, and perhaps lose us their advertising. -Indeed, there was too lightsome a tone of flippancy all through -the paper. It was plain I had undergone a considerable change -without noticing it. I found myself unpleasantly affected by -pert little irreverencies which would have seemed but proper and -airy graces of speech at an earlier period of my life. There was an -abundance of the following breed of items, and they discomforted me: - - LOCAL SMOKE AND CINDERS. - - Sir Launcelot met up with old King - Agrivance of Ireland unexpectedly last - weok over on the moor south of Sir - Balmoral le Merveilleuse's hog dasture. - The widow has been notified. - - Expedition No. 3 will start adout the - first of mext month on a search f8r Sir - Sagramour le Desirous. It is in com- - and of the renowned Knight of the Red - Lawns, assissted by Sir Persant of Inde, - who is compete9t. intelligent, courte- - ous, and in every way a brick, and fur- - tHer assisted by Sir Palamides the Sara- - cen, who is no huckleberry hinself. - This is no pic-nic, these boys mean - busine&s. - - The readers of the Hosannah will re- - gret to learn that the hadndsome and - popular Sir Charolais of Gaul, who dur- - ing his four weeks' stay at the Bull and - Halibut, this city, has won every heart - by his polished manners and elegant - cPnversation, will pUll out to-day for - home. Give us another call, Charley! - - The bdsiness end of the funeral of - the late Sir Dalliance the duke's son of - Cornwall, killed in an encounter with - the Giant of the Knotted Bludgeon last - Tuesday on the borders of the Plain of - Enchantment was in the hands of the - ever affable and efficient Mumble, - prince of un3ertakers, then whom there - exists none by whom it were a more - satisfying pleasure to have the last sad - offices performed. Give him a trial. - - The cordial thanks of the Hosannah - office are due, from editor down to - devil, to the ever courteous and thought- - ful Lord High Stew d of the Palace's - Third Assistant V t for several sau- - ceTs of ice crEam a quality calculated - to make the ey of the recipients hu- - mid with grt ude; and it done it. - When this administration wants to - chalk up a desirable name for early - promotion, the Hosannah would like a - chance to sudgest. - - The Demoiselle Irene Dewlap, of - South Astolat, is visiting her uncle, the - popular host of the Cattlemen's Board- - ing Ho&se, Liver Lane, this city. - - Young Barker the bellows-mender is - hoMe again, and looks much improved - by his vacation round-up among the out- - lying smithies. See his ad. - -Of course it was good enough journalism for a beginning; I knew -that quite well, and yet it was somehow disappointing. The -"Court Circular" pleased me better; indeed, its simple and dignified -respectfulness was a distinct refreshment to me after all those -disgraceful familiarities. But even it could have been improved. -Do what one may, there is no getting an air of variety into a court -circular, I acknowledge that. There is a profound monotonousness -about its facts that baffles and defeats one's sincerest efforts -to make them sparkle and enthuse. The best way to manage--in fact, -the only sensible way--is to disguise repetitiousness of fact under -variety of form: skin your fact each time and lay on a new cuticle -of words. It deceives the eye; you think it is a new fact; it -gives you the idea that the court is carrying on like everything; -this excites you, and you drain the whole column, with a good -appetite, and perhaps never notice that it's a barrel of soup made -out of a single bean. Clarence's way was good, it was simple, -it was dignified, it was direct and business-like; all I say is, -it was not the best way: - - COURT CIRCULAR. - - On Monday, the king rode in the park. - " Tuesday, " " " - " Wendesday " " " - " Thursday " " " - " Friday, " " " - " Saturday " " " - " Sunday, " " " - - -However, take the paper by and large, I was vastly pleased with it. -Little crudities of a mechanical sort were observable here and -there, but there were not enough of them to amount to anything, -and it was good enough Arkansas proof-reading, anyhow, and better -than was needed in Arthur's day and realm. As a rule, the grammar -was leaky and the construction more or less lame; but I did not -much mind these things. They are common defects of my own, and -one mustn't criticise other people on grounds where he can't stand -perpendicular himself. - -I was hungry enough for literature to want to take down the whole -paper at this one meal, but I got only a few bites, and then had -to postpone, because the monks around me besieged me so with eager -questions: What is this curious thing? What is it for? Is it a -handkerchief?--saddle blanket?--part of a shirt? What is it made of? -How thin it is, and how dainty and frail; and how it rattles. -Will it wear, do you think, and won't the rain injure it? Is it -writing that appears on it, or is it only ornamentation? They -suspected it was writing, because those among them who knew how -to read Latin and had a smattering of Greek, recognized some of -the letters, but they could make nothing out of the result as a -whole. I put my information in the simplest form I could: - -"It is a public journal; I will explain what that is, another time. -It is not cloth, it is made of paper; some time I will explain -what paper is. The lines on it are reading matter; and not written -by hand, but printed; by and by I will explain what printing is. -A thousand of these sheets have been made, all exactly like this, -in every minute detail--they can't be told apart." Then they all -broke out with exclamations of surprise and admiration: - -"A thousand! Verily a mighty work--a year's work for many men." - -"No--merely a day's work for a man and a boy." - -They crossed themselves, and whiffed out a protective prayer or two. - -"Ah-h--a miracle, a wonder! Dark work of enchantment." - -I let it go at that. Then I read in a low voice, to as many as -could crowd their shaven heads within hearing distance, part of -the account of the miracle of the restoration of the well, and -was accompanied by astonished and reverent ejaculations all through: -"Ah-h-h!" "How true!" "Amazing, amazing!" "These be the very -haps as they happened, in marvelous exactness!" And might they -take this strange thing in their hands, and feel of it and examine -it?--they would be very careful. Yes. So they took it, handling -it as cautiously and devoutly as if it had been some holy thing -come from some supernatural region; and gently felt of its texture, -caressed its pleasant smooth surface with lingering touch, and -scanned the mysterious characters with fascinated eyes. These -grouped bent heads, these charmed faces, these speaking eyes ---how beautiful to me! For was not this my darling, and was not -all this mute wonder and interest and homage a most eloquent -tribute and unforced compliment to it? I knew, then, how a mother -feels when women, whether strangers or friends, take her new baby, -and close themselves about it with one eager impulse, and bend -their heads over it in a tranced adoration that makes all the rest -of the universe vanish out of their consciousness and be as if it -were not, for that time. I knew how she feels, and that there is -no other satisfied ambition, whether of king, conqueror, or poet, -that ever reaches half-way to that serene far summit or yields half -so divine a contentment. - -During all the rest of the seance my paper traveled from group to -group all up and down and about that huge hall, and my happy eye -was upon it always, and I sat motionless, steeped in satisfaction, -drunk with enjoyment. Yes, this was heaven; I was tasting it once, -if I might never taste it more. - - - -CHAPTER XXVII - -THE YANKEE AND THE KING TRAVEL INCOGNITO - -About bedtime I took the king to my private quarters to cut his -hair and help him get the hang of the lowly raiment he was to wear. -The high classes wore their hair banged across the forehead but -hanging to the shoulders the rest of the way around, whereas the -lowest ranks of commoners were banged fore and aft both; the slaves -were bangless, and allowed their hair free growth. So I inverted -a bowl over his head and cut away all the locks that hung below it. -I also trimmed his whiskers and mustache until they were only -about a half-inch long; and tried to do it inartistically, and -succeeded. It was a villainous disfigurement. When he got his -lubberly sandals on, and his long robe of coarse brown linen cloth, -which hung straight from his neck to his ankle-bones, he was no -longer the comeliest man in his kingdom, but one of the unhandsomest -and most commonplace and unattractive. We were dressed and barbered -alike, and could pass for small farmers, or farm bailiffs, or -shepherds, or carters; yes, or for village artisans, if we chose, -our costume being in effect universal among the poor, because of -its strength and cheapness. I don't mean that it was really cheap -to a very poor person, but I do mean that it was the cheapest -material there was for male attire--manufactured material, you -understand. - -We slipped away an hour before dawn, and by broad sun-up had made -eight or ten miles, and were in the midst of a sparsely settled -country. I had a pretty heavy knapsack; it was laden with -provisions--provisions for the king to taper down on, till he -could take to the coarse fare of the country without damage. - -I found a comfortable seat for the king by the roadside, and then -gave him a morsel or two to stay his stomach with. Then I said -I would find some water for him, and strolled away. Part of my -project was to get out of sight and sit down and rest a little -myself. It had always been my custom to stand when in his presence; -even at the council board, except upon those rare occasions when -the sitting was a very long one, extending over hours; then I had -a trifling little backless thing which was like a reversed culvert -and was as comfortable as the toothache. I didn't want to break -him in suddenly, but do it by degrees. We should have to sit -together now when in company, or people would notice; but it would -not be good politics for me to be playing equality with him when -there was no necessity for it. - -I found the water some three hundred yards away, and had been -resting about twenty minutes, when I heard voices. That is all -right, I thought--peasants going to work; nobody else likely to be -stirring this early. But the next moment these comers jingled into -sight around a turn of the road--smartly clad people of quality, -with luggage-mules and servants in their train! I was off like -a shot, through the bushes, by the shortest cut. For a while it -did seem that these people would pass the king before I could -get to him; but desperation gives you wings, you know, and I canted -my body forward, inflated my breast, and held my breath and flew. -I arrived. And in plenty good enough time, too. - -"Pardon, my king, but it's no time for ceremony--jump! Jump to -your feet--some quality are coming!" - -"Is that a marvel? Let them come." - -"But my liege! You must not be seen sitting. Rise!--and stand in -humble posture while they pass. You are a peasant, you know." - -"True--I had forgot it, so lost was I in planning of a huge war -with Gaul"--he was up by this time, but a farm could have got up -quicker, if there was any kind of a boom in real estate--"and -right-so a thought came randoming overthwart this majestic dream -the which--" - -"A humbler attitude, my lord the king--and quick! Duck your head! ---more!--still more!--droop it!" - -He did his honest best, but lord, it was no great things. He looked -as humble as the leaning tower at Pisa. It is the most you could -say of it. Indeed, it was such a thundering poor success that -it raised wondering scowls all along the line, and a gorgeous -flunkey at the tail end of it raised his whip; but I jumped in -time and was under it when it fell; and under cover of the volley -of coarse laughter which followed, I spoke up sharply and warned -the king to take no notice. He mastered himself for the moment, -but it was a sore tax; he wanted to eat up the procession. I said: - -"It would end our adventures at the very start; and we, being -without weapons, could do nothing with that armed gang. If we -are going to succeed in our emprise, we must not only look the -peasant but act the peasant." - -"It is wisdom; none can gainsay it. Let us go on, Sir Boss. -I will take note and learn, and do the best I may." - -He kept his word. He did the best he could, but I've seen better. -If you have ever seen an active, heedless, enterprising child -going diligently out of one mischief and into another all day -long, and an anxious mother at its heels all the while, and just -saving it by a hair from drowning itself or breaking its neck with -each new experiment, you've seen the king and me. - -If I could have foreseen what the thing was going to be like, -I should have said, No, if anybody wants to make his living -exhibiting a king as a peasant, let him take the layout; I can -do better with a menagerie, and last longer. And yet, during -the first three days I never allowed him to enter a hut or other -dwelling. If he could pass muster anywhere during his early -novitiate it would be in small inns and on the road; so to these -places we confined ourselves. Yes, he certainly did the best he -could, but what of that? He didn't improve a bit that I could see. - -He was always frightening me, always breaking out with fresh -astonishers, in new and unexpected places. Toward evening on -the second day, what does he do but blandly fetch out a dirk -from inside his robe! - -"Great guns, my liege, where did you get that?" - -"From a smuggler at the inn, yester eve." - -"What in the world possessed you to buy it?" - -"We have escaped divers dangers by wit--thy wit--but I have -bethought me that it were but prudence if I bore a weapon, too. -Thine might fail thee in some pinch." - -"But people of our condition are not allowed to carry arms. What -would a lord say--yes, or any other person of whatever condition ---if he caught an upstart peasant with a dagger on his person?" - -It was a lucky thing for us that nobody came along just then. -I persuaded him to throw the dirk away; and it was as easy as -persuading a child to give up some bright fresh new way of killing -itself. We walked along, silent and thinking. Finally the king said: - -"When ye know that I meditate a thing inconvenient, or that hath -a peril in it, why do you not warn me to cease from that project?" - -It was a startling question, and a puzzler. I didn't quite know -how to take hold of it, or what to say, and so, of course, I ended -by saying the natural thing: - -"But, sire, how can I know what your thoughts are?" - -The king stopped dead in his tracks, and stared at me. - -"I believed thou wert greater than Merlin; and truly in magic -thou art. But prophecy is greater than magic. Merlin is a prophet." - -I saw I had made a blunder. I must get back my lost ground. -After a deep reflection and careful planning, I said: - -"Sire, I have been misunderstood. I will explain. There are two -kinds of prophecy. One is the gift to foretell things that are but -a little way off, the other is the gift to foretell things that -are whole ages and centuries away. Which is the mightier gift, -do you think?" - -"Oh, the last, most surely!" - -"True. Does Merlin possess it?" - -"Partly, yes. He foretold mysteries about my birth and future -kingship that were twenty years away." - -"Has he ever gone beyond that?" - -"He would not claim more, I think." - -"It is probably his limit. All prophets have their limit. The limit -of some of the great prophets has been a hundred years." - -"These are few, I ween." - -"There have been two still greater ones, whose limit was four -hundred and six hundred years, and one whose limit compassed -even seven hundred and twenty." - -"Gramercy, it is marvelous!" - -"But what are these in comparison with me? They are nothing." - -"What? Canst thou truly look beyond even so vast a stretch -of time as--" - -"Seven hundred years? My liege, as clear as the vision of an eagle -does my prophetic eye penetrate and lay bare the future of this -world for nearly thirteen centuries and a half!" - -My land, you should have seen the king's eyes spread slowly open, -and lift the earth's entire atmosphere as much as an inch! That -settled Brer Merlin. One never had any occasion to prove his -facts, with these people; all he had to do was to state them. It -never occurred to anybody to doubt the statement. - -"Now, then," I continued, "I _could_ work both kinds of prophecy ---the long and the short--if I chose to take the trouble to keep -in practice; but I seldom exercise any but the long kind, because -the other is beneath my dignity. It is properer to Merlin's sort ---stump-tail prophets, as we call them in the profession. Of course, -I whet up now and then and flirt out a minor prophecy, but not -often--hardly ever, in fact. You will remember that there was -great talk, when you reached the Valley of Holiness, about my -having prophesied your coming and the very hour of your arrival, -two or three days beforehand." - -"Indeed, yes, I mind it now." - -"Well, I could have done it as much as forty times easier, and -piled on a thousand times more detail into the bargain, if it had -been five hundred years away instead of two or three days." - -"How amazing that it should be so!" - -"Yes, a genuine expert can always foretell a thing that is five -hundred years away easier than he can a thing that's only five -hundred seconds off." - -"And yet in reason it should clearly be the other way; it should -be five hundred times as easy to foretell the last as the first, -for, indeed, it is so close by that one uninspired might almost -see it. In truth, the law of prophecy doth contradict the likelihoods, -most strangely making the difficult easy, and the easy difficult." - -It was a wise head. A peasant's cap was no safe disguise for it; -you could know it for a king's under a diving-bell, if you could -hear it work its intellect. - -I had a new trade now, and plenty of business in it. The king -was as hungry to find out everything that was going to happen -during the next thirteen centuries as if he were expecting to live -in them. From that time out, I prophesied myself bald-headed -trying to supply the demand. I have done some indiscreet things in -my day, but this thing of playing myself for a prophet was the -worst. Still, it had its ameliorations. A prophet doesn't have -to have any brains. They are good to have, of course, for the -ordinary exigencies of life, but they are no use in professional -work. It is the restfulest vocation there is. When the spirit of -prophecy comes upon you, you merely cake your intellect and lay it -off in a cool place for a rest, and unship your jaw and leave it -alone; it will work itself: the result is prophecy. - -Every day a knight-errant or so came along, and the sight of them -fired the king's martial spirit every time. He would have forgotten -himself, sure, and said something to them in a style a suspicious -shade or so above his ostensible degree, and so I always got him -well out of the road in time. Then he would stand and look with -all his eyes; and a proud light would flash from them, and his -nostrils would inflate like a war-horse's, and I knew he was -longing for a brush with them. But about noon of the third day -I had stopped in the road to take a precaution which had been -suggested by the whip-stroke that had fallen to my share two days -before; a precaution which I had afterward decided to leave untaken, -I was so loath to institute it; but now I had just had a fresh -reminder: while striding heedlessly along, with jaw spread and -intellect at rest, for I was prophesying, I stubbed my toe and -fell sprawling. I was so pale I couldn't think for a moment; -then I got softly and carefully up and unstrapped my knapsack. -I had that dynamite bomb in it, done up in wool in a box. It was -a good thing to have along; the time would come when I could do -a valuable miracle with it, maybe, but it was a nervous thing -to have about me, and I didn't like to ask the king to carry it. -Yet I must either throw it away or think up some safe way to get -along with its society. I got it out and slipped it into my scrip, -and just then here came a couple of knights. The king stood, -stately as a statue, gazing toward them--had forgotten himself again, -of course--and before I could get a word of warning out, it was -time for him to skip, and well that he did it, too. He supposed -they would turn aside. Turn aside to avoid trampling peasant dirt -under foot? When had he ever turned aside himself--or ever had -the chance to do it, if a peasant saw him or any other noble knight -in time to judiciously save him the trouble? The knights paid -no attention to the king at all; it was his place to look out -himself, and if he hadn't skipped he would have been placidly -ridden down, and laughed at besides. - -The king was in a flaming fury, and launched out his challenge -and epithets with a most royal vigor. The knights were some little -distance by now. They halted, greatly surprised, and turned in -their saddles and looked back, as if wondering if it might be worth -while to bother with such scum as we. Then they wheeled and -started for us. Not a moment must be lost. I started for _them_. -I passed them at a rattling gait, and as I went by I flung out a -hair-lifting soul-scorching thirteen-jointed insult which made -the king's effort poor and cheap by comparison. I got it out of -the nineteenth century where they know how. They had such headway -that they were nearly to the king before they could check up; -then, frantic with rage, they stood up their horses on their hind -hoofs and whirled them around, and the next moment here they came, -breast to breast. I was seventy yards off, then, and scrambling up -a great bowlder at the roadside. When they were within thirty -yards of me they let their long lances droop to a level, depressed -their mailed heads, and so, with their horse-hair plumes streaming -straight out behind, most gallant to see, this lightning express -came tearing for me! When they were within fifteen yards, I sent -that bomb with a sure aim, and it struck the ground just under -the horses' noses. - -Yes, it was a neat thing, very neat and pretty to see. It resembled -a steamboat explosion on the Mississippi; and during the next -fifteen minutes we stood under a steady drizzle of microscopic -fragments of knights and hardware and horse-flesh. I say we, -for the king joined the audience, of course, as soon as he had got -his breath again. There was a hole there which would afford steady -work for all the people in that region for some years to come ---in trying to explain it, I mean; as for filling it up, that service -would be comparatively prompt, and would fall to the lot of a -select few--peasants of that seignory; and they wouldn't get -anything for it, either. - -But I explained it to the king myself. I said it was done with a -dynamite bomb. This information did him no damage, because it -left him as intelligent as he was before. However, it was a noble -miracle, in his eyes, and was another settler for Merlin. I thought -it well enough to explain that this was a miracle of so rare a sort -that it couldn't be done except when the atmospheric conditions -were just right. Otherwise he would be encoring it every time we -had a good subject, and that would be inconvenient, because I -hadn't any more bombs along. - - - -CHAPTER XXVIII - -DRILLING THE KING - -On the morning of the fourth day, when it was just sunrise, and we -had been tramping an hour in the chill dawn, I came to a resolution: -the king _must_ be drilled; things could not go on so, he must be -taken in hand and deliberately and conscientiously drilled, or we -couldn't ever venture to enter a dwelling; the very cats would know -this masquerader for a humbug and no peasant. So I called a halt -and said: - -"Sire, as between clothes and countenance, you are all right, there -is no discrepancy; but as between your clothes and your bearing, -you are all wrong, there is a most noticeable discrepancy. Your -soldierly stride, your lordly port--these will not do. You stand -too straight, your looks are too high, too confident. The cares -of a kingdom do not stoop the shoulders, they do not droop the chin, -they do not depress the high level of the eye-glance, they do not -put doubt and fear in the heart and hang out the signs of them -in slouching body and unsure step. It is the sordid cares of -the lowly born that do these things. You must learn the trick; -you must imitate the trademarks of poverty, misery, oppression, -insult, and the other several and common inhumanities that sap -the manliness out of a man and make him a loyal and proper and -approved subject and a satisfaction to his masters, or the very -infants will know you for better than your disguise, and we shall go -to pieces at the first hut we stop at. Pray try to walk like this." - -The king took careful note, and then tried an imitation. - -"Pretty fair--pretty fair. Chin a little lower, please--there, very -good. Eyes too high; pray don't look at the horizon, look at the -ground, ten steps in front of you. Ah--that is better, that is -very good. Wait, please; you betray too much vigor, too much -decision; you want more of a shamble. Look at me, please--this is -what I mean.... Now you are getting it; that is the idea--at least, -it sort of approaches it.... Yes, that is pretty fair. _But!_ -There is a great big something wanting, I don't quite know what -it is. Please walk thirty yards, so that I can get a perspective -on the thing.... Now, then--your head's right, speed's right, -shoulders right, eyes right, chin right, gait, carriage, general -style right--everything's right! And yet the fact remains, the -aggregate's wrong. The account don't balance. Do it again, -please.... _Now_ I think I begin to see what it is. Yes, I've -struck it. You see, the genuine spiritlessness is wanting; that's -what's the trouble. It's all _amateur_--mechanical details all -right, almost to a hair; everything about the delusion perfect, -except that it don't delude." - -"What, then, must one do, to prevail?" - -"Let me think... I can't seem to quite get at it. In fact, there -isn't anything that can right the matter but practice. This is -a good place for it: roots and stony ground to break up your -stately gait, a region not liable to interruption, only one field -and one hut in sight, and they so far away that nobody could -see us from there. It will be well to move a little off the road -and put in the whole day drilling you, sire." - -After the drill had gone on a little while, I said: - -"Now, sire, imagine that we are at the door of the hut yonder, -and the family are before us. Proceed, please--accost the head -of the house." - -The king unconsciously straightened up like a monument, and said, -with frozen austerity: - -"Varlet, bring a seat; and serve to me what cheer ye have." - -"Ah, your grace, that is not well done." - -"In what lacketh it?" - -"These people do not call _each other_ varlets." - -"Nay, is that true?" - -"Yes; only those above them call them so." - -"Then must I try again. I will call him villein." - -"No-no; for he may be a freeman." - -"Ah--so. Then peradventure I should call him goodman." - -"That would answer, your grace, but it would be still better if -you said friend, or brother." - -"Brother!--to dirt like that?" - -"Ah, but _we_ are pretending to be dirt like that, too." - -"It is even true. I will say it. Brother, bring a seat, and -thereto what cheer ye have, withal. Now 'tis right." - -"Not quite, not wholly right. You have asked for one, not _us_ ---for one, not both; food for one, a seat for one." - -The king looked puzzled--he wasn't a very heavy weight, intellectually. -His head was an hour-glass; it could stow an idea, but it had to do -it a grain at a time, not the whole idea at once. - -"Would _you_ have a seat also--and sit?" - -"If I did not sit, the man would perceive that we were only pretending -to be equals--and playing the deception pretty poorly, too." - -"It is well and truly said! How wonderful is truth, come it in -whatsoever unexpected form it may! Yes, he must bring out seats -and food for both, and in serving us present not ewer and napkin -with more show of respect to the one than to the other." - -"And there is even yet a detail that needs correcting. He must -bring nothing outside; we will go in--in among the dirt, and -possibly other repulsive things,--and take the food with the -household, and after the fashion of the house, and all on equal -terms, except the man be of the serf class; and finally, there -will be no ewer and no napkin, whether he be serf or free. Please -walk again, my liege. There--it is better--it is the best yet; -but not perfect. The shoulders have known no ignobler burden -than iron mail, and they will not stoop." - -"Give me, then, the bag. I will learn the spirit that goeth -with burdens that have not honor. It is the spirit that stoopeth -the shoulders, I ween, and not the weight; for armor is heavy, -yet it is a proud burden, and a man standeth straight in it.... -Nay, but me no buts, offer me no objections. I will have the thing. -Strap it upon my back." - -He was complete now with that knapsack on, and looked as little -like a king as any man I had ever seen. But it was an obstinate -pair of shoulders; they could not seem to learn the trick of -stooping with any sort of deceptive naturalness. The drill went on, -I prompting and correcting: - -"Now, make believe you are in debt, and eaten up by relentless -creditors; you are out of work--which is horse-shoeing, let us -say--and can get none; and your wife is sick, your children are -crying because they are hungry--" - -And so on, and so on. I drilled him as representing in turn all -sorts of people out of luck and suffering dire privations and -misfortunes. But lord, it was only just words, words--they meant -nothing in the world to him, I might just as well have whistled. -Words realize nothing, vivify nothing to you, unless you have -suffered in your own person the thing which the words try to -describe. There are wise people who talk ever so knowingly and -complacently about "the working classes," and satisfy themselves -that a day's hard intellectual work is very much harder than -a day's hard manual toil, and is righteously entitled to much -bigger pay. Why, they really think that, you know, because they -know all about the one, but haven't tried the other. But I know -all about both; and so far as I am concerned, there isn't money -enough in the universe to hire me to swing a pickaxe thirty days, -but I will do the hardest kind of intellectual work for just as -near nothing as you can cipher it down--and I will be satisfied, too. - -Intellectual "work" is misnamed; it is a pleasure, a dissipation, -and is its own highest reward. The poorest paid architect, -engineer, general, author, sculptor, painter, lecturer, advocate, -legislator, actor, preacher, singer is constructively in heaven -when he is at work; and as for the musician with the fiddle-bow -in his hand who sits in the midst of a great orchestra with the -ebbing and flowing tides of divine sound washing over him--why, -certainly, he is at work, if you wish to call it that, but lord, -it's a sarcasm just the same. The law of work does seem utterly -unfair--but there it is, and nothing can change it: the higher -the pay in enjoyment the worker gets out of it, the higher shall -be his pay in cash, also. And it's also the very law of those -transparent swindles, transmissible nobility and kingship. - - - -CHAPTER XXIX - -THE SMALLPOX HUT - -When we arrived at that hut at mid-afternoon, we saw no signs -of life about it. The field near by had been denuded of its crop -some time before, and had a skinned look, so exhaustively had -it been harvested and gleaned. Fences, sheds, everything had a -ruined look, and were eloquent of poverty. No animal was around -anywhere, no living thing in sight. The stillness was awful, it -was like the stillness of death. The cabin was a one-story one, -whose thatch was black with age, and ragged from lack of repair. - -The door stood a trifle ajar. We approached it stealthily--on tiptoe -and at half-breath--for that is the way one's feeling makes him do, -at such a time. The king knocked. We waited. No answer. Knocked -again. No answer. I pushed the door softly open and looked in. -I made out some dim forms, and a woman started up from the ground -and stared at me, as one does who is wakened from sleep. Presently -she found her voice: - -"Have mercy!" she pleaded. "All is taken, nothing is left." - -"I have not come to take anything, poor woman." - -"You are not a priest?" - -"No." - -"Nor come not from the lord of the manor?" - -"No, I am a stranger." - -"Oh, then, for the fear of God, who visits with misery and death -such as be harmless, tarry not here, but fly! This place is under -his curse--and his Church's." - -"Let me come in and help you--you are sick and in trouble." - -I was better used to the dim light now. I could see her hollow -eyes fixed upon me. I could see how emaciated she was. - -"I tell you the place is under the Church's ban. Save yourself ---and go, before some straggler see thee here, and report it." - -"Give yourself no trouble about me; I don't care anything for the -Church's curse. Let me help you." - -"Now all good spirits--if there be any such--bless thee for that -word. Would God I had a sup of water!--but hold, hold, forget -I said it, and fly; for there is that here that even he that -feareth not the Church must fear: this disease whereof we die. -Leave us, thou brave, good stranger, and take with thee such -whole and sincere blessing as them that be accursed can give." - -But before this I had picked up a wooden bowl and was rushing -past the king on my way to the brook. It was ten yards away. -When I got back and entered, the king was within, and was opening -the shutter that closed the window-hole, to let in air and light. -The place was full of a foul stench. I put the bowl to the woman's -lips, and as she gripped it with her eager talons the shutter came -open and a strong light flooded her face. Smallpox! - -I sprang to the king, and said in his ear: - -"Out of the door on the instant, sire! the woman is dying of that -disease that wasted the skirts of Camelot two years ago." - -He did not budge. - -"Of a truth I shall remain--and likewise help." - -I whispered again: - -"King, it must not be. You must go." - -"Ye mean well, and ye speak not unwisely. But it were shame that -a king should know fear, and shame that belted knight should -withhold his hand where be such as need succor. Peace, I will -not go. It is you who must go. The Church's ban is not upon me, -but it forbiddeth you to be here, and she will deal with you with -a heavy hand an word come to her of your trespass." - -It was a desperate place for him to be in, and might cost him his -life, but it was no use to argue with him. If he considered his -knightly honor at stake here, that was the end of argument; he -would stay, and nothing could prevent it; I was aware of that. -And so I dropped the subject. The woman spoke: - -"Fair sir, of your kindness will ye climb the ladder there, -and bring me news of what ye find? Be not afraid to report, -for times can come when even a mother's heart is past breaking ---being already broke." - -"Abide," said the king, "and give the woman to eat. I will go." -And he put down the knapsack. - -I turned to start, but the king had already started. He halted, -and looked down upon a man who lay in a dim light, and had not -noticed us thus far, or spoken. - -"Is it your husband?" the king asked. - -"Yes." - -"Is he asleep?" - -"God be thanked for that one charity, yes--these three hours. -Where shall I pay to the full, my gratitude! for my heart is -bursting with it for that sleep he sleepeth now." - -I said: - -"We will be careful. We will not wake him." - -"Ah, no, that ye will not, for he is dead." - -"Dead?" - -"Yes, what triumph it is to know it! None can harm him, none -insult him more. He is in heaven now, and happy; or if not there, -he bides in hell and is content; for in that place he will find -neither abbot nor yet bishop. We were boy and girl together; we -were man and wife these five and twenty years, and never separated -till this day. Think how long that is to love and suffer together. -This morning was he out of his mind, and in his fancy we were -boy and girl again and wandering in the happy fields; and so in -that innocent glad converse wandered he far and farther, still -lightly gossiping, and entered into those other fields we know -not of, and was shut away from mortal sight. And so there was -no parting, for in his fancy I went with him; he knew not but -I went with him, my hand in his--my young soft hand, not this -withered claw. Ah, yes, to go, and know it not; to separate and -know it not; how could one go peace--fuller than that? It was -his reward for a cruel life patiently borne." - -There was a slight noise from the direction of the dim corner where -the ladder was. It was the king descending. I could see that he -was bearing something in one arm, and assisting himself with the -other. He came forward into the light; upon his breast lay a -slender girl of fifteen. She was but half conscious; she was dying -of smallpox. Here was heroism at its last and loftiest possibility, -its utmost summit; this was challenging death in the open field -unarmed, with all the odds against the challenger, no reward set -upon the contest, and no admiring world in silks and cloth of gold -to gaze and applaud; and yet the king's bearing was as serenely -brave as it had always been in those cheaper contests where knight -meets knight in equal fight and clothed in protecting steel. He -was great now; sublimely great. The rude statues of his ancestors -in his palace should have an addition--I would see to that; and it -would not be a mailed king killing a giant or a dragon, like the -rest, it would be a king in commoner's garb bearing death in his -arms that a peasant mother might look her last upon her child and -be comforted. - -He laid the girl down by her mother, who poured out endearments -and caresses from an overflowing heart, and one could detect a -flickering faint light of response in the child's eyes, but that -was all. The mother hung over her, kissing her, petting her, and -imploring her to speak, but the lips only moved and no sound came. -I snatched my liquor flask from my knapsack, but the woman forbade -me, and said: - -"No--she does not suffer; it is better so. It might bring her back -to life. None that be so good and kind as ye are would do her -that cruel hurt. For look you--what is left to live for? Her -brothers are gone, her father is gone, her mother goeth, the -Church's curse is upon her, and none may shelter or befriend her -even though she lay perishing in the road. She is desolate. I have -not asked you, good heart, if her sister be still on live, here -overhead; I had no need; ye had gone back, else, and not left -the poor thing forsaken--" - -"She lieth at peace," interrupted the king, in a subdued voice. - -"I would not change it. How rich is this day in happiness! Ah, -my Annis, thou shalt join thy sister soon--thou'rt on thy way, -and these be merciful friends that will not hinder." - -And so she fell to murmuring and cooing over the girl again, and -softly stroking her face and hair, and kissing her and calling her -by endearing names; but there was scarcely sign of response now -in the glazing eyes. I saw tears well from the king's eyes, and -trickle down his face. The woman noticed them, too, and said: - -"Ah, I know that sign: thou'st a wife at home, poor soul, and -you and she have gone hungry to bed, many's the time, that the -little ones might have your crust; you know what poverty is, and -the daily insults of your betters, and the heavy hand of the Church -and the king." - -The king winced under this accidental home-shot, but kept still; -he was learning his part; and he was playing it well, too, for -a pretty dull beginner. I struck up a diversion. I offered the -woman food and liquor, but she refused both. She would allow -nothing to come between her and the release of death. Then I slipped -away and brought the dead child from aloft, and laid it by her. -This broke her down again, and there was another scene that was -full of heartbreak. By and by I made another diversion, and beguiled -her to sketch her story. - -"Ye know it well yourselves, having suffered it--for truly none -of our condition in Britain escape it. It is the old, weary tale. -We fought and struggled and succeeded; meaning by success, that -we lived and did not die; more than that is not to be claimed. No -troubles came that we could not outlive, till this year brought -them; then came they all at once, as one might say, and overwhelmed -us. Years ago the lord of the manor planted certain fruit trees on -our farm; in the best part of it, too--a grievous wrong and shame--" - -"But it was his right," interrupted the king. - -"None denieth that, indeed; an the law mean anything, what is -the lord's is his, and what is mine is his also. Our farm was -ours by lease, therefore 'twas likewise his, to do with it as he -would. Some little time ago, three of those trees were found hewn -down. Our three grown sons ran frightened to report the crime. -Well, in his lordship's dungeon there they lie, who saith there -shall they lie and rot till they confess. They have naught to -confess, being innocent, wherefore there will they remain until -they die. Ye know that right well, I ween. Think how this left us; -a man, a woman and two children, to gather a crop that was planted -by so much greater force, yes, and protect it night and day from -pigeons and prowling animals that be sacred and must not be hurt -by any of our sort. When my lord's crop was nearly ready for -the harvest, so also was ours; when his bell rang to call us to -his fields to harvest his crop for nothing, he would not allow that -I and my two girls should count for our three captive sons, but -for only two of them; so, for the lacking one were we daily fined. -All this time our own crop was perishing through neglect; and so -both the priest and his lordship fined us because their shares -of it were suffering through damage. In the end the fines ate up -our crop--and they took it all; they took it all and made us harvest -it for them, without pay or food, and we starving. Then the worst -came when I, being out of my mind with hunger and loss of my boys, -and grief to see my husband and my little maids in rags and misery -and despair, uttered a deep blasphemy--oh! a thousand of them! ---against the Church and the Church's ways. It was ten days ago. -I had fallen sick with this disease, and it was to the priest -I said the words, for he was come to chide me for lack of due -humility under the chastening hand of God. He carried my trespass -to his betters; I was stubborn; wherefore, presently upon my head -and upon all heads that were dear to me, fell the curse of Rome. - -"Since that day we are avoided, shunned with horror. None has -come near this hut to know whether we live or not. The rest of us -were taken down. Then I roused me and got up, as wife and mother -will. It was little they could have eaten in any case; it was -less than little they had to eat. But there was water, and I gave -them that. How they craved it! and how they blessed it! But the -end came yesterday; my strength broke down. Yesterday was the -last time I ever saw my husband and this youngest child alive. -I have lain here all these hours--these ages, ye may say--listening, -listening for any sound up there that--" - -She gave a sharp quick glance at her eldest daughter, then cried -out, "Oh, my darling!" and feebly gathered the stiffening form -to her sheltering arms. She had recognized the death-rattle. - - - -CHAPTER XXX - -THE TRAGEDY OF THE MANOR-HOUSE - -At midnight all was over, and we sat in the presence of four -corpses. We covered them with such rags as we could find, and -started away, fastening the door behind us. Their home must be -these people's grave, for they could not have Christian burial, -or be admitted to consecrated ground. They were as dogs, wild -beasts, lepers, and no soul that valued its hope of eternal life -would throw it away by meddling in any sort with these rebuked and -smitten outcasts. - -We had not moved four steps when I caught a sound as of footsteps -upon gravel. My heart flew to my throat. We must not be seen -coming from that house. I plucked at the king's robe and we drew -back and took shelter behind the corner of the cabin. - -"Now we are safe," I said, "but it was a close call--so to speak. -If the night had been lighter he might have seen us, no doubt, -he seemed to be so near." - -"Mayhap it is but a beast and not a man at all." - -"True. But man or beast, it will be wise to stay here a minute -and let it get by and out of the way." - -"Hark! It cometh hither." - -True again. The step was coming toward us--straight toward the hut. -It must be a beast, then, and we might as well have saved our -trepidation. I was going to step out, but the king laid his hand -upon my arm. There was a moment of silence, then we heard a soft -knock on the cabin door. It made me shiver. Presently the knock -was repeated, and then we heard these words in a guarded voice: - -"Mother! Father! Open--we have got free, and we bring news to -pale your cheeks but glad your hearts; and we may not tarry, but -must fly! And--but they answer not. Mother! father!--" - -I drew the king toward the other end of the hut and whispered: - -"Come--now we can get to the road." - -The king hesitated, was going to demur; but just then we heard -the door give way, and knew that those desolate men were in the -presence of their dead. - -"Come, my liege! in a moment they will strike a light, and then -will follow that which it would break your heart to hear." - -He did not hesitate this time. The moment we were in the road -I ran; and after a moment he threw dignity aside and followed. -I did not want to think of what was happening in the hut--I couldn't -bear it; I wanted to drive it out of my mind; so I struck into the -first subject that lay under that one in my mind: - -"I have had the disease those people died of, and so have nothing -to fear; but if you have not had it also--" - -He broke in upon me to say he was in trouble, and it was his -conscience that was troubling him: - -"These young men have got free, they say--but _how_? It is not -likely that their lord hath set them free." - -"Oh, no, I make no doubt they escaped." - -"That is my trouble; I have a fear that this is so, and your -suspicion doth confirm it, you having the same fear." - -"I should not call it by that name though. I do suspect that they -escaped, but if they did, I am not sorry, certainly." - -"I am not sorry, I _think_--but--" - -"What is it? What is there for one to be troubled about?" - -"_If_ they did escape, then are we bound in duty to lay hands upon -them and deliver them again to their lord; for it is not seemly -that one of his quality should suffer a so insolent and high-handed -outrage from persons of their base degree." - -There it was again. He could see only one side of it. He was -born so, educated so, his veins were full of ancestral blood that -was rotten with this sort of unconscious brutality, brought down -by inheritance from a long procession of hearts that had each done -its share toward poisoning the stream. To imprison these men -without proof, and starve their kindred, was no harm, for they were -merely peasants and subject to the will and pleasure of their lord, -no matter what fearful form it might take; but for these men to -break out of unjust captivity was insult and outrage, and a thing -not to be countenanced by any conscientious person who knew his -duty to his sacred caste. - -I worked more than half an hour before I got him to change the -subject--and even then an outside matter did it for me. This was -a something which caught our eyes as we struck the summit of a -small hill--a red glow, a good way off. - -"That's a fire," said I. - -Fires interested me considerably, because I was getting a good -deal of an insurance business started, and was also training some -horses and building some steam fire-engines, with an eye to a paid -fire department by and by. The priests opposed both my fire and -life insurance, on the ground that it was an insolent attempt to -hinder the decrees of God; and if you pointed out that they did not -hinder the decrees in the least, but only modified the hard -consequences of them if you took out policies and had luck, they -retorted that that was gambling against the decrees of God, and was -just as bad. So they managed to damage those industries more -or less, but I got even on my accident business. As a rule, a knight -is a lummux, and some times even a labrick, and hence open to pretty -poor arguments when they come glibly from a superstition-monger, -but even _he_ could see the practical side of a thing once in a while; -and so of late you couldn't clean up a tournament and pile the -result without finding one of my accident-tickets in every helmet. - -We stood there awhile, in the thick darkness and stillness, looking -toward the red blur in the distance, and trying to make out the -meaning of a far-away murmur that rose and fell fitfully on the -night. Sometimes it swelled up and for a moment seemed less -remote; but when we were hopefully expecting it to betray its cause -and nature, it dulled and sank again, carrying its mystery with it. -We started down the hill in its direction, and the winding road -plunged us at once into almost solid darkness--darkness that was -packed and crammed in between two tall forest walls. We groped -along down for half a mile, perhaps, that murmur growing more and -more distinct all the time. The coming storm threatening more and -more, with now and then a little shiver of wind, a faint show of -lightning, and dull grumblings of distant thunder. I was in the -lead. I ran against something--a soft heavy something which gave, -slightly, to the impulse of my weight; at the same moment the -lightning glared out, and within a foot of my face was the writhing -face of a man who was hanging from the limb of a tree! That is, -it seemed to be writhing, but it was not. It was a grewsome sight. -Straightway there was an ear-splitting explosion of thunder, and -the bottom of heaven fell out; the rain poured down in a deluge. -No matter, we must try to cut this man down, on the chance that -there might be life in him yet, mustn't we? The lightning came -quick and sharp now, and the place was alternately noonday and -midnight. One moment the man would be hanging before me in an -intense light, and the next he was blotted out again in the darkness. -I told the king we must cut him down. The king at once objected. - -"If he hanged himself, he was willing to lose him property to -his lord; so let him be. If others hanged him, belike they had -the right--let him hang." - -"But--" - -"But me no buts, but even leave him as he is. And for yet another -reason. When the lightning cometh again--there, look abroad." - -Two others hanging, within fifty yards of us! - -"It is not weather meet for doing useless courtesies unto dead folk. -They are past thanking you. Come--it is unprofitable to tarry here." - -There was reason in what he said, so we moved on. Within the next -mile we counted six more hanging forms by the blaze of the lightning, -and altogether it was a grisly excursion. That murmur was a murmur -no longer, it was a roar; a roar of men's voices. A man came flying -by now, dimly through the darkness, and other men chasing him. -They disappeared. Presently another case of the kind occurred, -and then another and another. Then a sudden turn of the road -brought us in sight of that fire--it was a large manor-house, and -little or nothing was left of it--and everywhere men were flying -and other men raging after them in pursuit. - -I warned the king that this was not a safe place for strangers. -We would better get away from the light, until matters should -improve. We stepped back a little, and hid in the edge of the -wood. From this hiding-place we saw both men and women hunted -by the mob. The fearful work went on until nearly dawn. Then, -the fire being out and the storm spent, the voices and flying -footsteps presently ceased, and darkness and stillness reigned again. - -We ventured out, and hurried cautiously away; and although we were -worn out and sleepy, we kept on until we had put this place some -miles behind us. Then we asked hospitality at the hut of a charcoal -burner, and got what was to be had. A woman was up and about, but -the man was still asleep, on a straw shake-down, on the clay floor. -The woman seemed uneasy until I explained that we were travelers -and had lost our way and been wandering in the woods all night. -She became talkative, then, and asked if we had heard of the -terrible goings-on at the manor-house of Abblasoure. Yes, we had -heard of them, but what we wanted now was rest and sleep. The -king broke in: - -"Sell us the house and take yourselves away, for we be perilous -company, being late come from people that died of the Spotted Death." - -It was good of him, but unnecessary. One of the commonest decorations -of the nation was the waffle-iron face. I had early noticed that -the woman and her husband were both so decorated. She made us -entirely welcome, and had no fears; and plainly she was immensely -impressed by the king's proposition; for, of course, it was a good -deal of an event in her life to run across a person of the king's -humble appearance who was ready to buy a man's house for the sake -of a night's lodging. It gave her a large respect for us, and she -strained the lean possibilities of her hovel to the utmost to make -us comfortable. - -We slept till far into the afternoon, and then got up hungry enough to -make cotter fare quite palatable to the king, the more particularly -as it was scant in quantity. And also in variety; it consisted -solely of onions, salt, and the national black bread made out of -horse-feed. The woman told us about the affair of the evening -before. At ten or eleven at night, when everybody was in bed, -the manor-house burst into flames. The country-side swarmed to -the rescue, and the family were saved, with one exception, the -master. He did not appear. Everybody was frantic over this loss, -and two brave yeomen sacrificed their lives in ransacking the -burning house seeking that valuable personage. But after a while -he was found--what was left of him--which was his corpse. It was -in a copse three hundred yards away, bound, gagged, stabbed in a -dozen places. - -Who had done this? Suspicion fell upon a humble family in the -neighborhood who had been lately treated with peculiar harshness -by the baron; and from these people the suspicion easily extended -itself to their relatives and familiars. A suspicion was enough; -my lord's liveried retainers proclaimed an instant crusade against -these people, and were promptly joined by the community in general. -The woman's husband had been active with the mob, and had not -returned home until nearly dawn. He was gone now to find out -what the general result had been. While we were still talking he -came back from his quest. His report was revolting enough. Eighteen -persons hanged or butchered, and two yeomen and thirteen prisoners -lost in the fire. - -"And how many prisoners were there altogether in the vaults?" - -"Thirteen." - -"Then every one of them was lost?" - -"Yes, all." - -"But the people arrived in time to save the family; how is it they -could save none of the prisoners?" - -The man looked puzzled, and said: - -"Would one unlock the vaults at such a time? Marry, some would -have escaped." - -"Then you mean that nobody _did_ unlock them?" - -"None went near them, either to lock or unlock. It standeth to -reason that the bolts were fast; wherefore it was only needful -to establish a watch, so that if any broke the bonds he might not -escape, but be taken. None were taken." - -"Natheless, three did escape," said the king, "and ye will do well -to publish it and set justice upon their track, for these murthered -the baron and fired the house." - -I was just expecting he would come out with that. For a moment -the man and his wife showed an eager interest in this news and -an impatience to go out and spread it; then a sudden something -else betrayed itself in their faces, and they began to ask questions. -I answered the questions myself, and narrowly watched the effects -produced. I was soon satisfied that the knowledge of who these -three prisoners were had somehow changed the atmosphere; that -our hosts' continued eagerness to go and spread the news was now -only pretended and not real. The king did not notice the change, -and I was glad of that. I worked the conversation around toward -other details of the night's proceedings, and noted that these -people were relieved to have it take that direction. - -The painful thing observable about all this business was the -alacrity with which this oppressed community had turned their -cruel hands against their own class in the interest of the common -oppressor. This man and woman seemed to feel that in a quarrel -between a person of their own class and his lord, it was the natural -and proper and rightful thing for that poor devil's whole caste -to side with the master and fight his battle for him, without ever -stopping to inquire into the rights or wrongs of the matter. This -man had been out helping to hang his neighbors, and had done his -work with zeal, and yet was aware that there was nothing against -them but a mere suspicion, with nothing back of it describable -as evidence, still neither he nor his wife seemed to see anything -horrible about it. - -This was depressing--to a man with the dream of a republic in his -head. It reminded me of a time thirteen centuries away, when -the "poor whites" of our South who were always despised and -frequently insulted by the slave-lords around them, and who owed -their base condition simply to the presence of slavery in their -midst, were yet pusillanimously ready to side with the slave-lords -in all political moves for the upholding and perpetuating of -slavery, and did also finally shoulder their muskets and pour out -their lives in an effort to prevent the destruction of that very -institution which degraded them. And there was only one redeeming -feature connected with that pitiful piece of history; and that was, -that secretly the "poor white" did detest the slave-lord, and did -feel his own shame. That feeling was not brought to the surface, -but the fact that it was there and could have been brought out, -under favoring circumstances, was something--in fact, it was enough; -for it showed that a man is at bottom a man, after all, even if it -doesn't show on the outside. - -Well, as it turned out, this charcoal burner was just the twin of -the Southern "poor white" of the far future. The king presently -showed impatience, and said: - -"An ye prattle here all the day, justice will miscarry. Think ye -the criminals will abide in their father's house? They are fleeing, -they are not waiting. You should look to it that a party of horse -be set upon their track." - -The woman paled slightly, but quite perceptibly, and the man looked -flustered and irresolute. I said: - -"Come, friend, I will walk a little way with you, and explain which -direction I think they would try to take. If they were merely -resisters of the gabelle or some kindred absurdity I would try -to protect them from capture; but when men murder a person of -high degree and likewise burn his house, that is another matter." - -The last remark was for the king--to quiet him. On the road -the man pulled his resolution together, and began the march with -a steady gait, but there was no eagerness in it. By and by I said: - -"What relation were these men to you--cousins?" - -He turned as white as his layer of charcoal would let him, and -stopped, trembling. - -"Ah, my God, how know ye that?" - -"I didn't know it; it was a chance guess." - -"Poor lads, they are lost. And good lads they were, too." - -"Were you actually going yonder to tell on them?" - -He didn't quite know how to take that; but he said, hesitatingly: - -"Ye-s." - -"Then I think you are a damned scoundrel!" - -It made him as glad as if I had called him an angel. - -"Say the good words again, brother! for surely ye mean that ye -would not betray me an I failed of my duty." - -"Duty? There is no duty in the matter, except the duty to keep -still and let those men get away. They've done a righteous deed." - -He looked pleased; pleased, and touched with apprehension at the -same time. He looked up and down the road to see that no one -was coming, and then said in a cautious voice: - -"From what land come you, brother, that you speak such perilous -words, and seem not to be afraid?" - -"They are not perilous words when spoken to one of my own caste, -I take it. You would not tell anybody I said them?" - -"I? I would be drawn asunder by wild horses first." - -"Well, then, let me say my say. I have no fears of your repeating -it. I think devil's work has been done last night upon those -innocent poor people. That old baron got only what he deserved. -If I had my way, all his kind should have the same luck." - -Fear and depression vanished from the man's manner, and gratefulness -and a brave animation took their place: - -"Even though you be a spy, and your words a trap for my undoing, -yet are they such refreshment that to hear them again and others -like to them, I would go to the gallows happy, as having had one -good feast at least in a starved life. And I will say my say now, -and ye may report it if ye be so minded. I helped to hang my -neighbors for that it were peril to my own life to show lack of -zeal in the master's cause; the others helped for none other reason. -All rejoice to-day that he is dead, but all do go about seemingly -sorrowing, and shedding the hypocrite's tear, for in that lies -safety. I have said the words, I have said the words! the only -ones that have ever tasted good in my mouth, and the reward of -that taste is sufficient. Lead on, an ye will, be it even to the -scaffold, for I am ready." - -There it was, you see. A man is a man, at bottom. Whole ages -of abuse and oppression cannot crush the manhood clear out of him. -Whoever thinks it a mistake is himself mistaken. Yes, there is -plenty good enough material for a republic in the most degraded -people that ever existed--even the Russians; plenty of manhood -in them--even in the Germans--if one could but force it out of -its timid and suspicious privacy, to overthrow and trample in the -mud any throne that ever was set up and any nobility that ever -supported it. We should see certain things yet, let us hope and -believe. First, a modified monarchy, till Arthur's days were done, -then the destruction of the throne, nobility abolished, every -member of it bound out to some useful trade, universal suffrage -instituted, and the whole government placed in the hands of the -men and women of the nation there to remain. Yes, there was no -occasion to give up my dream yet a while. - - - -CHAPTER XXXI - -MARCO - -We strolled along in a sufficiently indolent fashion now, and -talked. We must dispose of about the amount of time it ought -to take to go to the little hamlet of Abblasoure and put justice -on the track of those murderers and get back home again. And -meantime I had an auxiliary interest which had never paled yet, -never lost its novelty for me since I had been in Arthur's kingdom: -the behavior--born of nice and exact subdivisions of caste--of chance -passers-by toward each other. Toward the shaven monk who trudged -along with his cowl tilted back and the sweat washing down his -fat jowls, the coal-burner was deeply reverent; to the gentleman -he was abject; with the small farmer and the free mechanic he was -cordial and gossipy; and when a slave passed by with a countenance -respectfully lowered, this chap's nose was in the air--he couldn't -even see him. Well, there are times when one would like to hang -the whole human race and finish the farce. - -Presently we struck an incident. A small mob of half-naked boys -and girls came tearing out of the woods, scared and shrieking. -The eldest among them were not more than twelve or fourteen years -old. They implored help, but they were so beside themselves that -we couldn't make out what the matter was. However, we plunged -into the wood, they skurrying in the lead, and the trouble was -quickly revealed: they had hanged a little fellow with a bark rope, -and he was kicking and struggling, in the process of choking to -death. We rescued him, and fetched him around. It was some more -human nature; the admiring little folk imitating their elders; -they were playing mob, and had achieved a success which promised -to be a good deal more serious than they had bargained for. - -It was not a dull excursion for me. I managed to put in the time -very well. I made various acquaintanceships, and in my quality -of stranger was able to ask as many questions as I wanted to. -A thing which naturally interested me, as a statesman, was the -matter of wages. I picked up what I could under that head during -the afternoon. A man who hasn't had much experience, and doesn't -think, is apt to measure a nation's prosperity or lack of prosperity -by the mere size of the prevailing wages; if the wages be high, the -nation is prosperous; if low, it isn't. Which is an error. It -isn't what sum you get, it's how much you can buy with it, that's -the important thing; and it's that that tells whether your wages -are high in fact or only high in name. I could remember how it -was in the time of our great civil war in the nineteenth century. -In the North a carpenter got three dollars a day, gold valuation; -in the South he got fifty--payable in Confederate shinplasters -worth a dollar a bushel. In the North a suit of overalls cost -three dollars--a day's wages; in the South it cost seventy-five ---which was two days' wages. Other things were in proportion. -Consequently, wages were twice as high in the North as they were -in the South, because the one wage had that much more purchasing -power than the other had. - -Yes, I made various acquaintances in the hamlet and a thing that -gratified me a good deal was to find our new coins in circulation ---lots of milrays, lots of mills, lots of cents, a good many nickels, -and some silver; all this among the artisans and commonalty -generally; yes, and even some gold--but that was at the bank, -that is to say, the goldsmith's. I dropped in there while Marco, -the son of Marco, was haggling with a shopkeeper over a quarter -of a pound of salt, and asked for change for a twenty-dollar gold -piece. They furnished it--that is, after they had chewed the piece, -and rung it on the counter, and tried acid on it, and asked me -where I got it, and who I was, and where I was from, and where -I was going to, and when I expected to get there, and perhaps -a couple of hundred more questions; and when they got aground, -I went right on and furnished them a lot of information voluntarily; -told them I owned a dog, and his name was Watch, and my first wife -was a Free Will Baptist, and her grandfather was a Prohibitionist, -and I used to know a man who had two thumbs on each hand and a wart -on the inside of his upper lip, and died in the hope of a glorious -resurrection, and so on, and so on, and so on, till even that -hungry village questioner began to look satisfied, and also a shade -put out; but he had to respect a man of my financial strength, -and so he didn't give me any lip, but I noticed he took it out of -his underlings, which was a perfectly natural thing to do. Yes, -they changed my twenty, but I judged it strained the bank a little, -which was a thing to be expected, for it was the same as walking -into a paltry village store in the nineteenth century and requiring -the boss of it to change a two thousand-dollar bill for you all -of a sudden. He could do it, maybe; but at the same time he -would wonder how a small farmer happened to be carrying so much -money around in his pocket; which was probably this goldsmith's -thought, too; for he followed me to the door and stood there gazing -after me with reverent admiration. - -Our new money was not only handsomely circulating, but its language -was already glibly in use; that is to say, people had dropped -the names of the former moneys, and spoke of things as being worth -so many dollars or cents or mills or milrays now. It was very -gratifying. We were progressing, that was sure. - -I got to know several master mechanics, but about the most interesting -fellow among them was the blacksmith, Dowley. He was a live man -and a brisk talker, and had two journeymen and three apprentices, -and was doing a raging business. In fact, he was getting rich, -hand over fist, and was vastly respected. Marco was very proud of -having such a man for a friend. He had taken me there ostensibly -to let me see the big establishment which bought so much of his -charcoal, but really to let me see what easy and almost familiar -terms he was on with this great man. Dowley and I fraternized -at once; I had had just such picked men, splendid fellows, under -me in the Colt Arms Factory. I was bound to see more of him, so -I invited him to come out to Marco's Sunday, and dine with us. -Marco was appalled, and held his breath; and when the grandee -accepted, he was so grateful that he almost forgot to be astonished -at the condescension. - -Marco's joy was exuberant--but only for a moment; then he grew -thoughtful, then sad; and when he heard me tell Dowley I should -have Dickon, the boss mason, and Smug, the boss wheelwright, out -there, too, the coal-dust on his face turned to chalk, and he lost -his grip. But I knew what was the matter with him; it was the -expense. He saw ruin before him; he judged that his financial -days were numbered. However, on our way to invite the others, -I said: - -"You must allow me to have these friends come; and you must also -allow me to pay the costs." - -His face cleared, and he said with spirit: - -"But not all of it, not all of it. Ye cannot well bear a burden -like to this alone." - -I stopped him, and said: - -"Now let's understand each other on the spot, old friend. I am -only a farm bailiff, it is true; but I am not poor, nevertheless. -I have been very fortunate this year--you would be astonished -to know how I have thriven. I tell you the honest truth when I say -I could squander away as many as a dozen feasts like this and never -care _that_ for the expense!" and I snapped my fingers. I could -see myself rise a foot at a time in Marco's estimation, and when -I fetched out those last words I was become a very tower for style -and altitude. "So you see, you must let me have my way. You -can't contribute a cent to this orgy, that's _settled_." - -"It's grand and good of you--" - -"No, it isn't. You've opened your house to Jones and me in the -most generous way; Jones was remarking upon it to-day, just before -you came back from the village; for although he wouldn't be likely -to say such a thing to you--because Jones isn't a talker, and is -diffident in society--he has a good heart and a grateful, and -knows how to appreciate it when he is well treated; yes, you and -your wife have been very hospitable toward us--" - -"Ah, brother, 'tis nothing--_such_ hospitality!" - -"But it _is_ something; the best a man has, freely given, is always -something, and is as good as a prince can do, and ranks right -along beside it--for even a prince can but do his best. And so -we'll shop around and get up this layout now, and don't you worry -about the expense. I'm one of the worst spendthrifts that ever -was born. Why, do you know, sometimes in a single week I spend ---but never mind about that--you'd never believe it anyway." - -And so we went gadding along, dropping in here and there, pricing -things, and gossiping with the shopkeepers about the riot, and now -and then running across pathetic reminders of it, in the persons of -shunned and tearful and houseless remnants of families whose homes -had been taken from them and their parents butchered or hanged. -The raiment of Marco and his wife was of coarse tow-linen and -linsey-woolsey respectively, and resembled township maps, it being -made up pretty exclusively of patches which had been added, township -by township, in the course of five or six years, until hardly a -hand's-breadth of the original garments was surviving and present. -Now I wanted to fit these people out with new suits, on account of -that swell company, and I didn't know just how to get at it ---with delicacy, until at last it struck me that as I had already -been liberal in inventing wordy gratitude for the king, it would -be just the thing to back it up with evidence of a substantial -sort; so I said: - -"And Marco, there's another thing which you must permit--out of -kindness for Jones--because you wouldn't want to offend him. -He was very anxious to testify his appreciation in some way, but -he is so diffident he couldn't venture it himself, and so he begged -me to buy some little things and give them to you and Dame Phyllis -and let him pay for them without your ever knowing they came from -him--you know how a delicate person feels about that sort of thing ---and so I said I would, and we would keep mum. Well, his idea -was, a new outfit of clothes for you both--" - -"Oh, it is wastefulness! It may not be, brother, it may not be. -Consider the vastness of the sum--" - -"Hang the vastness of the sum! Try to keep quiet for a moment, -and see how it would seem; a body can't get in a word edgeways, -you talk so much. You ought to cure that, Marco; it isn't good -form, you know, and it will grow on you if you don't check it. -Yes, we'll step in here now and price this man's stuff--and don't -forget to remember to not let on to Jones that you know he had -anything to do with it. You can't think how curiously sensitive -and proud he is. He's a farmer--pretty fairly well-to-do farmer ---and I'm his bailiff; _but_--the imagination of that man! Why, -sometimes when he forgets himself and gets to blowing off, you'd -think he was one of the swells of the earth; and you might listen -to him a hundred years and never take him for a farmer--especially if -he talked agriculture. He _thinks_ he's a Sheol of a farmer; thinks -he's old Grayback from Wayback; but between you and me privately -he don't know as much about farming as he does about running -a kingdom--still, whatever he talks about, you want to drop your -underjaw and listen, the same as if you had never heard such -incredible wisdom in all your life before, and were afraid you -might die before you got enough of it. That will please Jones." - -It tickled Marco to the marrow to hear about such an odd character; -but it also prepared him for accidents; and in my experience when -you travel with a king who is letting on to be something else and -can't remember it more than about half the time, you can't take -too many precautions. - -This was the best store we had come across yet; it had everything -in it, in small quantities, from anvils and drygoods all the way -down to fish and pinchbeck jewelry. I concluded I would bunch -my whole invoice right here, and not go pricing around any more. -So I got rid of Marco, by sending him off to invite the mason and -the wheelwright, which left the field free to me. For I never care -to do a thing in a quiet way; it's got to be theatrical or I don't -take any interest in it. I showed up money enough, in a careless -way, to corral the shopkeeper's respect, and then I wrote down -a list of the things I wanted, and handed it to him to see if he -could read it. He could, and was proud to show that he could. -He said he had been educated by a priest, and could both read -and write. He ran it through, and remarked with satisfaction that -it was a pretty heavy bill. Well, and so it was, for a little -concern like that. I was not only providing a swell dinner, but -some odds and ends of extras. I ordered that the things be carted -out and delivered at the dwelling of Marco, the son of Marco, -by Saturday evening, and send me the bill at dinner-time Sunday. -He said I could depend upon his promptness and exactitude, it was -the rule of the house. He also observed that he would throw in -a couple of miller-guns for the Marcos gratis--that everybody -was using them now. He had a mighty opinion of that clever -device. I said: - -"And please fill them up to the middle mark, too; and add that -to the bill." - -He would, with pleasure. He filled them, and I took them with -me. I couldn't venture to tell him that the miller-gun was a -little invention of my own, and that I had officially ordered that -every shopkeeper in the kingdom keep them on hand and sell them -at government price--which was the merest trifle, and the shopkeeper -got that, not the government. We furnished them for nothing. - -The king had hardly missed us when we got back at nightfall. He -had early dropped again into his dream of a grand invasion of Gaul -with the whole strength of his kingdom at his back, and the afternoon -had slipped away without his ever coming to himself again. - - - -CHAPTER XXXII - -DOWLEY'S HUMILIATION - -Well, when that cargo arrived toward sunset, Saturday afternoon, -I had my hands full to keep the Marcos from fainting. They were -sure Jones and I were ruined past help, and they blamed themselves -as accessories to this bankruptcy. You see, in addition to the -dinner-materials, which called for a sufficiently round sum, -I had bought a lot of extras for the future comfort of the family: -for instance, a big lot of wheat, a delicacy as rare to the tables -of their class as was ice-cream to a hermit's; also a sizeable -deal dinner-table; also two entire pounds of salt, which was -another piece of extravagance in those people's eyes; also crockery, -stools, the clothes, a small cask of beer, and so on. I instructed -the Marcos to keep quiet about this sumptuousness, so as to give -me a chance to surprise the guests and show off a little. Concerning -the new clothes, the simple couple were like children; they were up -and down, all night, to see if it wasn't nearly daylight, so that -they could put them on, and they were into them at last as much -as an hour before dawn was due. Then their pleasure--not to say -delirium--was so fresh and novel and inspiring that the sight of it -paid me well for the interruptions which my sleep had suffered. -The king had slept just as usual--like the dead. The Marcos could -not thank him for their clothes, that being forbidden; but they -tried every way they could think of to make him see how grateful -they were. Which all went for nothing: he didn't notice any change. - -It turned out to be one of those rich and rare fall days which is -just a June day toned down to a degree where it is heaven to be -out of doors. Toward noon the guests arrived, and we assembled -under a great tree and were soon as sociable as old acquaintances. -Even the king's reserve melted a little, though it was some little -trouble to him to adjust himself to the name of Jones along at -first. I had asked him to try to not forget that he was a farmer; -but I had also considered it prudent to ask him to let the thing -stand at that, and not elaborate it any. Because he was just the -kind of person you could depend on to spoil a little thing like -that if you didn't warn him, his tongue was so handy, and his -spirit so willing, and his information so uncertain. - -Dowley was in fine feather, and I early got him started, and then -adroitly worked him around onto his own history for a text and -himself for a hero, and then it was good to sit there and hear him -hum. Self-made man, you know. They know how to talk. They do -deserve more credit than any other breed of men, yes, that is true; -and they are among the very first to find it out, too. He told how -he had begun life an orphan lad without money and without friends -able to help him; how he had lived as the slaves of the meanest -master lived; how his day's work was from sixteen to eighteen hours -long, and yielded him only enough black bread to keep him in a -half-fed condition; how his faithful endeavors finally attracted -the attention of a good blacksmith, who came near knocking him -dead with kindness by suddenly offering, when he was totally -unprepared, to take him as his bound apprentice for nine years -and give him board and clothes and teach him the trade--or "mystery" -as Dowley called it. That was his first great rise, his first -gorgeous stroke of fortune; and you saw that he couldn't yet speak -of it without a sort of eloquent wonder and delight that such a -gilded promotion should have fallen to the lot of a common human -being. He got no new clothing during his apprenticeship, but on -his graduation day his master tricked him out in spang-new tow-linens -and made him feel unspeakably rich and fine. - -"I remember me of that day!" the wheelwright sang out, with -enthusiasm. - -"And I likewise!" cried the mason. "I would not believe they -were thine own; in faith I could not." - -"Nor other!" shouted Dowley, with sparkling eyes. "I was like -to lose my character, the neighbors wending I had mayhap been -stealing. It was a great day, a great day; one forgetteth not -days like that." - -Yes, and his master was a fine man, and prosperous, and always -had a great feast of meat twice in the year, and with it white -bread, true wheaten bread; in fact, lived like a lord, so to speak. -And in time Dowley succeeded to the business and married the daughter. - -"And now consider what is come to pass," said he, impressively. -"Two times in every month there is fresh meat upon my table." -He made a pause here, to let that fact sink home, then added ---"and eight times salt meat." - -"It is even true," said the wheelwright, with bated breath. - -"I know it of mine own knowledge," said the mason, in the same -reverent fashion. - -"On my table appeareth white bread every Sunday in the year," -added the master smith, with solemnity. "I leave it to your own -consciences, friends, if this is not also true?" - -"By my head, yes," cried the mason. - -"I can testify it--and I do," said the wheelwright. - -"And as to furniture, ye shall say yourselves what mine equipment -is." He waved his hand in fine gesture of granting frank and -unhampered freedom of speech, and added: "Speak as ye are moved; -speak as ye would speak; an I were not here." - -"Ye have five stools, and of the sweetest workmanship at that, albeit -your family is but three," said the wheelwright, with deep respect. - -"And six wooden goblets, and six platters of wood and two of pewter -to eat and drink from withal," said the mason, impressively. "And -I say it as knowing God is my judge, and we tarry not here alway, -but must answer at the last day for the things said in the body, -be they false or be they sooth." - -"Now ye know what manner of man I am, brother Jones," said the -smith, with a fine and friendly condescension, "and doubtless ye -would look to find me a man jealous of his due of respect and -but sparing of outgo to strangers till their rating and quality be -assured, but trouble yourself not, as concerning that; wit ye well -ye shall find me a man that regardeth not these matters but is -willing to receive any he as his fellow and equal that carrieth -a right heart in his body, be his worldly estate howsoever modest. -And in token of it, here is my hand; and I say with my own mouth -we are equals--equals"--and he smiled around on the company with -the satisfaction of a god who is doing the handsome and gracious -thing and is quite well aware of it. - -The king took the hand with a poorly disguised reluctance, and -let go of it as willingly as a lady lets go of a fish; all of which -had a good effect, for it was mistaken for an embarrassment natural -to one who was being called upon by greatness. - -The dame brought out the table now, and set it under the tree. -It caused a visible stir of surprise, it being brand new and a -sumptuous article of deal. But the surprise rose higher still -when the dame, with a body oozing easy indifference at every pore, -but eyes that gave it all away by absolutely flaming with vanity, -slowly unfolded an actual simon-pure tablecloth and spread it. -That was a notch above even the blacksmith's domestic grandeurs, -and it hit him hard; you could see it. But Marco was in Paradise; -you could see that, too. Then the dame brought two fine new -stools--whew! that was a sensation; it was visible in the eyes of -every guest. Then she brought two more--as calmly as she could. -Sensation again--with awed murmurs. Again she brought two ---walking on air, she was so proud. The guests were petrified, and -the mason muttered: - -"There is that about earthly pomps which doth ever move to reverence." - -As the dame turned away, Marco couldn't help slapping on the climax -while the thing was hot; so he said with what was meant for a -languid composure but was a poor imitation of it: - -"These suffice; leave the rest." - -So there were more yet! It was a fine effect. I couldn't have -played the hand better myself. - -From this out, the madam piled up the surprises with a rush that -fired the general astonishment up to a hundred and fifty in the -shade, and at the same time paralyzed expression of it down to -gasped "Oh's" and "Ah's," and mute upliftings of hands and eyes. -She fetched crockery--new, and plenty of it; new wooden goblets -and other table furniture; and beer, fish, chicken, a goose, eggs, -roast beef, roast mutton, a ham, a small roast pig, and a wealth -of genuine white wheaten bread. Take it by and large, that spread -laid everything far and away in the shade that ever that crowd had -seen before. And while they sat there just simply stupefied with -wonder and awe, I sort of waved my hand as if by accident, and -the storekeeper's son emerged from space and said he had come -to collect. - -"That's all right," I said, indifferently. "What is the amount? -give us the items." - -Then he read off this bill, while those three amazed men listened, -and serene waves of satisfaction rolled over my soul and alternate -waves of terror and admiration surged over Marco's: - - 2 pounds salt . . . . . . . . . . . . . . 200 - 8 dozen pints beer, in the wood . . . . . 800 - 3 bushels wheat . . . . . . . . . . . . . 2,700 - 2 pounds fish . . . . . . . . . . . . . . 100 - 3 hens . . . . . . . . . . . . . . . . . 400 - 1 goose . . . . . . . . . . . . . . . . . 400 - 3 dozen eggs . . . . . . . . . . . . . . 150 - 1 roast of beef . . . . . . . . . . . . . 450 - 1 roast of mutton . . . . . . . . . . . . 400 - 1 ham . . . . . . . . . . . . . . . . . . 800 - 1 sucking pig . . . . . . . . . . . . . . 500 - 2 crockery dinner sets . . . . . . . . . 6,000 - 2 men's suits and underwear . . . . . . . 2,800 - 1 stuff and 1 linsey-woolsey gown - and underwear . . . . . . . . . . . . . 1,600 - 8 wooden goblets . . . . . . . . . . . . 800 - Various table furniture . . . . . . . . .10,000 - 1 deal table . . . . . . . . . . . . . . 3,000 - 8 stools . . . . . . . . . . . . . . . . 4,000 - 2 miller guns, loaded . . . . . . . . . . 3,000 - -He ceased. There was a pale and awful silence. Not a limb stirred. -Not a nostril betrayed the passage of breath. - -"Is that all?" I asked, in a voice of the most perfect calmness. - -"All, fair sir, save that certain matters of light moment are -placed together under a head hight sundries. If it would like -you, I will sepa--" - -"It is of no consequence," I said, accompanying the words with -a gesture of the most utter indifference; "give me the grand -total, please." - -The clerk leaned against the tree to stay himself, and said: - -"Thirty-nine thousand one hundred and fifty milrays!" - -The wheelwright fell off his stool, the others grabbed the table -to save themselves, and there was a deep and general ejaculation of: - -"God be with us in the day of disaster!" - -The clerk hastened to say: - -"My father chargeth me to say he cannot honorably require you -to pay it all at this time, and therefore only prayeth you--" - -I paid no more heed than if it were the idle breeze, but, with an -air of indifference amounting almost to weariness, got out my money -and tossed four dollars on to the table. Ah, you should have seen -them stare! - -The clerk was astonished and charmed. He asked me to retain -one of the dollars as security, until he could go to town and ---I interrupted: - -"What, and fetch back nine cents? Nonsense! Take the whole. -Keep the change." - -There was an amazed murmur to this effect: - -"Verily this being is _made_ of money! He throweth it away even -as if it were dirt." - -The blacksmith was a crushed man. - -The clerk took his money and reeled away drunk with fortune. I said -to Marco and his wife: - -"Good folk, here is a little trifle for you"--handing the miller-guns -as if it were a matter of no consequence, though each of them -contained fifteen cents in solid cash; and while the poor creatures -went to pieces with astonishment and gratitude, I turned to the -others and said as calmly as one would ask the time of day: - -"Well, if we are all ready, I judge the dinner is. Come, fall to." - -Ah, well, it was immense; yes, it was a daisy. I don't know that -I ever put a situation together better, or got happier spectacular -effects out of the materials available. The blacksmith--well, he -was simply mashed. Land! I wouldn't have felt what that man was -feeling, for anything in the world. Here he had been blowing and -bragging about his grand meat-feast twice a year, and his fresh -meat twice a month, and his salt meat twice a week, and his white -bread every Sunday the year round--all for a family of three; the -entire cost for the year not above 69.2.6 (sixty-nine cents, two -mills and six milrays), and all of a sudden here comes along a man -who slashes out nearly four dollars on a single blow-out; and not -only that, but acts as if it made him tired to handle such small -sums. Yes, Dowley was a good deal wilted, and shrunk-up and -collapsed; he had the aspect of a bladder-balloon that's been -stepped on by a cow. - - - -CHAPTER XXXIII - -SIXTH CENTURY POLITICAL ECONOMY - -However, I made a dead set at him, and before the first third -of the dinner was reached, I had him happy again. It was easy -to do--in a country of ranks and castes. You see, in a country -where they have ranks and castes, a man isn't ever a man, he is -only part of a man, he can't ever get his full growth. You prove -your superiority over him in station, or rank, or fortune, and -that's the end of it--he knuckles down. You can't insult him -after that. No, I don't mean quite that; of course you _can_ insult -him, I only mean it's difficult; and so, unless you've got a lot -of useless time on your hands it doesn't pay to try. I had the -smith's reverence now, because I was apparently immensely prosperous -and rich; I could have had his adoration if I had had some little -gimcrack title of nobility. And not only his, but any commoner's -in the land, though he were the mightiest production of all the ages, -in intellect, worth, and character, and I bankrupt in all three. -This was to remain so, as long as England should exist in the -earth. With the spirit of prophecy upon me, I could look into -the future and see her erect statues and monuments to her unspeakable -Georges and other royal and noble clothes-horses, and leave unhonored -the creators of this world--after God--Gutenburg, Watt, Arkwright, -Whitney, Morse, Stephenson, Bell. - -The king got his cargo aboard, and then, the talk not turning upon -battle, conquest, or iron-clad duel, he dulled down to drowsiness -and went off to take a nap. Mrs. Marco cleared the table, placed -the beer keg handy, and went away to eat her dinner of leavings -in humble privacy, and the rest of us soon drifted into matters -near and dear to the hearts of our sort--business and wages, -of course. At a first glance, things appeared to be exceeding -prosperous in this little tributary kingdom--whose lord was -King Bagdemagus--as compared with the state of things in my own -region. They had the "protection" system in full force here, -whereas we were working along down toward free-trade, by easy -stages, and were now about half way. Before long, Dowley and I -were doing all the talking, the others hungrily listening. Dowley -warmed to his work, snuffed an advantage in the air, and began -to put questions which he considered pretty awkward ones for me, -and they did have something of that look: - -"In your country, brother, what is the wage of a master bailiff, -master hind, carter, shepherd, swineherd?" - -"Twenty-five milrays a day; that is to say, a quarter of a cent." - -The smith's face beamed with joy. He said: - -"With us they are allowed the double of it! And what may a mechanic -get--carpenter, dauber, mason, painter, blacksmith, wheelwright, -and the like?" - -"On the average, fifty milrays; half a cent a day." - -"Ho-ho! With us they are allowed a hundred! With us any good -mechanic is allowed a cent a day! I count out the tailor, but -not the others--they are all allowed a cent a day, and in driving -times they get more--yes, up to a hundred and ten and even fifteen -milrays a day. I've paid a hundred and fifteen myself, within -the week. 'Rah for protection--to Sheol with free-trade!" - -And his face shone upon the company like a sunburst. But I didn't -scare at all. I rigged up my pile-driver, and allowed myself -fifteen minutes to drive him into the earth--drive him _all_ in ---drive him in till not even the curve of his skull should show -above ground. Here is the way I started in on him. I asked: - -"What do you pay a pound for salt?" - -"A hundred milrays." - -"We pay forty. What do you pay for beef and mutton--when you -buy it?" That was a neat hit; it made the color come. - -"It varieth somewhat, but not much; one may say seventy-five milrays -the pound." - -"_We_ pay thirty-three. What do you pay for eggs?" - -"Fifty milrays the dozen." - -"We pay twenty. What do you pay for beer?" - -"It costeth us eight and one-half milrays the pint." - -"We get it for four; twenty-five bottles for a cent. -What do you pay for wheat?" - -"At the rate of nine hundred milrays the bushel." - -"We pay four hundred. What do you pay for a man's tow-linen suit?" - -"Thirteen cents." - -"We pay six. What do you pay for a stuff gown for the wife of the -laborer or the mechanic?" - -"We pay eight cents, four mills." - -"Well, observe the difference: you pay eight cents and four mills, -we pay only four cents." I prepared now to sock it to him. I said: -"Look here, dear friend, _what's become of your high wages you -were bragging so about a few minutes ago?_"--and I looked around -on the company with placid satisfaction, for I had slipped up -on him gradually and tied him hand and foot, you see, without his -ever noticing that he was being tied at all. "What's become of -those noble high wages of yours?--I seem to have knocked the -stuffing all out of them, it appears to me." - -But if you will believe me, he merely looked surprised, that -is all! he didn't grasp the situation at all, didn't know he had -walked into a trap, didn't discover that he was _in_ a trap. I could -have shot him, from sheer vexation. With cloudy eye and a struggling -intellect he fetched this out: - -"Marry, I seem not to understand. It is _proved_ that our wages -be double thine; how then may it be that thou'st knocked therefrom -the stuffing?--an miscall not the wonderly word, this being the -first time under grace and providence of God it hath been granted -me to hear it." - -Well, I was stunned; partly with this unlooked-for stupidity on -his part, and partly because his fellows so manifestly sided with -him and were of his mind--if you might call it mind. My position -was simple enough, plain enough; how could it ever be simplified -more? However, I must try: - -"Why, look here, brother Dowley, don't you see? Your wages are -merely higher than ours in _name_, not in _fact_." - -"Hear him! They are the _double_--ye have confessed it yourself." - -"Yes-yes, I don't deny that at all. But that's got nothing to do -with it; the _amount_ of the wages in mere coins, with meaningless -names attached to them to know them by, has got nothing to do -with it. The thing is, how much can you _buy_ with your wages? ---that's the idea. While it is true that with you a good mechanic -is allowed about three dollars and a half a year, and with us only -about a dollar and seventy-five--" - -"There--ye're confessing it again, ye're confessing it again!" - -"Confound it, I've never denied it, I tell you! What I say is -this. With us _half_ a dollar buys more than a _dollar_ buys -with you--and THEREFORE it stands to reason and the commonest -kind of common-sense, that our wages are _higher_ than yours." - -He looked dazed, and said, despairingly: - -"Verily, I cannot make it out. Ye've just said ours are the -higher, and with the same breath ye take it back." - -"Oh, great Scott, isn't it possible to get such a simple thing -through your head? Now look here--let me illustrate. We pay -four cents for a woman's stuff gown, you pay 8.4.0, which is -four mills more than _double_. What do you allow a laboring -woman who works on a farm?" - -"Two mills a day." - -"Very good; we allow but half as much; we pay her only a tenth -of a cent a day; and--" - -"Again ye're conf--" - -"Wait! Now, you see, the thing is very simple; this time you'll -understand it. For instance, it takes your woman 42 days to earn -her gown, at 2 mills a day--7 weeks' work; but ours earns hers -in forty days--two days _short_ of 7 weeks. Your woman has a gown, -and her whole seven weeks wages are gone; ours has a gown, and -two days' wages left, to buy something else with. There--_now_ -you understand it!" - -He looked--well, he merely looked dubious, it's the most I can say; -so did the others. I waited--to let the thing work. Dowley spoke -at last--and betrayed the fact that he actually hadn't gotten away -from his rooted and grounded superstitions yet. He said, with -a trifle of hesitancy: - -"But--but--ye cannot fail to grant that two mills a day is better -than one." - -Shucks! Well, of course, I hated to give it up. So I chanced -another flyer: - -"Let us suppose a case. Suppose one of your journeymen goes out -and buys the following articles: - - "1 pound of salt; - 1 dozen eggs; - 1 dozen pints of beer; - 1 bushel of wheat; - 1 tow-linen suit; - 5 pounds of beef; - 5 pounds of mutton. - -"The lot will cost him 32 cents. It takes him 32 working days -to earn the money--5 weeks and 2 days. Let him come to us and -work 32 days at _half_ the wages; he can buy all those things for -a shade under 14 1/2 cents; they will cost him a shade under 29 -days' work, and he will have about half a week's wages over. Carry -it through the year; he would save nearly a week's wages every -two months, _your_ man nothing; thus saving five or six weeks' wages -in a year, your man not a cent. _Now_ I reckon you understand that -'high wages' and 'low wages' are phrases that don't mean anything -in the world until you find out which of them will _buy_ the most!" - -It was a crusher. - -But, alas! it didn't crush. No, I had to give it up. What those -people valued was _high wages_; it didn't seem to be a matter of -any consequence to them whether the high wages would buy anything -or not. They stood for "protection," and swore by it, which was -reasonable enough, because interested parties had gulled them into -the notion that it was protection which had created their high -wages. I proved to them that in a quarter of a century their wages -had advanced but 30 per cent., while the cost of living had gone -up 100; and that with us, in a shorter time, wages had advanced -40 per cent. while the cost of living had gone steadily down. But -it didn't do any good. Nothing could unseat their strange beliefs. - -Well, I was smarting under a sense of defeat. Undeserved defeat, -but what of that? That didn't soften the smart any. And to think -of the circumstances! the first statesman of the age, the capablest -man, the best-informed man in the entire world, the loftiest -uncrowned head that had moved through the clouds of any political -firmament for centuries, sitting here apparently defeated in -argument by an ignorant country blacksmith! And I could see that -those others were sorry for me--which made me blush till I could -smell my whiskers scorching. Put yourself in my place; feel as mean -as I did, as ashamed as I felt--wouldn't _you_ have struck below the -belt to get even? Yes, you would; it is simply human nature. -Well, that is what I did. I am not trying to justify it; I'm only -saying that I was mad, and _anybody_ would have done it. - -Well, when I make up my mind to hit a man, I don't plan out -a love-tap; no, that isn't my way; as long as I'm going to hit him -at all, I'm going to hit him a lifter. And I don't jump at him -all of a sudden, and risk making a blundering half-way business -of it; no, I get away off yonder to one side, and work up on him -gradually, so that he never suspects that I'm going to hit him -at all; and by and by, all in a flash, he's flat on his back, and -he can't tell for the life of him how it all happened. That is -the way I went for brother Dowley. I started to talking lazy and -comfortable, as if I was just talking to pass the time; and the -oldest man in the world couldn't have taken the bearings of my -starting place and guessed where I was going to fetch up: - -"Boys, there's a good many curious things about law, and custom, -and usage, and all that sort of thing, when you come to look at it; -yes, and about the drift and progress of human opinion and movement, -too. There are written laws--they perish; but there are also -unwritten laws--_they_ are eternal. Take the unwritten law of wages: -it says they've got to advance, little by little, straight through -the centuries. And notice how it works. We know what wages are -now, here and there and yonder; we strike an average, and say that's -the wages of to-day. We know what the wages were a hundred years -ago, and what they were two hundred years ago; that's as far back -as we can get, but it suffices to give us the law of progress, -the measure and rate of the periodical augmentation; and so, without -a document to help us, we can come pretty close to determining -what the wages were three and four and five hundred years ago. -Good, so far. Do we stop there? No. We stop looking backward; -we face around and apply the law to the future. My friends, I can -tell you what people's wages are going to be at any date in the -future you want to know, for hundreds and hundreds of years." - -"What, goodman, what!" - -"Yes. In seven hundred years wages will have risen to six times -what they are now, here in your region, and farm hands will be -allowed 3 cents a day, and mechanics 6." - -"I would't I might die now and live then!" interrupted Smug, the -wheelwright, with a fine avaricious glow in his eye. - -"And that isn't all; they'll get their board besides--such as it is: -it won't bloat them. Two hundred and fifty years later--pay attention -now--a mechanic's wages will be--mind you, this is law, not -guesswork; a mechanic's wages will then be _twenty_ cents a day!" - -There was a general gasp of awed astonishment, Dickon the mason -murmured, with raised eyes and hands: - -"More than three weeks' pay for one day's work!" - -"Riches!--of a truth, yes, riches!" muttered Marco, his breath -coming quick and short, with excitement. - -"Wages will keep on rising, little by little, little by little, -as steadily as a tree grows, and at the end of three hundred and -forty years more there'll be at least _one_ country where the -mechanic's average wage will be _two hundred_ cents a day!" - -It knocked them absolutely dumb! Not a man of them could get -his breath for upwards of two minutes. Then the coal-burner -said prayerfully: - -"Might I but live to see it!" - -"It is the income of an earl!" said Smug. - -"An earl, say ye?" said Dowley; "ye could say more than that and -speak no lie; there's no earl in the realm of Bagdemagus that hath -an income like to that. Income of an earl--mf! it's the income -of an angel!" - -"Now, then, that is what is going to happen as regards wages. -In that remote day, that man will earn, with _one_ week's work, -that bill of goods which it takes you upwards of _fifty_ weeks to -earn now. Some other pretty surprising things are going to happen, -too. Brother Dowley, who is it that determines, every spring, -what the particular wage of each kind of mechanic, laborer, and -servant shall be for that year?" - -"Sometimes the courts, sometimes the town council; but most of all, -the magistrate. Ye may say, in general terms, it is the magistrate -that fixes the wages." - -"Doesn't ask any of those poor devils to _help_ him fix their wages -for them, does he?" - -"Hm! That _were_ an idea! The master that's to pay him the money -is the one that's rightly concerned in that matter, ye will notice." - -"Yes--but I thought the other man might have some little trifle -at stake in it, too; and even his wife and children, poor creatures. -The masters are these: nobles, rich men, the prosperous generally. -These few, who do no work, determine what pay the vast hive shall -have who _do_ work. You see? They're a 'combine'--a trade union, -to coin a new phrase--who band themselves together to force their -lowly brother to take what they choose to give. Thirteen hundred -years hence--so says the unwritten law--the 'combine' will be the -other way, and then how these fine people's posterity will fume -and fret and grit their teeth over the insolent tyranny of trade -unions! Yes, indeed! the magistrate will tranquilly arrange the -wages from now clear away down into the nineteenth century; and -then all of a sudden the wage-earner will consider that a couple -of thousand years or so is enough of this one-sided sort of thing; -and he will rise up and take a hand in fixing his wages himself. -Ah, he will have a long and bitter account of wrong and humiliation -to settle." - -"Do ye believe--" - -"That he actually will help to fix his own wages? Yes, indeed. -And he will be strong and able, then." - -"Brave times, brave times, of a truth!" sneered the prosperous smith. - -"Oh,--and there's another detail. In that day, a master may hire -a man for only just one day, or one week, or one month at a time, -if he wants to." - -"What?" - -"It's true. Moreover, a magistrate won't be able to force a man -to work for a master a whole year on a stretch whether the man -wants to or not." - -"Will there be _no_ law or sense in that day?" - -"Both of them, Dowley. In that day a man will be his own property, -not the property of magistrate and master. And he can leave town -whenever he wants to, if the wages don't suit him!--and they can't -put him in the pillory for it." - -"Perdition catch such an age!" shouted Dowley, in strong indignation. -"An age of dogs, an age barren of reverence for superiors and -respect for authority! The pillory--" - -"Oh, wait, brother; say no good word for that institution. I think -the pillory ought to be abolished." - -"A most strange idea. Why?" - -"Well, I'll tell you why. Is a man ever put in the pillory for -a capital crime?" - -"No." - -"Is it right to condemn a man to a slight punishment for a small -offense and then kill him?" - -There was no answer. I had scored my first point! For the first -time, the smith wasn't up and ready. The company noticed it. -Good effect. - -"You don't answer, brother. You were about to glorify the pillory -a while ago, and shed some pity on a future age that isn't going -to use it. I think the pillory ought to be abolished. What -usually happens when a poor fellow is put in the pillory for some -little offense that didn't amount to anything in the world? The -mob try to have some fun with him, don't they?" - -"Yes." - -"They begin by clodding him; and they laugh themselves to pieces -to see him try to dodge one clod and get hit with another?" - -"Yes." - -"Then they throw dead cats at him, don't they?" - -"Yes." - -"Well, then, suppose he has a few personal enemies in that mob -and here and there a man or a woman with a secret grudge against -him--and suppose especially that he is unpopular in the community, -for his pride, or his prosperity, or one thing or another--stones -and bricks take the place of clods and cats presently, don't they?" - -"There is no doubt of it." - -"As a rule he is crippled for life, isn't he?--jaws broken, teeth -smashed out?--or legs mutilated, gangrened, presently cut off? ---or an eye knocked out, maybe both eyes?" - -"It is true, God knoweth it." - -"And if he is unpopular he can depend on _dying_, right there in -the stocks, can't he?" - -"He surely can! One may not deny it." - -"I take it none of _you_ are unpopular--by reason of pride or -insolence, or conspicuous prosperity, or any of those things that -excite envy and malice among the base scum of a village? _You_ -wouldn't think it much of a risk to take a chance in the stocks?" - -Dowley winced, visibly. I judged he was hit. But he didn't betray -it by any spoken word. As for the others, they spoke out plainly, -and with strong feeling. They said they had seen enough of the -stocks to know what a man's chance in them was, and they would -never consent to enter them if they could compromise on a quick -death by hanging. - -"Well, to change the subject--for I think I've established my -point that the stocks ought to be abolished. I think some of our -laws are pretty unfair. For instance, if I do a thing which ought -to deliver me to the stocks, and you know I did it and yet keep -still and don't report me, _you_ will get the stocks if anybody -informs on you." - -"Ah, but that would serve you but right," said Dowley, "for you -_must_ inform. So saith the law." - -The others coincided. - -"Well, all right, let it go, since you vote me down. But there's -one thing which certainly isn't fair. The magistrate fixes a -mechanic's wage at one cent a day, for instance. The law says that -if any master shall venture, even under utmost press of business, -to pay anything _over_ that cent a day, even for a single day, he -shall be both fined and pilloried for it; and whoever knows he did -it and doesn't inform, they also shall be fined and pilloried. Now -it seems to me unfair, Dowley, and a deadly peril to all of us, -that because you thoughtlessly confessed, a while ago, that within -a week you have paid a cent and fifteen mil--" - -Oh, I tell _you_ it was a smasher! You ought to have seen them to -go to pieces, the whole gang. I had just slipped up on poor -smiling and complacent Dowley so nice and easy and softly, that -he never suspected anything was going to happen till the blow -came crashing down and knocked him all to rags. - -A fine effect. In fact, as fine as any I ever produced, with so -little time to work it up in. - -But I saw in a moment that I had overdone the thing a little. -I was expecting to scare them, but I wasn't expecting to scare -them to death. They were mighty near it, though. You see they -had been a whole lifetime learning to appreciate the pillory; and -to have that thing staring them in the face, and every one of them -distinctly at the mercy of me, a stranger, if I chose to go and -report--well, it was awful, and they couldn't seem to recover -from the shock, they couldn't seem to pull themselves together. -Pale, shaky, dumb, pitiful? Why, they weren't any better than -so many dead men. It was very uncomfortable. Of course, I thought -they would appeal to me to keep mum, and then we would shake hands, -and take a drink all round, and laugh it off, and there an end. -But no; you see I was an unknown person, among a cruelly oppressed -and suspicious people, a people always accustomed to having advantage -taken of their helplessness, and never expecting just or kind -treatment from any but their own families and very closest intimates. -Appeal to _me_ to be gentle, to be fair, to be generous? Of course, -they wanted to, but they couldn't dare. - - - -CHAPTER XXXIV - -THE YANKEE AND THE KING SOLD AS SLAVES - -Well, what had I better do? Nothing in a hurry, sure. I must -get up a diversion; anything to employ me while I could think, -and while these poor fellows could have a chance to come to life -again. There sat Marco, petrified in the act of trying to get -the hang of his miller-gun--turned to stone, just in the attitude -he was in when my pile-driver fell, the toy still gripped in his -unconscious fingers. So I took it from him and proposed to explain -its mystery. Mystery! a simple little thing like that; and yet it -was mysterious enough, for that race and that age. - -I never saw such an awkward people, with machinery; you see, they -were totally unused to it. The miller-gun was a little double-barreled -tube of toughened glass, with a neat little trick of a spring -to it, which upon pressure would let a shot escape. But the shot -wouldn't hurt anybody, it would only drop into your hand. In the -gun were two sizes--wee mustard-seed shot, and another sort that -were several times larger. They were money. The mustard-seed -shot represented milrays, the larger ones mills. So the gun was -a purse; and very handy, too; you could pay out money in the dark -with it, with accuracy; and you could carry it in your mouth; or -in your vest pocket, if you had one. I made them of several sizes ---one size so large that it would carry the equivalent of a dollar. -Using shot for money was a good thing for the government; the metal -cost nothing, and the money couldn't be counterfeited, for I was -the only person in the kingdom who knew how to manage a shot tower. -"Paying the shot" soon came to be a common phrase. Yes, and I knew -it would still be passing men's lips, away down in the nineteenth -century, yet none would suspect how and when it originated. - -The king joined us, about this time, mightily refreshed by his nap, -and feeling good. Anything could make me nervous now, I was so -uneasy--for our lives were in danger; and so it worried me to -detect a complacent something in the king's eye which seemed to -indicate that he had been loading himself up for a performance -of some kind or other; confound it, why must he go and choose -such a time as this? - -I was right. He began, straight off, in the most innocently -artful, and transparent, and lubberly way, to lead up to the -subject of agriculture. The cold sweat broke out all over me. -I wanted to whisper in his ear, "Man, we are in awful danger! -every moment is worth a principality till we get back these men's -confidence; _don't_ waste any of this golden time." But of course -I couldn't do it. Whisper to him? It would look as if we were -conspiring. So I had to sit there and look calm and pleasant while -the king stood over that dynamite mine and mooned along about his -damned onions and things. At first the tumult of my own thoughts, -summoned by the danger-signal and swarming to the rescue from -every quarter of my skull, kept up such a hurrah and confusion -and fifing and drumming that I couldn't take in a word; but -presently when my mob of gathering plans began to crystallize -and fall into position and form line of battle, a sort of order and -quiet ensued and I caught the boom of the king's batteries, as if -out of remote distance: - -"--were not the best way, methinks, albeit it is not to be denied -that authorities differ as concerning this point, some contending -that the onion is but an unwholesome berry when stricken early -from the tree--" - -The audience showed signs of life, and sought each other's eyes -in a surprised and troubled way. - -"--whileas others do yet maintain, with much show of reason, that -this is not of necessity the case, instancing that plums and other -like cereals do be always dug in the unripe state--" - -The audience exhibited distinct distress; yes, and also fear. - -"--yet are they clearly wholesome, the more especially when one -doth assuage the asperities of their nature by admixture of the -tranquilizing juice of the wayward cabbage--" - -The wild light of terror began to glow in these men's eyes, and -one of them muttered, "These be errors, every one--God hath surely -smitten the mind of this farmer." I was in miserable apprehension; -I sat upon thorns. - -"--and further instancing the known truth that in the case of -animals, the young, which may be called the green fruit of the -creature, is the better, all confessing that when a goat is ripe, -his fur doth heat and sore engame his flesh, the which defect, -taken in connection with his several rancid habits, and fulsome -appetites, and godless attitudes of mind, and bilious quality -of morals--" - -They rose and went for him! With a fierce shout, "The one would -betray us, the other is mad! Kill them! Kill them!" they flung -themselves upon us. What joy flamed up in the king's eye! He -might be lame in agriculture, but this kind of thing was just in -his line. He had been fasting long, he was hungry for a fight. -He hit the blacksmith a crack under the jaw that lifted him clear -off his feet and stretched him flat on his back. "St. George for -Britain!" and he downed the wheelwright. The mason was big, but -I laid him out like nothing. The three gathered themselves up and -came again; went down again; came again; and kept on repeating -this, with native British pluck, until they were battered to jelly, -reeling with exhaustion, and so blind that they couldn't tell us -from each other; and yet they kept right on, hammering away with -what might was left in them. Hammering each other--for we stepped -aside and looked on while they rolled, and struggled, and gouged, -and pounded, and bit, with the strict and wordless attention to -business of so many bulldogs. We looked on without apprehension, -for they were fast getting past ability to go for help against us, -and the arena was far enough from the public road to be safe -from intrusion. - -Well, while they were gradually playing out, it suddenly occurred -to me to wonder what had become of Marco. I looked around; he -was nowhere to be seen. Oh, but this was ominous! I pulled the -king's sleeve, and we glided away and rushed for the hut. No Marco -there, no Phyllis there! They had gone to the road for help, sure. -I told the king to give his heels wings, and I would explain later. -We made good time across the open ground, and as we darted into -the shelter of the wood I glanced back and saw a mob of excited -peasants swarm into view, with Marco and his wife at their head. -They were making a world of noise, but that couldn't hurt anybody; -the wood was dense, and as soon as we were well into its depths -we would take to a tree and let them whistle. Ah, but then came -another sound--dogs! Yes, that was quite another matter. It -magnified our contract--we must find running water. - -We tore along at a good gait, and soon left the sounds far behind -and modified to a murmur. We struck a stream and darted into it. -We waded swiftly down it, in the dim forest light, for as much -as three hundred yards, and then came across an oak with a great -bough sticking out over the water. We climbed up on this bough, -and began to work our way along it to the body of the tree; now -we began to hear those sounds more plainly; so the mob had struck -our trail. For a while the sounds approached pretty fast. And -then for another while they didn't. No doubt the dogs had found -the place where we had entered the stream, and were now waltzing -up and down the shores trying to pick up the trail again. - -When we were snugly lodged in the tree and curtained with foliage, -the king was satisfied, but I was doubtful. I believed we could -crawl along a branch and get into the next tree, and I judged it -worth while to try. We tried it, and made a success of it, though -the king slipped, at the junction, and came near failing to connect. -We got comfortable lodgment and satisfactory concealment among -the foliage, and then we had nothing to do but listen to the hunt. - -Presently we heard it coming--and coming on the jump, too; yes, -and down both sides of the stream. Louder--louder--next minute -it swelled swiftly up into a roar of shoutings, barkings, tramplings, -and swept by like a cyclone. - -"I was afraid that the overhanging branch would suggest something -to them," said I, "but I don't mind the disappointment. Come, -my liege, it were well that we make good use of our time. We've -flanked them. Dark is coming on, presently. If we can cross the -stream and get a good start, and borrow a couple of horses from -somebody's pasture to use for a few hours, we shall be safe enough." - -We started down, and got nearly to the lowest limb, when we seemed -to hear the hunt returning. We stopped to listen. - -"Yes," said I, "they're baffled, they've given it up, they're on -their way home. We will climb back to our roost again, and let -them go by." - -So we climbed back. The king listened a moment and said: - -"They still search--I wit the sign. We did best to abide." - -He was right. He knew more about hunting than I did. The noise -approached steadily, but not with a rush. The king said: - -"They reason that we were advantaged by no parlous start of them, -and being on foot are as yet no mighty way from where we took -the water." - -"Yes, sire, that is about it, I am afraid, though I was hoping -better things." - -The noise drew nearer and nearer, and soon the van was drifting -under us, on both sides of the water. A voice called a halt from -the other bank, and said: - -"An they were so minded, they could get to yon tree by this branch -that overhangs, and yet not touch ground. Ye will do well to send -a man up it." - -"Marry, that we will do!" - -I was obliged to admire my cuteness in foreseeing this very thing -and swapping trees to beat it. But, don't you know, there are -some things that can beat smartness and foresight? Awkwardness -and stupidity can. The best swordsman in the world doesn't need -to fear the second best swordsman in the world; no, the person -for him to be afraid of is some ignorant antagonist who has never -had a sword in his hand before; he doesn't do the thing he ought -to do, and so the expert isn't prepared for him; he does the thing -he ought not to do; and often it catches the expert out and ends -him on the spot. Well, how could I, with all my gifts, make any -valuable preparation against a near-sighted, cross-eyed, pudding-headed -clown who would aim himself at the wrong tree and hit the right -one? And that is what he did. He went for the wrong tree, which -was, of course, the right one by mistake, and up he started. - -Matters were serious now. We remained still, and awaited developments. -The peasant toiled his difficult way up. The king raised himself -up and stood; he made a leg ready, and when the comer's head -arrived in reach of it there was a dull thud, and down went the man -floundering to the ground. There was a wild outbreak of anger -below, and the mob swarmed in from all around, and there we were -treed, and prisoners. Another man started up; the bridging bough -was detected, and a volunteer started up the tree that furnished -the bridge. The king ordered me to play Horatius and keep the -bridge. For a while the enemy came thick and fast; but no matter, -the head man of each procession always got a buffet that dislodged -him as soon as he came in reach. The king's spirits rose, his joy -was limitless. He said that if nothing occurred to mar the prospect -we should have a beautiful night, for on this line of tactics we -could hold the tree against the whole country-side. - -However, the mob soon came to that conclusion themselves; wherefore -they called off the assault and began to debate other plans. -They had no weapons, but there were plenty of stones, and stones -might answer. We had no objections. A stone might possibly -penetrate to us once in a while, but it wasn't very likely; we were -well protected by boughs and foliage, and were not visible from -any good aiming point. If they would but waste half an hour in -stone-throwing, the dark would come to our help. We were feeling -very well satisfied. We could smile; almost laugh. - -But we didn't; which was just as well, for we should have been -interrupted. Before the stones had been raging through the leaves -and bouncing from the boughs fifteen minutes, we began to notice -a smell. A couple of sniffs of it was enough of an explanation ---it was smoke! Our game was up at last. We recognized that. When -smoke invites you, you have to come. They raised their pile of -dry brush and damp weeds higher and higher, and when they saw -the thick cloud begin to roll up and smother the tree, they broke -out in a storm of joy-clamors. I got enough breath to say: - -"Proceed, my liege; after you is manners." - -The king gasped: - -"Follow me down, and then back thyself against one side of the -trunk, and leave me the other. Then will we fight. Let each pile -his dead according to his own fashion and taste." - -Then he descended, barking and coughing, and I followed. I struck -the ground an instant after him; we sprang to our appointed places, -and began to give and take with all our might. The powwow and -racket were prodigious; it was a tempest of riot and confusion and -thick-falling blows. Suddenly some horsemen tore into the midst -of the crowd, and a voice shouted: - -"Hold--or ye are dead men!" - -How good it sounded! The owner of the voice bore all the marks of -a gentleman: picturesque and costly raiment, the aspect of command, -a hard countenance, with complexion and features marred by dissipation. -The mob fell humbly back, like so many spaniels. The gentleman -inspected us critically, then said sharply to the peasants: - -"What are ye doing to these people?" - -"They be madmen, worshipful sir, that have come wandering we know -not whence, and--" - -"Ye know not whence? Do ye pretend ye know them not?" - -"Most honored sir, we speak but the truth. They are strangers -and unknown to any in this region; and they be the most violent -and bloodthirsty madmen that ever--" - -"Peace! Ye know not what ye say. They are not mad. Who are ye? -And whence are ye? Explain." - -"We are but peaceful strangers, sir," I said, "and traveling upon -our own concerns. We are from a far country, and unacquainted -here. We have purposed no harm; and yet but for your brave -interference and protection these people would have killed us. -As you have divined, sir, we are not mad; neither are we violent -or bloodthirsty." - -The gentleman turned to his retinue and said calmly: "Lash me -these animals to their kennels!" - -The mob vanished in an instant; and after them plunged the horsemen, -laying about them with their whips and pitilessly riding down such -as were witless enough to keep the road instead of taking to the -bush. The shrieks and supplications presently died away in the -distance, and soon the horsemen began to straggle back. Meantime -the gentleman had been questioning us more closely, but had dug -no particulars out of us. We were lavish of recognition of the -service he was doing us, but we revealed nothing more than that we -were friendless strangers from a far country. When the escort were -all returned, the gentleman said to one of his servants: - -"Bring the led-horses and mount these people." - -"Yes, my lord." - -We were placed toward the rear, among the servants. We traveled -pretty fast, and finally drew rein some time after dark at a -roadside inn some ten or twelve miles from the scene of our -troubles. My lord went immediately to his room, after ordering -his supper, and we saw no more of him. At dawn in the morning -we breakfasted and made ready to start. - -My lord's chief attendant sauntered forward at that moment with -indolent grace, and said: - -"Ye have said ye should continue upon this road, which is our -direction likewise; wherefore my lord, the earl Grip, hath given -commandment that ye retain the horses and ride, and that certain -of us ride with ye a twenty mile to a fair town that hight Cambenet, -whenso ye shall be out of peril." - -We could do nothing less than express our thanks and accept the -offer. We jogged along, six in the party, at a moderate and -comfortable gait, and in conversation learned that my lord Grip -was a very great personage in his own region, which lay a day's -journey beyond Cambenet. We loitered to such a degree that it was -near the middle of the forenoon when we entered the market square -of the town. We dismounted, and left our thanks once more for -my lord, and then approached a crowd assembled in the center of -the square, to see what might be the object of interest. It was the -remnant of that old peregrinating band of slaves! So they had -been dragging their chains about, all this weary time. That poor -husband was gone, and also many others; and some few purchases -had been added to the gang. The king was not interested, and -wanted to move along, but I was absorbed, and full of pity. I could -not take my eyes away from these worn and wasted wrecks of humanity. -There they sat, grounded upon the ground, silent, uncomplaining, -with bowed heads, a pathetic sight. And by hideous contrast, a -redundant orator was making a speech to another gathering not thirty -steps away, in fulsome laudation of "our glorious British liberties!" - -I was boiling. I had forgotten I was a plebeian, I was remembering -I was a man. Cost what it might, I would mount that rostrum and-- - -Click! the king and I were handcuffed together! Our companions, -those servants, had done it; my lord Grip stood looking on. The -king burst out in a fury, and said: - -"What meaneth this ill-mannered jest?" - -My lord merely said to his head miscreant, coolly: - -"Put up the slaves and sell them!" - -_Slaves!_ The word had a new sound--and how unspeakably awful! The -king lifted his manacles and brought them down with a deadly force; -but my lord was out of the way when they arrived. A dozen of -the rascal's servants sprang forward, and in a moment we were -helpless, with our hands bound behind us. We so loudly and so -earnestly proclaimed ourselves freemen, that we got the interested -attention of that liberty-mouthing orator and his patriotic crowd, -and they gathered about us and assumed a very determined attitude. -The orator said: - -"If, indeed, ye are freemen, ye have nought to fear--the God-given -liberties of Britain are about ye for your shield and shelter! -(Applause.) Ye shall soon see. Bring forth your proofs." - -"What proofs?" - -"Proof that ye are freemen." - -Ah--I remembered! I came to myself; I said nothing. But the -king stormed out: - -"Thou'rt insane, man. It were better, and more in reason, that -this thief and scoundrel here prove that we are _not_ freemen." - -You see, he knew his own laws just as other people so often know -the laws; by words, not by effects. They take a _meaning_, and get -to be very vivid, when you come to apply them to yourself. - -All hands shook their heads and looked disappointed; some turned -away, no longer interested. The orator said--and this time in the -tones of business, not of sentiment: - -"An ye do not know your country's laws, it were time ye learned -them. Ye are strangers to us; ye will not deny that. Ye may be -freemen, we do not deny that; but also ye may be slaves. The law -is clear: it doth not require the claimant to prove ye are slaves, -it requireth you to prove ye are not." - -I said: - -"Dear sir, give us only time to send to Astolat; or give us only -time to send to the Valley of Holiness--" - -"Peace, good man, these are extraordinary requests, and you may -not hope to have them granted. It would cost much time, and would -unwarrantably inconvenience your master--" - -"_Master_, idiot!" stormed the king. "I have no master, I myself -am the m--" - -"Silence, for God's sake!" - -I got the words out in time to stop the king. We were in trouble -enough already; it could not help us any to give these people -the notion that we were lunatics. - -There is no use in stringing out the details. The earl put us up -and sold us at auction. This same infernal law had existed in -our own South in my own time, more than thirteen hundred years -later, and under it hundreds of freemen who could not prove that -they were freemen had been sold into lifelong slavery without -the circumstance making any particular impression upon me; but the -minute law and the auction block came into my personal experience, -a thing which had been merely improper before became suddenly -hellish. Well, that's the way we are made. - -Yes, we were sold at auction, like swine. In a big town and an -active market we should have brought a good price; but this place -was utterly stagnant and so we sold at a figure which makes me -ashamed, every time I think of it. The King of England brought -seven dollars, and his prime minister nine; whereas the king was -easily worth twelve dollars and I as easily worth fifteen. But -that is the way things always go; if you force a sale on a dull -market, I don't care what the property is, you are going to make -a poor business of it, and you can make up your mind to it. If -the earl had had wit enough to-- - -However, there is no occasion for my working my sympathies up -on his account. Let him go, for the present; I took his number, -so to speak. - -The slave-dealer bought us both, and hitched us onto that long -chain of his, and we constituted the rear of his procession. We -took up our line of march and passed out of Cambenet at noon; -and it seemed to me unaccountably strange and odd that the King -of England and his chief minister, marching manacled and fettered -and yoked, in a slave convoy, could move by all manner of idle men -and women, and under windows where sat the sweet and the lovely, -and yet never attract a curious eye, never provoke a single remark. -Dear, dear, it only shows that there is nothing diviner about a king -than there is about a tramp, after all. He is just a cheap and -hollow artificiality when you don't know he is a king. But reveal -his quality, and dear me it takes your very breath away to look -at him. I reckon we are all fools. Born so, no doubt. - - - -CHAPTER XXXV - -A PITIFUL INCIDENT - -It's a world of surprises. The king brooded; this was natural. -What would he brood about, should you say? Why, about the prodigious -nature of his fall, of course--from the loftiest place in the world -to the lowest; from the most illustrious station in the world to -the obscurest; from the grandest vocation among men to the basest. -No, I take my oath that the thing that graveled him most, to start -with, was not this, but the price he had fetched! He couldn't -seem to get over that seven dollars. Well, it stunned me so, when -I first found it out, that I couldn't believe it; it didn't seem -natural. But as soon as my mental sight cleared and I got a right -focus on it, I saw I was mistaken; it _was_ natural. For this -reason: a king is a mere artificiality, and so a king's feelings, -like the impulses of an automatic doll, are mere artificialities; -but as a man, he is a reality, and his feelings, as a man, are -real, not phantoms. It shames the average man to be valued below -his own estimate of his worth, and the king certainly wasn't -anything more than an average man, if he was up that high. - -Confound him, he wearied me with arguments to show that in anything -like a fair market he would have fetched twenty-five dollars, -sure--a thing which was plainly nonsense, and full or the baldest -conceit; I wasn't worth it myself. But it was tender ground for -me to argue on. In fact, I had to simply shirk argument and do -the diplomatic instead. I had to throw conscience aside, and -brazenly concede that he ought to have brought twenty-five dollars; -whereas I was quite well aware that in all the ages, the world had -never seen a king that was worth half the money, and during the -next thirteen centuries wouldn't see one that was worth the fourth -of it. Yes, he tired me. If he began to talk about the crops; -or about the recent weather; or about the condition of politics; -or about dogs, or cats, or morals, or theology--no matter what ---I sighed, for I knew what was coming; he was going to get out of it -a palliation of that tiresome seven-dollar sale. Wherever we -halted where there was a crowd, he would give me a look which -said plainly: "if that thing could be tried over again now, with -this kind of folk, you would see a different result." Well, when -he was first sold, it secretly tickled me to see him go for seven -dollars; but before he was done with his sweating and worrying -I wished he had fetched a hundred. The thing never got a chance -to die, for every day, at one place or another, possible purchasers -looked us over, and, as often as any other way, their comment on -the king was something like this: - -"Here's a two-dollar-and-a-half chump with a thirty-dollar style. -Pity but style was marketable." - -At last this sort of remark produced an evil result. Our owner -was a practical person and he perceived that this defect must be -mended if he hoped to find a purchaser for the king. So he went -to work to take the style out of his sacred majesty. I could have -given the man some valuable advice, but I didn't; you mustn't -volunteer advice to a slave-driver unless you want to damage -the cause you are arguing for. I had found it a sufficiently -difficult job to reduce the king's style to a peasant's style, -even when he was a willing and anxious pupil; now then, to undertake -to reduce the king's style to a slave's style--and by force--go to! -it was a stately contract. Never mind the details--it will save me -trouble to let you imagine them. I will only remark that at the -end of a week there was plenty of evidence that lash and club -and fist had done their work well; the king's body was a sight -to see--and to weep over; but his spirit?--why, it wasn't even -phased. Even that dull clod of a slave-driver was able to see -that there can be such a thing as a slave who will remain a man -till he dies; whose bones you can break, but whose manhood you -can't. This man found that from his first effort down to his -latest, he couldn't ever come within reach of the king, but the -king was ready to plunge for him, and did it. So he gave up -at last, and left the king in possession of his style unimpaired. -The fact is, the king was a good deal more than a king, he was -a man; and when a man is a man, you can't knock it out of him. - -We had a rough time for a month, tramping to and fro in the earth, -and suffering. And what Englishman was the most interested in -the slavery question by that time? His grace the king! Yes; from -being the most indifferent, he was become the most interested. -He was become the bitterest hater of the institution I had ever -heard talk. And so I ventured to ask once more a question which -I had asked years before and had gotten such a sharp answer that -I had not thought it prudent to meddle in the matter further. -Would he abolish slavery? - -His answer was as sharp as before, but it was music this time; -I shouldn't ever wish to hear pleasanter, though the profanity -was not good, being awkwardly put together, and with the crash-word -almost in the middle instead of at the end, where, of course, it -ought to have been. - -I was ready and willing to get free now; I hadn't wanted to get -free any sooner. No, I cannot quite say that. I had wanted to, -but I had not been willing to take desperate chances, and had -always dissuaded the king from them. But now--ah, it was a new -atmosphere! Liberty would be worth any cost that might be put -upon it now. I set about a plan, and was straightway charmed -with it. It would require time, yes, and patience, too, a great -deal of both. One could invent quicker ways, and fully as sure -ones; but none that would be as picturesque as this; none that -could be made so dramatic. And so I was not going to give this -one up. It might delay us months, but no matter, I would carry -it out or break something. - -Now and then we had an adventure. One night we were overtaken -by a snow-storm while still a mile from the village we were making -for. Almost instantly we were shut up as in a fog, the driving -snow was so thick. You couldn't see a thing, and we were soon -lost. The slave-driver lashed us desperately, for he saw ruin -before him, but his lashings only made matters worse, for they -drove us further from the road and from likelihood of succor. -So we had to stop at last and slump down in the snow where we -were. The storm continued until toward midnight, then ceased. -By this time two of our feebler men and three of our women were -dead, and others past moving and threatened with death. Our -master was nearly beside himself. He stirred up the living, and -made us stand, jump, slap ourselves, to restore our circulation, -and he helped as well as he could with his whip. - -Now came a diversion. We heard shrieks and yells, and soon a -woman came running and crying; and seeing our group, she flung -herself into our midst and begged for protection. A mob of people -came tearing after her, some with torches, and they said she was a -witch who had caused several cows to die by a strange disease, -and practiced her arts by help of a devil in the form of a black -cat. This poor woman had been stoned until she hardly looked -human, she was so battered and bloody. The mob wanted to burn her. - -Well, now, what do you suppose our master did? When we closed -around this poor creature to shelter her, he saw his chance. He -said, burn her here, or they shouldn't have her at all. Imagine -that! They were willing. They fastened her to a post; they -brought wood and piled it about her; they applied the torch while -she shrieked and pleaded and strained her two young daughters -to her breast; and our brute, with a heart solely for business, -lashed us into position about the stake and warmed us into life -and commercial value by the same fire which took away the innocent -life of that poor harmless mother. That was the sort of master we -had. I took _his_ number. That snow-storm cost him nine of his -flock; and he was more brutal to us than ever, after that, for -many days together, he was so enraged over his loss. - -We had adventures all along. One day we ran into a procession. -And such a procession! All the riffraff of the kingdom seemed -to be comprehended in it; and all drunk at that. In the van was -a cart with a coffin in it, and on the coffin sat a comely young -girl of about eighteen suckling a baby, which she squeezed to her -breast in a passion of love every little while, and every little -while wiped from its face the tears which her eyes rained down -upon it; and always the foolish little thing smiled up at her, -happy and content, kneading her breast with its dimpled fat hand, -which she patted and fondled right over her breaking heart. - -Men and women, boys and girls, trotted along beside or after -the cart, hooting, shouting profane and ribald remarks, singing -snatches of foul song, skipping, dancing--a very holiday of -hellions, a sickening sight. We had struck a suburb of London, -outside the walls, and this was a sample of one sort of London -society. Our master secured a good place for us near the gallows. -A priest was in attendance, and he helped the girl climb up, and -said comforting words to her, and made the under-sheriff provide -a stool for her. Then he stood there by her on the gallows, and -for a moment looked down upon the mass of upturned faces at his -feet, then out over the solid pavement of heads that stretched away -on every side occupying the vacancies far and near, and then began -to tell the story of the case. And there was pity in his voice ---how seldom a sound that was in that ignorant and savage land! -I remember every detail of what he said, except the words he said -it in; and so I change it into my own words: - -"Law is intended to mete out justice. Sometimes it fails. This -cannot be helped. We can only grieve, and be resigned, and pray -for the soul of him who falls unfairly by the arm of the law, and -that his fellows may be few. A law sends this poor young thing -to death--and it is right. But another law had placed her where -she must commit her crime or starve with her child--and before God -that law is responsible for both her crime and her ignominious death! - -"A little while ago this young thing, this child of eighteen years, -was as happy a wife and mother as any in England; and her lips -were blithe with song, which is the native speech of glad and -innocent hearts. Her young husband was as happy as she; for he was -doing his whole duty, he worked early and late at his handicraft, -his bread was honest bread well and fairly earned, he was prospering, -he was furnishing shelter and sustenance to his family, he was -adding his mite to the wealth of the nation. By consent of a -treacherous law, instant destruction fell upon this holy home and -swept it away! That young husband was waylaid and impressed, -and sent to sea. The wife knew nothing of it. She sought him -everywhere, she moved the hardest hearts with the supplications -of her tears, the broken eloquence of her despair. Weeks dragged -by, she watching, waiting, hoping, her mind going slowly to wreck -under the burden of her misery. Little by little all her small -possessions went for food. When she could no longer pay her rent, -they turned her out of doors. She begged, while she had strength; -when she was starving at last, and her milk failing, she stole a -piece of linen cloth of the value of a fourth part of a cent, -thinking to sell it and save her child. But she was seen by the -owner of the cloth. She was put in jail and brought to trial. -The man testified to the facts. A plea was made for her, and her -sorrowful story was told in her behalf. She spoke, too, by -permission, and said she did steal the cloth, but that her mind -was so disordered of late by trouble that when she was overborne -with hunger all acts, criminal or other, swam meaningless through -her brain and she knew nothing rightly, except that she was so -hungry! For a moment all were touched, and there was disposition -to deal mercifully with her, seeing that she was so young and -friendless, and her case so piteous, and the law that robbed her -of her support to blame as being the first and only cause of her -transgression; but the prosecuting officer replied that whereas -these things were all true, and most pitiful as well, still there -was much small theft in these days, and mistimed mercy here would -be a danger to property--oh, my God, is there no property in ruined -homes, and orphaned babes, and broken hearts that British law -holds precious!--and so he must require sentence. - -"When the judge put on his black cap, the owner of the stolen -linen rose trembling up, his lip quivering, his face as gray as -ashes; and when the awful words came, he cried out, 'Oh, poor -child, poor child, I did not know it was death!' and fell as a -tree falls. When they lifted him up his reason was gone; before -the sun was set, he had taken his own life. A kindly man; a man -whose heart was right, at bottom; add his murder to this that -is to be now done here; and charge them both where they belong ---to the rulers and the bitter laws of Britain. The time is come, my -child; let me pray over thee--not _for_ thee, dear abused poor heart -and innocent, but for them that be guilty of thy ruin and death, -who need it more." - -After his prayer they put the noose around the young girl's neck, -and they had great trouble to adjust the knot under her ear, -because she was devouring the baby all the time, wildly kissing it, -and snatching it to her face and her breast, and drenching it -with tears, and half moaning, half shrieking all the while, and the -baby crowing, and laughing, and kicking its feet with delight over -what it took for romp and play. Even the hangman couldn't stand it, -but turned away. When all was ready the priest gently pulled and -tugged and forced the child out of the mother's arms, and stepped -quickly out of her reach; but she clasped her hands, and made a -wild spring toward him, with a shriek; but the rope--and the -under-sheriff--held her short. Then she went on her knees and -stretched out her hands and cried: - -"One more kiss--oh, my God, one more, one more,--it is the dying -that begs it!" - -She got it; she almost smothered the little thing. And when they -got it away again, she cried out: - -"Oh, my child, my darling, it will die! It has no home, it has -no father, no friend, no mother--" - -"It has them all!" said that good priest. "All these will I be -to it till I die." - -You should have seen her face then! Gratitude? Lord, what do -you want with words to express that? Words are only painted fire; -a look is the fire itself. She gave that look, and carried it away -to the treasury of heaven, where all things that are divine belong. - - - -CHAPTER XXXVI - -AN ENCOUNTER IN THE DARK - -London--to a slave--was a sufficiently interesting place. It was -merely a great big village; and mainly mud and thatch. The streets -were muddy, crooked, unpaved. The populace was an ever flocking -and drifting swarm of rags, and splendors, of nodding plumes and -shining armor. The king had a palace there; he saw the outside -of it. It made him sigh; yes, and swear a little, in a poor -juvenile sixth century way. We saw knights and grandees whom -we knew, but they didn't know us in our rags and dirt and raw -welts and bruises, and wouldn't have recognized us if we had hailed -them, nor stopped to answer, either, it being unlawful to speak -with slaves on a chain. Sandy passed within ten yards of me on -a mule--hunting for me, I imagined. But the thing which clean -broke my heart was something which happened in front of our old -barrack in a square, while we were enduring the spectacle of a man -being boiled to death in oil for counterfeiting pennies. It was -the sight of a newsboy--and I couldn't get at him! Still, I had -one comfort--here was proof that Clarence was still alive and -banging away. I meant to be with him before long; the thought was -full of cheer. - -I had one little glimpse of another thing, one day, which gave me -a great uplift. It was a wire stretching from housetop to housetop. -Telegraph or telephone, sure. I did very much wish I had a little -piece of it. It was just what I needed, in order to carry out my -project of escape. My idea was to get loose some night, along with -the king, then gag and bind our master, change clothes with him, -batter him into the aspect of a stranger, hitch him to the slave-chain, -assume possession of the property, march to Camelot, and-- - -But you get my idea; you see what a stunning dramatic surprise -I would wind up with at the palace. It was all feasible, if -I could only get hold of a slender piece of iron which I could -shape into a lock-pick. I could then undo the lumbering padlocks -with which our chains were fastened, whenever I might choose. -But I never had any luck; no such thing ever happened to fall -in my way. However, my chance came at last. A gentleman who -had come twice before to dicker for me, without result, or indeed -any approach to a result, came again. I was far from expecting -ever to belong to him, for the price asked for me from the time -I was first enslaved was exorbitant, and always provoked either -anger or derision, yet my master stuck stubbornly to it--twenty-two -dollars. He wouldn't bate a cent. The king was greatly admired, -because of his grand physique, but his kingly style was against -him, and he wasn't salable; nobody wanted that kind of a slave. -I considered myself safe from parting from him because of my -extravagant price. No, I was not expecting to ever belong to -this gentleman whom I have spoken of, but he had something which -I expected would belong to me eventually, if he would but visit -us often enough. It was a steel thing with a long pin to it, with -which his long cloth outside garment was fastened together in -front. There were three of them. He had disappointed me twice, -because he did not come quite close enough to me to make my project -entirely safe; but this time I succeeded; I captured the lower -clasp of the three, and when he missed it he thought he had lost -it on the way. - -I had a chance to be glad about a minute, then straightway a chance -to be sad again. For when the purchase was about to fail, as usual, -the master suddenly spoke up and said what would be worded thus ---in modern English: - -"I'll tell you what I'll do. I'm tired supporting these two for -no good. Give me twenty-two dollars for this one, and I'll throw -the other one in." - -The king couldn't get his breath, he was in such a fury. He began -to choke and gag, and meantime the master and the gentleman moved -away discussing. - -"An ye will keep the offer open--" - -"'Tis open till the morrow at this hour." - -"Then I will answer you at that time," said the gentleman, and -disappeared, the master following him. - -I had a time of it to cool the king down, but I managed it. -I whispered in his ear, to this effect: - -"Your grace _will_ go for nothing, but after another fashion. And -so shall I. To-night we shall both be free." - -"Ah! How is that?" - -"With this thing which I have stolen, I will unlock these locks -and cast off these chains to-night. When he comes about nine-thirty -to inspect us for the night, we will seize him, gag him, batter -him, and early in the morning we will march out of this town, -proprietors of this caravan of slaves." - -That was as far as I went, but the king was charmed and satisfied. -That evening we waited patiently for our fellow-slaves to get -to sleep and signify it by the usual sign, for you must not take -many chances on those poor fellows if you can avoid it. It is -best to keep your own secrets. No doubt they fidgeted only about -as usual, but it didn't seem so to me. It seemed to me that they -were going to be forever getting down to their regular snoring. -As the time dragged on I got nervously afraid we shouldn't have -enough of it left for our needs; so I made several premature -attempts, and merely delayed things by it; for I couldn't seem -to touch a padlock, there in the dark, without starting a rattle -out of it which interrupted somebody's sleep and made him turn -over and wake some more of the gang. - -But finally I did get my last iron off, and was a free man once -more. I took a good breath of relief, and reached for the king's -irons. Too late! in comes the master, with a light in one hand -and his heavy walking-staff in the other. I snuggled close among -the wallow of snorers, to conceal as nearly as possible that I was -naked of irons; and I kept a sharp lookout and prepared to spring -for my man the moment he should bend over me. - -But he didn't approach. He stopped, gazed absently toward our -dusky mass a minute, evidently thinking about something else; -then set down his light, moved musingly toward the door, and before -a body could imagine what he was going to do, he was out of the -door and had closed it behind him. - -"Quick!" said the king. "Fetch him back!" - -Of course, it was the thing to do, and I was up and out in a -moment. But, dear me, there were no lamps in those days, and -it was a dark night. But I glimpsed a dim figure a few steps -away. I darted for it, threw myself upon it, and then there was -a state of things and lively! We fought and scuffled and struggled, -and drew a crowd in no time. They took an immense interest in -the fight and encouraged us all they could, and, in fact, couldn't -have been pleasanter or more cordial if it had been their own -fight. Then a tremendous row broke out behind us, and as much -as half of our audience left us, with a rush, to invest some -sympathy in that. Lanterns began to swing in all directions; -it was the watch gathering from far and near. Presently a halberd -fell across my back, as a reminder, and I knew what it meant. -I was in custody. So was my adversary. We were marched off toward -prison, one on each side of the watchman. Here was disaster, -here was a fine scheme gone to sudden destruction! I tried to -imagine what would happen when the master should discover that -it was I who had been fighting him; and what would happen if they -jailed us together in the general apartment for brawlers and petty -law-breakers, as was the custom; and what might-- - -Just then my antagonist turned his face around in my direction, -the freckled light from the watchman's tin lantern fell on it, -and, by George, he was the wrong man! - - - -CHAPTER XXXVII - -AN AWFUL PREDICAMENT - -Sleep? It was impossible. It would naturally have been impossible -in that noisome cavern of a jail, with its mangy crowd of drunken, -quarrelsome, and song-singing rapscallions. But the thing that -made sleep all the more a thing not to be dreamed of, was my -racking impatience to get out of this place and find out the whole -size of what might have happened yonder in the slave-quarters -in consequence of that intolerable miscarriage of mine. - -It was a long night, but the morning got around at last. I made -a full and frank explanation to the court. I said I was a slave, -the property of the great Earl Grip, who had arrived just after -dark at the Tabard inn in the village on the other side of the -water, and had stopped there over night, by compulsion, he being -taken deadly sick with a strange and sudden disorder. I had been -ordered to cross to the city in all haste and bring the best -physician; I was doing my best; naturally I was running with all -my might; the night was dark, I ran against this common person -here, who seized me by the throat and began to pummel me, although -I told him my errand, and implored him, for the sake of the great -earl my master's mortal peril-- - -The common person interrupted and said it was a lie; and was going -to explain how I rushed upon him and attacked him without a word-- - -"Silence, sirrah!" from the court. "Take him hence and give him -a few stripes whereby to teach him how to treat the servant of -a nobleman after a different fashion another time. Go!" - -Then the court begged my pardon, and hoped I would not fail -to tell his lordship it was in no wise the court's fault that this -high-handed thing had happened. I said I would make it all right, -and so took my leave. Took it just in time, too; he was starting -to ask me why I didn't fetch out these facts the moment I was -arrested. I said I would if I had thought of it--which was true ---but that I was so battered by that man that all my wit was knocked -out of me--and so forth and so on, and got myself away, still -mumbling. I didn't wait for breakfast. No grass grew under my -feet. I was soon at the slave quarters. Empty--everybody gone! -That is, everybody except one body--the slave-master's. It lay -there all battered to pulp; and all about were the evidences of -a terrific fight. There was a rude board coffin on a cart at -the door, and workmen, assisted by the police, were thinning a -road through the gaping crowd in order that they might bring it in. - -I picked out a man humble enough in life to condescend to talk -with one so shabby as I, and got his account of the matter. - -"There were sixteen slaves here. They rose against their master -in the night, and thou seest how it ended." - -"Yes. How did it begin?" - -"There was no witness but the slaves. They said the slave that -was most valuable got free of his bonds and escaped in some strange -way--by magic arts 'twas thought, by reason that he had no key, -and the locks were neither broke nor in any wise injured. When -the master discovered his loss, he was mad with despair, and threw -himself upon his people with his heavy stick, who resisted and -brake his back and in other and divers ways did give him hurts -that brought him swiftly to his end." - -"This is dreadful. It will go hard with the slaves, no doubt, -upon the trial." - -"Marry, the trial is over." - -"Over!" - -"Would they be a week, think you--and the matter so simple? They -were not the half of a quarter of an hour at it." - -"Why, I don't see how they could determine which were the guilty -ones in so short a time." - -"_Which_ ones? Indeed, they considered not particulars like to that. -They condemned them in a body. Wit ye not the law?--which men -say the Romans left behind them here when they went--that if one -slave killeth his master all the slaves of that man must die for it." - -"True. I had forgotten. And when will these die?" - -"Belike within a four and twenty hours; albeit some say they will -wait a pair of days more, if peradventure they may find the missing -one meantime." - -The missing one! It made me feel uncomfortable. - -"Is it likely they will find him?" - -"Before the day is spent--yes. They seek him everywhere. They -stand at the gates of the town, with certain of the slaves who -will discover him to them if he cometh, and none can pass out -but he will be first examined." - -"Might one see the place where the rest are confined?" - -"The outside of it--yes. The inside of it--but ye will not want -to see that." - -I took the address of that prison for future reference and then -sauntered off. At the first second-hand clothing shop I came to, -up a back street, I got a rough rig suitable for a common seaman -who might be going on a cold voyage, and bound up my face with -a liberal bandage, saying I had a toothache. This concealed my -worst bruises. It was a transformation. I no longer resembled my -former self. Then I struck out for that wire, found it and -followed it to its den. It was a little room over a butcher's -shop--which meant that business wasn't very brisk in the telegraphic -line. The young chap in charge was drowsing at his table. I locked -the door and put the vast key in my bosom. This alarmed the young -fellow, and he was going to make a noise; but I said: - -"Save your wind; if you open your mouth you are dead, sure. Tackle -your instrument. Lively, now! Call Camelot." - -"This doth amaze me! How should such as you know aught of such -matters as--" - -"Call Camelot! I am a desperate man. Call Camelot, or get away -from the instrument and I will do it myself." - -"What--you?" - -"Yes--certainly. Stop gabbling. Call the palace." - -He made the call. - -"Now, then, call Clarence." - -"Clarence _who_?" - -"Never mind Clarence who. Say you want Clarence; you'll get -an answer." - -He did so. We waited five nerve-straining minutes--ten minutes ---how long it did seem!--and then came a click that was as familiar -to me as a human voice; for Clarence had been my own pupil. - -"Now, my lad, vacate! They would have known _my_ touch, maybe, -and so your call was surest; but I'm all right now." - -He vacated the place and cocked his ear to listen--but it didn't -win. I used a cipher. I didn't waste any time in sociabilities -with Clarence, but squared away for business, straight-off--thus: - -"The king is here and in danger. We were captured and brought -here as slaves. We should not be able to prove our identity ---and the fact is, I am not in a position to try. Send a telegram -for the palace here which will carry conviction with it." - -His answer came straight back: - -"They don't know anything about the telegraph; they haven't had -any experience yet, the line to London is so new. Better not -venture that. They might hang you. Think up something else." - -Might hang us! Little he knew how closely he was crowding the -facts. I couldn't think up anything for the moment. Then an idea -struck me, and I started it along: - -"Send five hundred picked knights with Launcelot in the lead; and -send them on the jump. Let them enter by the southwest gate, and -look out for the man with a white cloth around his right arm." - -The answer was prompt: - -"They shall start in half an hour." - -"All right, Clarence; now tell this lad here that I'm a friend -of yours and a dead-head; and that he must be discreet and say -nothing about this visit of mine." - -The instrument began to talk to the youth and I hurried away. -I fell to ciphering. In half an hour it would be nine o'clock. -Knights and horses in heavy armor couldn't travel very fast. -These would make the best time they could, and now that the ground -was in good condition, and no snow or mud, they would probably -make a seven-mile gait; they would have to change horses a couple -of times; they would arrive about six, or a little after; it would -still be plenty light enough; they would see the white cloth which -I should tie around my right arm, and I would take command. We -would surround that prison and have the king out in no time. -It would be showy and picturesque enough, all things considered, -though I would have preferred noonday, on account of the more -theatrical aspect the thing would have. - -Now, then, in order to increase the strings to my bow, I thought -I would look up some of those people whom I had formerly recognized, -and make myself known. That would help us out of our scrape, -without the knights. But I must proceed cautiously, for it was -a risky business. I must get into sumptuous raiment, and it -wouldn't do to run and jump into it. No, I must work up to it -by degrees, buying suit after suit of clothes, in shops wide apart, -and getting a little finer article with each change, until I should -finally reach silk and velvet, and be ready for my project. So -I started. - -But the scheme fell through like scat! The first corner I turned, -I came plump upon one of our slaves, snooping around with a watchman. -I coughed at the moment, and he gave me a sudden look that bit right -into my marrow. I judge he thought he had heard that cough before. -I turned immediately into a shop and worked along down the counter, -pricing things and watching out of the corner of my eye. Those -people had stopped, and were talking together and looking in at -the door. I made up my mind to get out the back way, if there -was a back way, and I asked the shopwoman if I could step out -there and look for the escaped slave, who was believed to be in -hiding back there somewhere, and said I was an officer in disguise, -and my pard was yonder at the door with one of the murderers in -charge, and would she be good enough to step there and tell him -he needn't wait, but had better go at once to the further end of -the back alley and be ready to head him off when I rousted him out. - -She was blazing with eagerness to see one of those already celebrated -murderers, and she started on the errand at once. I slipped out -the back way, locked the door behind me, put the key in my pocket -and started off, chuckling to myself and comfortable. - -Well, I had gone and spoiled it again, made another mistake. -A double one, in fact. There were plenty of ways to get rid of -that officer by some simple and plausible device, but no, I must -pick out a picturesque one; it is the crying defect of my character. -And then, I had ordered my procedure upon what the officer, being -human, would _naturally_ do; whereas when you are least expecting it, -a man will now and then go and do the very thing which it's _not_ -natural for him to do. The natural thing for the officer to do, -in this case, was to follow straight on my heels; he would find -a stout oaken door, securely locked, between him and me; before -he could break it down, I should be far away and engaged in slipping -into a succession of baffling disguises which would soon get me -into a sort of raiment which was a surer protection from meddling -law-dogs in Britain than any amount of mere innocence and purity -of character. But instead of doing the natural thing, the officer -took me at my word, and followed my instructions. And so, as I -came trotting out of that cul de sac, full of satisfaction with my -own cleverness, he turned the corner and I walked right into his -handcuffs. If I had known it was a cul de sac--however, there -isn't any excusing a blunder like that, let it go. Charge it up -to profit and loss. - -Of course, I was indignant, and swore I had just come ashore from -a long voyage, and all that sort of thing--just to see, you know, -if it would deceive that slave. But it didn't. He knew me. Then -I reproached him for betraying me. He was more surprised than -hurt. He stretched his eyes wide, and said: - -"What, wouldst have me let thee, of all men, escape and not hang -with us, when thou'rt the very _cause_ of our hanging? Go to!" - -"Go to" was their way of saying "I should smile!" or "I like that!" -Queer talkers, those people. - -Well, there was a sort of bastard justice in his view of the case, -and so I dropped the matter. When you can't cure a disaster by -argument, what is the use to argue? It isn't my way. So I only said: - -"You're not going to be hanged. None of us are." - -Both men laughed, and the slave said: - -"Ye have not ranked as a fool--before. You might better keep -your reputation, seeing the strain would not be for long." - -"It will stand it, I reckon. Before to-morrow we shall be out -of prison, and free to go where we will, besides." - -The witty officer lifted at his left ear with his thumb, made -a rasping noise in his throat, and said: - -"Out of prison--yes--ye say true. And free likewise to go where -ye will, so ye wander not out of his grace the Devil's sultry realm." - -I kept my temper, and said, indifferently: - -"Now I suppose you really think we are going to hang within -a day or two." - -"I thought it not many minutes ago, for so the thing was decided -and proclaimed." - -"Ah, then you've changed your mind, is that it?" - -"Even that. I only _thought_, then; I _know_, now." - -I felt sarcastical, so I said: - -"Oh, sapient servant of the law, condescend to tell us, then, -what you _know_." - -"That ye will all be hanged _to-day_, at mid-afternoon! Oho! that -shot hit home! Lean upon me." - -The fact is I did need to lean upon somebody. My knights couldn't -arrive in time. They would be as much as three hours too late. -Nothing in the world could save the King of England; nor me, which -was more important. More important, not merely to me, but to -the nation--the only nation on earth standing ready to blossom -into civilization. I was sick. I said no more, there wasn't -anything to say. I knew what the man meant; that if the missing -slave was found, the postponement would be revoked, the execution -take place to-day. Well, the missing slave was found. - - - -CHAPTER XXXVIII - -SIR LAUNCELOT AND KNIGHTS TO THE RESCUE - -Nearing four in the afternoon. The scene was just outside the -walls of London. A cool, comfortable, superb day, with a brilliant -sun; the kind of day to make one want to live, not die. The -multitude was prodigious and far-reaching; and yet we fifteen -poor devils hadn't a friend in it. There was something painful -in that thought, look at it how you might. There we sat, on our -tall scaffold, the butt of the hate and mockery of all those -enemies. We were being made a holiday spectacle. They had built -a sort of grand stand for the nobility and gentry, and these were -there in full force, with their ladies. We recognized a good -many of them. - -The crowd got a brief and unexpected dash of diversion out of -the king. The moment we were freed of our bonds he sprang up, -in his fantastic rags, with face bruised out of all recognition, and -proclaimed himself Arthur, King of Britain, and denounced the -awful penalties of treason upon every soul there present if hair -of his sacred head were touched. It startled and surprised him -to hear them break into a vast roar of laughter. It wounded his -dignity, and he locked himself up in silence. Then, although -the crowd begged him to go on, and tried to provoke him to it -by catcalls, jeers, and shouts of: - -"Let him speak! The king! The king! his humble subjects hunger -and thirst for words of wisdom out of the mouth of their master -his Serene and Sacred Raggedness!" - -But it went for nothing. He put on all his majesty and sat under -this rain of contempt and insult unmoved. He certainly was great -in his way. Absently, I had taken off my white bandage and wound -it about my right arm. When the crowd noticed this, they began -upon me. They said: - -"Doubtless this sailor-man is his minister--observe his costly -badge of office!" - -I let them go on until they got tired, and then I said: - -"Yes, I am his minister, The Boss; and to-morrow you will hear -that from Camelot which--" - -I got no further. They drowned me out with joyous derision. But -presently there was silence; for the sheriffs of London, in their -official robes, with their subordinates, began to make a stir which -indicated that business was about to begin. In the hush which -followed, our crime was recited, the death warrant read, then -everybody uncovered while a priest uttered a prayer. - -Then a slave was blindfolded; the hangman unslung his rope. There -lay the smooth road below us, we upon one side of it, the banked -multitude wailing its other side--a good clear road, and kept free -by the police--how good it would be to see my five hundred horsemen -come tearing down it! But no, it was out of the possibilities. -I followed its receding thread out into the distance--not a horseman -on it, or sign of one. - -There was a jerk, and the slave hung dangling; dangling and hideously -squirming, for his limbs were not tied. - -A second rope was unslung, in a moment another slave was dangling. - -In a minute a third slave was struggling in the air. It was -dreadful. I turned away my head a moment, and when I turned back -I missed the king! They were blindfolding him! I was paralyzed; -I couldn't move, I was choking, my tongue was petrified. They -finished blindfolding him, they led him under the rope. I couldn't -shake off that clinging impotence. But when I saw them put the -noose around his neck, then everything let go in me and I made -a spring to the rescue--and as I made it I shot one more glance -abroad--by George! here they came, a-tilting!--five hundred mailed -and belted knights on bicycles! - -The grandest sight that ever was seen. Lord, how the plumes -streamed, how the sun flamed and flashed from the endless procession -of webby wheels! - -I waved my right arm as Launcelot swept in--he recognized my rag ---I tore away noose and bandage, and shouted: - -"On your knees, every rascal of you, and salute the king! Who -fails shall sup in hell to-night!" - -I always use that high style when I'm climaxing an effect. Well, -it was noble to see Launcelot and the boys swarm up onto that -scaffold and heave sheriffs and such overboard. And it was fine -to see that astonished multitude go down on their knees and beg -their lives of the king they had just been deriding and insulting. -And as he stood apart there, receiving this homage in rags, -I thought to myself, well, really there is something peculiarly -grand about the gait and bearing of a king, after all. - -I was immensely satisfied. Take the whole situation all around, -it was one of the gaudiest effects I ever instigated. - -And presently up comes Clarence, his own self! and winks, and -says, very modernly: - -"Good deal of a surprise, wasn't it? I knew you'd like it. I've -had the boys practicing this long time, privately; and just hungry -for a chance to show off." - - - -CHAPTER XXXIX - -THE YANKEE'S FIGHT WITH THE KNIGHTS - -Home again, at Camelot. A morning or two later I found the paper, -damp from the press, by my plate at the breakfast table. I turned -to the advertising columns, knowing I should find something of -personal interest to me there. It was this: - - DE PAR LE ROI. - - Know that the great lord and illus- - trious Kni8ht, SIR SAGRAMOR LE - DESIROUS having condescended to - meet the King's Minister, Hank Mor- - gan, the which is surnamed The Boss, - for satisfgction of offence anciently given, - these wilL engage in the lists by - Camelot about the fourth hour of the - morning of the sixteenth day of this - next succeeding month. The battle - will be a l outrance, sith the said offence - was of a deadly sort, admitting of no - comPosition. - - DE PAR LE ROI - - -Clarence's editorial reference to this affair was to this effect: - - It will be observed, by a gl7nce at our - advertising columns, that the commu- - nity is to be favored with a treat of un- - usual interest in the tournament line. - The names of the artists are warrant of - good enterrainment. The box-office - will be open at noon of the 13th; ad- - mission 3 cents, reserved seatsh 5; pro- - ceeds to go to the hospital fund The - royal pair and all the Court will be pres- - ent. With these exceptions, and the - press and the clergy, the free list is strict- - ly susPended. Parties are hereby warn- - ed against buying tickets of speculators; - they will not be good at the door. - Everybody knows and likes The Boss, - everybody knows and likes Sir Sag.; - come, let us give the lads a good send- - off. ReMember, the proceeds go to a - great and free charity, and one whose - broad begevolence stretches out its help- - ing hand, warm with the blood of a lov- - ing heart, to all that suffer, regardless of - race, creed, condition or color--the - only charity yet established in the earth - which has no politico-religious stop- - cock on its compassion, but says Here - flows the stream, let ALL come and - drink! Turn out, all hands! fetch along - your dou3hnuts and your gum-drops - and have a good time. Pie for sale on - the grounds, and rocks to crack it with; - and ciRcus-lemonade--three drops of - lime juice to a barrel of water. - - N.B. This is the first tournament - under the new law, whidh allow each - combatant to use any weapon he may pre- - fer. You may want to make a note of that. - -Up to the day set, there was no talk in all Britain of anything -but this combat. All other topics sank into insignificance and -passed out of men's thoughts and interest. It was not because -a tournament was a great matter, it was not because Sir Sagramor -had found the Holy Grail, for he had not, but had failed; it was -not because the second (official) personage in the kingdom was -one of the duellists; no, all these features were commonplace. -Yet there was abundant reason for the extraordinary interest which -this coming fight was creating. It was born of the fact that all -the nation knew that this was not to be a duel between mere men, -so to speak, but a duel between two mighty magicians; a duel not -of muscle but of mind, not of human skill but of superhuman art -and craft; a final struggle for supremacy between the two master -enchanters of the age. It was realized that the most prodigious -achievements of the most renowned knights could not be worthy -of comparison with a spectacle like this; they could be but child's -play, contrasted with this mysterious and awful battle of the gods. -Yes, all the world knew it was going to be in reality a duel -between Merlin and me, a measuring of his magic powers against -mine. It was known that Merlin had been busy whole days and nights -together, imbuing Sir Sagramor's arms and armor with supernal -powers of offense and defense, and that he had procured for him -from the spirits of the air a fleecy veil which would render the -wearer invisible to his antagonist while still visible to other -men. Against Sir Sagramor, so weaponed and protected, a thousand -knights could accomplish nothing; against him no known enchantments -could prevail. These facts were sure; regarding them there was -no doubt, no reason for doubt. There was but one question: might -there be still other enchantments, _unknown_ to Merlin, which could -render Sir Sagramor's veil transparent to me, and make his enchanted -mail vulnerable to my weapons? This was the one thing to be -decided in the lists. Until then the world must remain in suspense. - -So the world thought there was a vast matter at stake here, and -the world was right, but it was not the one they had in their -minds. No, a far vaster one was upon the cast of this die: -_the life of knight-errantry_. I was a champion, it was true, but -not the champion of the frivolous black arts, I was the champion -of hard unsentimental common-sense and reason. I was entering -the lists to either destroy knight-errantry or be its victim. - -Vast as the show-grounds were, there were no vacant spaces in them -outside of the lists, at ten o'clock on the morning of the 16th. -The mammoth grand-stand was clothed in flags, streamers, and rich -tapestries, and packed with several acres of small-fry tributary -kings, their suites, and the British aristocracy; with our own -royal gang in the chief place, and each and every individual -a flashing prism of gaudy silks and velvets--well, I never saw -anything to begin with it but a fight between an Upper Mississippi -sunset and the aurora borealis. The huge camp of beflagged and -gay-colored tents at one end of the lists, with a stiff-standing -sentinel at every door and a shining shield hanging by him for -challenge, was another fine sight. You see, every knight was -there who had any ambition or any caste feeling; for my feeling -toward their order was not much of a secret, and so here was their -chance. If I won my fight with Sir Sagramor, others would have -the right to call me out as long as I might be willing to respond. - -Down at our end there were but two tents; one for me, and another -for my servants. At the appointed hour the king made a sign, and -the heralds, in their tabards, appeared and made proclamation, -naming the combatants and stating the cause of quarrel. There -was a pause, then a ringing bugle-blast, which was the signal for -us to come forth. All the multitude caught their breath, and -an eager curiosity flashed into every face. - -Out from his tent rode great Sir Sagramor, an imposing tower -of iron, stately and rigid, his huge spear standing upright in its -socket and grasped in his strong hand, his grand horse's face and -breast cased in steel, his body clothed in rich trappings that -almost dragged the ground--oh, a most noble picture. A great -shout went up, of welcome and admiration. - -And then out I came. But I didn't get any shout. There was -a wondering and eloquent silence for a moment, then a great wave -of laughter began to sweep along that human sea, but a warning -bugle-blast cut its career short. I was in the simplest and -comfortablest of gymnast costumes--flesh-colored tights from neck -to heel, with blue silk puffings about my loins, and bareheaded. -My horse was not above medium size, but he was alert, slender-limbed, -muscled with watchsprings, and just a greyhound to go. He was -a beauty, glossy as silk, and naked as he was when he was born, -except for bridle and ranger-saddle. - -The iron tower and the gorgeous bedquilt came cumbrously but -gracefully pirouetting down the lists, and we tripped lightly up -to meet them. We halted; the tower saluted, I responded; then -we wheeled and rode side by side to the grand-stand and faced -our king and queen, to whom we made obeisance. The queen exclaimed: - -"Alack, Sir Boss, wilt fight naked, and without lance or sword or--" - -But the king checked her and made her understand, with a polite -phrase or two, that this was none of her business. The bugles -rang again; and we separated and rode to the ends of the lists, -and took position. Now old Merlin stepped into view and cast -a dainty web of gossamer threads over Sir Sagramor which turned -him into Hamlet's ghost; the king made a sign, the bugles blew, -Sir Sagramor laid his great lance in rest, and the next moment here -he came thundering down the course with his veil flying out behind, -and I went whistling through the air like an arrow to meet him ---cocking my ear the while, as if noting the invisible knight's -position and progress by hearing, not sight. A chorus of encouraging -shouts burst out for him, and one brave voice flung out a heartening -word for me--said: - -"Go it, slim Jim!" - -It was an even bet that Clarence had procured that favor for me ---and furnished the language, too. When that formidable lance-point -was within a yard and a half of my breast I twitched my horse aside -without an effort, and the big knight swept by, scoring a blank. -I got plenty of applause that time. We turned, braced up, and -down we came again. Another blank for the knight, a roar of -applause for me. This same thing was repeated once more; and -it fetched such a whirlwind of applause that Sir Sagramor lost his -temper, and at once changed his tactics and set himself the task -of chasing me down. Why, he hadn't any show in the world at that; -it was a game of tag, with all the advantage on my side; I whirled -out of his path with ease whenever I chose, and once I slapped him -on the back as I went to the rear. Finally I took the chase into -my own hands; and after that, turn, or twist, or do what he would, -he was never able to get behind me again; he found himself always -in front at the end of his maneuver. So he gave up that business -and retired to his end of the lists. His temper was clear gone now, -and he forgot himself and flung an insult at me which disposed -of mine. I slipped my lasso from the horn of my saddle, and -grasped the coil in my right hand. This time you should have seen -him come!--it was a business trip, sure; by his gait there was -blood in his eye. I was sitting my horse at ease, and swinging -the great loop of my lasso in wide circles about my head; the -moment he was under way, I started for him; when the space between -us had narrowed to forty feet, I sent the snaky spirals of the rope -a-cleaving through the air, then darted aside and faced about and -brought my trained animal to a halt with all his feet braced under -him for a surge. The next moment the rope sprang taut and yanked -Sir Sagramor out of the saddle! Great Scott, but there was -a sensation! - -Unquestionably, the popular thing in this world is novelty. These -people had never seen anything of that cowboy business before, -and it carried them clear off their feet with delight. From all -around and everywhere, the shout went up: - -"Encore! encore!" - -I wondered where they got the word, but there was no time to cipher -on philological matters, because the whole knight-errantry hive -was just humming now, and my prospect for trade couldn't have -been better. The moment my lasso was released and Sir Sagramor -had been assisted to his tent, I hauled in the slack, took my -station and began to swing my loop around my head again. I was -sure to have use for it as soon as they could elect a successor -for Sir Sagramor, and that couldn't take long where there were -so many hungry candidates. Indeed, they elected one straight off ---Sir Hervis de Revel. - -_Bzz_! Here he came, like a house afire; I dodged: he passed like -a flash, with my horse-hair coils settling around his neck; -a second or so later, _fst_! his saddle was empty. - -I got another encore; and another, and another, and still another. -When I had snaked five men out, things began to look serious to -the ironclads, and they stopped and consulted together. As a -result, they decided that it was time to waive etiquette and send -their greatest and best against me. To the astonishment of that -little world, I lassoed Sir Lamorak de Galis, and after him -Sir Galahad. So you see there was simply nothing to be done now, -but play their right bower--bring out the superbest of the superb, -the mightiest of the mighty, the great Sir Launcelot himself! - -A proud moment for me? I should think so. Yonder was Arthur, -King of Britain; yonder was Guenever; yes, and whole tribes of -little provincial kings and kinglets; and in the tented camp yonder, -renowned knights from many lands; and likewise the selectest body -known to chivalry, the Knights of the Table Round, the most -illustrious in Christendom; and biggest fact of all, the very sun -of their shining system was yonder couching his lance, the focal -point of forty thousand adoring eyes; and all by myself, here was -I laying for him. Across my mind flitted the dear image of a -certain hello-girl of West Hartford, and I wished she could see -me now. In that moment, down came the Invincible, with the rush -of a whirlwind--the courtly world rose to its feet and bent forward ---the fateful coils went circling through the air, and before you -could wink I was towing Sir Launcelot across the field on his -back, and kissing my hand to the storm of waving kerchiefs and -the thunder-crash of applause that greeted me! - -Said I to myself, as I coiled my lariat and hung it on my saddle-horn, -and sat there drunk with glory, "The victory is perfect--no other -will venture against me--knight-errantry is dead." Now imagine my -astonishment--and everybody else's, too--to hear the peculiar -bugle-call which announces that another competitor is about to -enter the lists! There was a mystery here; I couldn't account for -this thing. Next, I noticed Merlin gliding away from me; and then -I noticed that my lasso was gone! The old sleight-of-hand expert -had stolen it, sure, and slipped it under his robe. - -The bugle blew again. I looked, and down came Sagramor riding -again, with his dust brushed off and his veil nicely re-arranged. -I trotted up to meet him, and pretended to find him by the sound -of his horse's hoofs. He said: - -"Thou'rt quick of ear, but it will not save thee from this!" and -he touched the hilt of his great sword. "An ye are not able to see -it, because of the influence of the veil, know that it is no cumbrous -lance, but a sword--and I ween ye will not be able to avoid it." - -His visor was up; there was death in his smile. I should never -be able to dodge his sword, that was plain. Somebody was going -to die this time. If he got the drop on me, I could name the -corpse. We rode forward together, and saluted the royalties. -This time the king was disturbed. He said: - -"Where is thy strange weapon?" - -"It is stolen, sire." - -"Hast another at hand?" - -"No, sire, I brought only the one." - -Then Merlin mixed in: - -"He brought but the one because there was but the one to bring. -There exists none other but that one. It belongeth to the king -of the Demons of the Sea. This man is a pretender, and ignorant, -else he had known that that weapon can be used in but eight bouts -only, and then it vanisheth away to its home under the sea." - -"Then is he weaponless," said the king. "Sir Sagramore, ye will -grant him leave to borrow." - -"And I will lend!" said Sir Launcelot, limping up. "He is as -brave a knight of his hands as any that be on live, and he shall -have mine." - -He put his hand on his sword to draw it, but Sir Sagramor said: - -"Stay, it may not be. He shall fight with his own weapons; it -was his privilege to choose them and bring them. If he has erred, -on his head be it." - -"Knight!" said the king. "Thou'rt overwrought with passion; it -disorders thy mind. Wouldst kill a naked man?" - -"An he do it, he shall answer it to me," said Sir Launcelot. - -"I will answer it to any he that desireth!" retorted Sir Sagramor hotly. - -Merlin broke in, rubbing his hands and smiling his lowdownest -smile of malicious gratification: - -"'Tis well said, right well said! And 'tis enough of parleying, -let my lord the king deliver the battle signal." - -The king had to yield. The bugle made proclamation, and we turned -apart and rode to our stations. There we stood, a hundred yards -apart, facing each other, rigid and motionless, like horsed statues. -And so we remained, in a soundless hush, as much as a full minute, -everybody gazing, nobody stirring. It seemed as if the king could -not take heart to give the signal. But at last he lifted his hand, -the clear note of the bugle followed, Sir Sagramor's long blade -described a flashing curve in the air, and it was superb to see him -come. I sat still. On he came. I did not move. People got so -excited that they shouted to me: - -"Fly, fly! Save thyself! This is murther!" - -I never budged so much as an inch till that thundering apparition -had got within fifteen paces of me; then I snatched a dragoon -revolver out of my holster, there was a flash and a roar, and -the revolver was back in the holster before anybody could tell -what had happened. - -Here was a riderless horse plunging by, and yonder lay Sir Sagramor, -stone dead. - -The people that ran to him were stricken dumb to find that the life -was actually gone out of the man and no reason for it visible, -no hurt upon his body, nothing like a wound. There was a hole -through the breast of his chain-mail, but they attached no importance -to a little thing like that; and as a bullet wound there produces -but little blood, none came in sight because of the clothing and -swaddlings under the armor. The body was dragged over to let -the king and the swells look down upon it. They were stupefied -with astonishment naturally. I was requested to come and explain -the miracle. But I remained in my tracks, like a statue, and said: - -"If it is a command, I will come, but my lord the king knows that -I am where the laws of combat require me to remain while any desire -to come against me." - -I waited. Nobody challenged. Then I said: - -"If there are any who doubt that this field is well and fairly won, -I do not wait for them to challenge me, I challenge them." - -"It is a gallant offer," said the king, "and well beseems you. -Whom will you name first?" - -"I name none, I challenge all! Here I stand, and dare the chivalry -of England to come against me--not by individuals, but in mass!" - -"What!" shouted a score of knights. - -"You have heard the challenge. Take it, or I proclaim you recreant -knights and vanquished, every one!" - -It was a "bluff" you know. At such a time it is sound judgment -to put on a bold face and play your hand for a hundred times what -it is worth; forty-nine times out of fifty nobody dares to "call," -and you rake in the chips. But just this once--well, things looked -squally! In just no time, five hundred knights were scrambling -into their saddles, and before you could wink a widely scattering -drove were under way and clattering down upon me. I snatched -both revolvers from the holsters and began to measure distances -and calculate chances. - -Bang! One saddle empty. Bang! another one. Bang--bang, and -I bagged two. Well, it was nip and tuck with us, and I knew it. -If I spent the eleventh shot without convincing these people, -the twelfth man would kill me, sure. And so I never did feel -so happy as I did when my ninth downed its man and I detected -the wavering in the crowd which is premonitory of panic. An instant -lost now could knock out my last chance. But I didn't lose it. -I raised both revolvers and pointed them--the halted host stood -their ground just about one good square moment, then broke and fled. - -The day was mine. Knight-errantry was a doomed institution. The -march of civilization was begun. How did I feel? Ah, you never -could imagine it. - -And Brer Merlin? His stock was flat again. Somehow, every time -the magic of fol-de-rol tried conclusions with the magic of science, -the magic of fol-de-rol got left. - - - -CHAPTER XL - -THREE YEARS LATER - -When I broke the back of knight-errantry that time, I no longer -felt obliged to work in secret. So, the very next day I exposed -my hidden schools, my mines, and my vast system of clandestine -factories and workshops to an astonished world. That is to say, -I exposed the nineteenth century to the inspection of the sixth. - -Well, it is always a good plan to follow up an advantage promptly. -The knights were temporarily down, but if I would keep them so -I must just simply paralyze them--nothing short of that would -answer. You see, I was "bluffing" that last time in the field; -it would be natural for them to work around to that conclusion, -if I gave them a chance. So I must not give them time; and I didn't. - -I renewed my challenge, engraved it on brass, posted it up where -any priest could read it to them, and also kept it standing in -the advertising columns of the paper. - -I not only renewed it, but added to its proportions. I said, -name the day, and I would take fifty assistants and stand up -_against the massed chivalry of the whole earth and destroy it_. - -I was not bluffing this time. I meant what I said; I could do -what I promised. There wasn't any way to misunderstand the language -of that challenge. Even the dullest of the chivalry perceived -that this was a plain case of "put up, or shut up." They were -wise and did the latter. In all the next three years they gave -me no trouble worth mentioning. - -Consider the three years sped. Now look around on England. A happy -and prosperous country, and strangely altered. Schools everywhere, -and several colleges; a number of pretty good newspapers. Even -authorship was taking a start; Sir Dinadan the Humorist was first -in the field, with a volume of gray-headed jokes which I had been -familiar with during thirteen centuries. If he had left out that -old rancid one about the lecturer I wouldn't have said anything; -but I couldn't stand that one. I suppressed the book and hanged -the author. - -Slavery was dead and gone; all men were equal before the law; -taxation had been equalized. The telegraph, the telephone, the -phonograph, the typewriter, the sewing-machine, and all the thousand -willing and handy servants of steam and electricity were working -their way into favor. We had a steamboat or two on the Thames, -we had steam warships, and the beginnings of a steam commercial -marine; I was getting ready to send out an expedition to discover -America. - -We were building several lines of railway, and our line from -Camelot to London was already finished and in operation. I was -shrewd enough to make all offices connected with the passenger -service places of high and distinguished honor. My idea was -to attract the chivalry and nobility, and make them useful and keep -them out of mischief. The plan worked very well, the competition -for the places was hot. The conductor of the 4.33 express was -a duke; there wasn't a passenger conductor on the line below -the degree of earl. They were good men, every one, but they had -two defects which I couldn't cure, and so had to wink at: they -wouldn't lay aside their armor, and they would "knock down" fare ---I mean rob the company. - -There was hardly a knight in all the land who wasn't in some useful -employment. They were going from end to end of the country in all -manner of useful missionary capacities; their penchant for wandering, -and their experience in it, made them altogether the most effective -spreaders of civilization we had. They went clothed in steel and -equipped with sword and lance and battle-axe, and if they couldn't -persuade a person to try a sewing-machine on the installment plan, -or a melodeon, or a barbed-wire fence, or a prohibition journal, -or any of the other thousand and one things they canvassed for, -they removed him and passed on. - -I was very happy. Things were working steadily toward a secretly -longed-for point. You see, I had two schemes in my head which -were the vastest of all my projects. The one was to overthrow the -Catholic Church and set up the Protestant faith on its ruins ---not as an Established Church, but a go-as-you-please one; and -the other project was to get a decree issued by and by, commanding -that upon Arthur's death unlimited suffrage should be introduced, -and given to men and women alike--at any rate to all men, wise -or unwise, and to all mothers who at middle age should be found -to know nearly as much as their sons at twenty-one. Arthur was -good for thirty years yet, he being about my own age--that is -to say, forty--and I believed that in that time I could easily -have the active part of the population of that day ready and eager -for an event which should be the first of its kind in the history -of the world--a rounded and complete governmental revolution -without bloodshed. The result to be a republic. Well, I may -as well confess, though I do feel ashamed when I think of it: -I was beginning to have a base hankering to be its first president -myself. Yes, there was more or less human nature in me; I found -that out. - -Clarence was with me as concerned the revolution, but in a modified -way. His idea was a republic, without privileged orders, but with -a hereditary royal family at the head of it instead of an elective -chief magistrate. He believed that no nation that had ever known -the joy of worshiping a royal family could ever be robbed of it -and not fade away and die of melancholy. I urged that kings were -dangerous. He said, then have cats. He was sure that a royal -family of cats would answer every purpose. They would be as useful -as any other royal family, they would know as much, they would -have the same virtues and the same treacheries, the same disposition -to get up shindies with other royal cats, they would be laughably -vain and absurd and never know it, they would be wholly inexpensive; -finally, they would have as sound a divine right as any other -royal house, and "Tom VII, or Tom XI, or Tom XIV by the grace -of God King," would sound as well as it would when applied to -the ordinary royal tomcat with tights on. "And as a rule," said -he, in his neat modern English, "the character of these cats would -be considerably above the character of the average king, and this -would be an immense moral advantage to the nation, for the reason -that a nation always models its morals after its monarch's. The -worship of royalty being founded in unreason, these graceful and -harmless cats would easily become as sacred as any other royalties, -and indeed more so, because it would presently be noticed that -they hanged nobody, beheaded nobody, imprisoned nobody, inflicted -no cruelties or injustices of any sort, and so must be worthy of -a deeper love and reverence than the customary human king, and -would certainly get it. The eyes of the whole harried world would -soon be fixed upon this humane and gentle system, and royal butchers -would presently begin to disappear; their subjects would fill -the vacancies with catlings from our own royal house; we should -become a factory; we should supply the thrones of the world; within -forty years all Europe would be governed by cats, and we should -furnish the cats. The reign of universal peace would begin then, -to end no more forever.... Me-e-e-yow-ow-ow-ow--fzt!--wow!" - -Hang him, I supposed he was in earnest, and was beginning to be -persuaded by him, until he exploded that cat-howl and startled me -almost out of my clothes. But he never could be in earnest. He -didn't know what it was. He had pictured a distinct and perfectly -rational and feasible improvement upon constitutional monarchy, -but he was too feather-headed to know it, or care anything about -it, either. I was going to give him a scolding, but Sandy came -flying in at that moment, wild with terror, and so choked with sobs -that for a minute she could not get her voice. I ran and took her -in my arms, and lavished caresses upon her and said, beseechingly: - -"Speak, darling, speak! What is it?" - -Her head fell limp upon my bosom, and she gasped, almost inaudibly: - -"HELLO-CENTRAL!" - -"Quick!" I shouted to Clarence; "telephone the king's homeopath -to come!" - -In two minutes I was kneeling by the child's crib, and Sandy was -dispatching servants here, there, and everywhere, all over the -palace. I took in the situation almost at a glance--membranous -croup! I bent down and whispered: - -"Wake up, sweetheart! Hello-Central." - -She opened her soft eyes languidly, and made out to say: - -"Papa." - -That was a comfort. She was far from dead yet. I sent for -preparations of sulphur, I rousted out the croup-kettle myself; -for I don't sit down and wait for doctors when Sandy or the child -is sick. I knew how to nurse both of them, and had had experience. -This little chap had lived in my arms a good part of its small life, -and often I could soothe away its troubles and get it to laugh -through the tear-dews on its eye-lashes when even its mother couldn't. - -Sir Launcelot, in his richest armor, came striding along the great -hall now on his way to the stock-board; he was president of the -stock-board, and occupied the Siege Perilous, which he had bought -of Sir Galahad; for the stock-board consisted of the Knights of -the Round Table, and they used the Round Table for business purposes -now. Seats at it were worth--well, you would never believe the -figure, so it is no use to state it. Sir Launcelot was a bear, and -he had put up a corner in one of the new lines, and was just getting -ready to squeeze the shorts to-day; but what of that? He was -the same old Launcelot, and when he glanced in as he was passing -the door and found out that his pet was sick, that was enough -for him; bulls and bears might fight it out their own way for all -him, he would come right in here and stand by little Hello-Central -for all he was worth. And that was what he did. He shied his -helmet into the corner, and in half a minute he had a new wick -in the alcohol lamp and was firing up on the croup-kettle. By this -time Sandy had built a blanket canopy over the crib, and everything -was ready. - -Sir Launcelot got up steam, he and I loaded up the kettle with -unslaked lime and carbolic acid, with a touch of lactic acid added -thereto, then filled the thing up with water and inserted the -steam-spout under the canopy. Everything was ship-shape now, -and we sat down on either side of the crib to stand our watch. -Sandy was so grateful and so comforted that she charged a couple -of church-wardens with willow-bark and sumach-tobacco for us, -and told us to smoke as much as we pleased, it couldn't get under -the canopy, and she was used to smoke, being the first lady in the -land who had ever seen a cloud blown. Well, there couldn't be -a more contented or comfortable sight than Sir Launcelot in his -noble armor sitting in gracious serenity at the end of a yard -of snowy church-warden. He was a beautiful man, a lovely man, -and was just intended to make a wife and children happy. But, of -course Guenever--however, it's no use to cry over what's done and -can't be helped. - -Well, he stood watch-and-watch with me, right straight through, -for three days and nights, till the child was out of danger; then -he took her up in his great arms and kissed her, with his plumes -falling about her golden head, then laid her softly in Sandy's -lap again and took his stately way down the vast hall, between -the ranks of admiring men-at-arms and menials, and so disappeared. -And no instinct warned me that I should never look upon him again -in this world! Lord, what a world of heart-break it is. - -The doctors said we must take the child away, if we would coax -her back to health and strength again. And she must have sea-air. -So we took a man-of-war, and a suite of two hundred and sixty -persons, and went cruising about, and after a fortnight of this we -stepped ashore on the French coast, and the doctors thought it -would be a good idea to make something of a stay there. The little -king of that region offered us his hospitalities, and we were glad -to accept. If he had had as many conveniences as he lacked, we -should have been plenty comfortable enough; even as it was, we -made out very well, in his queer old castle, by the help of comforts -and luxuries from the ship. - -At the end of a month I sent the vessel home for fresh supplies, -and for news. We expected her back in three or four days. She -would bring me, along with other news, the result of a certain -experiment which I had been starting. It was a project of mine -to replace the tournament with something which might furnish an -escape for the extra steam of the chivalry, keep those bucks -entertained and out of mischief, and at the same time preserve -the best thing in them, which was their hardy spirit of emulation. -I had had a choice band of them in private training for some time, -and the date was now arriving for their first public effort. - -This experiment was baseball. In order to give the thing vogue -from the start, and place it out of the reach of criticism, I chose -my nines by rank, not capacity. There wasn't a knight in either -team who wasn't a sceptered sovereign. As for material of this -sort, there was a glut of it always around Arthur. You couldn't -throw a brick in any direction and not cripple a king. Of course, -I couldn't get these people to leave off their armor; they wouldn't -do that when they bathed. They consented to differentiate the -armor so that a body could tell one team from the other, but that -was the most they would do. So, one of the teams wore chain-mail -ulsters, and the other wore plate-armor made of my new Bessemer -steel. Their practice in the field was the most fantastic thing I -ever saw. Being ball-proof, they never skipped out of the way, -but stood still and took the result; when a Bessemer was at the bat -and a ball hit him, it would bound a hundred and fifty yards -sometimes. And when a man was running, and threw himself on his -stomach to slide to his base, it was like an iron-clad coming into -port. At first I appointed men of no rank to act as umpires, but -I had to discontinue that. These people were no easier to please -than other nines. The umpire's first decision was usually his -last; they broke him in two with a bat, and his friends toted him -home on a shutter. When it was noticed that no umpire ever survived -a game, umpiring got to be unpopular. So I was obliged to appoint -somebody whose rank and lofty position under the government would -protect him. - -Here are the names of the nines: - - BESSEMERS ULSTERS - - KING ARTHUR. EMPEROR LUCIUS. - KING LOT OF LOTHIAN. KING LOGRIS. - KING OF NORTHGALIS. KING MARHALT OF IRELAND. - KING MARSIL. KING MORGANORE. - KING OF LITTLE BRITAIN. KING MARK OF CORNWALL. - KING LABOR. KING NENTRES OF GARLOT. - KING PELLAM OF LISTENGESE. KING MELIODAS OF LIONES. - KING BAGDEMAGUS. KING OF THE LAKE. - KING TOLLEME LA FEINTES. THE SOWDAN OF SYRIA. - - Umpire--CLARENCE. - -The first public game would certainly draw fifty thousand people; -and for solid fun would be worth going around the world to see. -Everything would be favorable; it was balmy and beautiful spring -weather now, and Nature was all tailored out in her new clothes. - - - -CHAPTER XLI - -THE INTERDICT - -However, my attention was suddenly snatched from such matters; -our child began to lose ground again, and we had to go to sitting -up with her, her case became so serious. We couldn't bear to allow -anybody to help in this service, so we two stood watch-and-watch, -day in and day out. Ah, Sandy, what a right heart she had, how -simple, and genuine, and good she was! She was a flawless wife -and mother; and yet I had married her for no other particular -reasons, except that by the customs of chivalry she was my property -until some knight should win her from me in the field. She had -hunted Britain over for me; had found me at the hanging-bout -outside of London, and had straightway resumed her old place at -my side in the placidest way and as of right. I was a New Englander, -and in my opinion this sort of partnership would compromise her, -sooner or later. She couldn't see how, but I cut argument short -and we had a wedding. - -Now I didn't know I was drawing a prize, yet that was what I did -draw. Within the twelvemonth I became her worshiper; and ours -was the dearest and perfectest comradeship that ever was. People -talk about beautiful friendships between two persons of the same -sex. What is the best of that sort, as compared with the friendship -of man and wife, where the best impulses and highest ideals of -both are the same? There is no place for comparison between -the two friendships; the one is earthly, the other divine. - -In my dreams, along at first, I still wandered thirteen centuries -away, and my unsatisfied spirit went calling and harking all up -and down the unreplying vacancies of a vanished world. Many a -time Sandy heard that imploring cry come from my lips in my sleep. -With a grand magnanimity she saddled that cry of mine upon our -child, conceiving it to be the name of some lost darling of mine. -It touched me to tears, and it also nearly knocked me off my feet, -too, when she smiled up in my face for an earned reward, and played -her quaint and pretty surprise upon me: - -"The name of one who was dear to thee is here preserved, here made -holy, and the music of it will abide alway in our ears. Now -thou'lt kiss me, as knowing the name I have given the child." - -But I didn't know it, all the same. I hadn't an idea in the -world; but it would have been cruel to confess it and spoil her -pretty game; so I never let on, but said: - -"Yes, I know, sweetheart--how dear and good it is of you, too! -But I want to hear these lips of yours, which are also mine, utter -it first--then its music will be perfect." - -Pleased to the marrow, she murmured: - -"HELLO-CENTRAL!" - -I didn't laugh--I am always thankful for that--but the strain -ruptured every cartilage in me, and for weeks afterward I could -hear my bones clack when I walked. She never found out her mistake. -The first time she heard that form of salute used at the telephone -she was surprised, and not pleased; but I told her I had given -order for it: that henceforth and forever the telephone must -always be invoked with that reverent formality, in perpetual honor -and remembrance of my lost friend and her small namesake. This -was not true. But it answered. - -Well, during two weeks and a half we watched by the crib, and in -our deep solicitude we were unconscious of any world outside of -that sick-room. Then our reward came: the center of the universe -turned the corner and began to mend. Grateful? It isn't the term. -There _isn't_ any term for it. You know that yourself, if you've -watched your child through the Valley of the Shadow and seen it -come back to life and sweep night out of the earth with one -all-illuminating smile that you could cover with your hand. - -Why, we were back in this world in one instant! Then we looked -the same startled thought into each other's eyes at the same -moment; more than two weeks gone, and that ship not back yet! - -In another minute I appeared in the presence of my train. They -had been steeped in troubled bodings all this time--their faces -showed it. I called an escort and we galloped five miles to a -hilltop overlooking the sea. Where was my great commerce that -so lately had made these glistening expanses populous and beautiful -with its white-winged flocks? Vanished, every one! Not a sail, -from verge to verge, not a smoke-bank--just a dead and empty -solitude, in place of all that brisk and breezy life. - -I went swiftly back, saying not a word to anybody. I told Sandy -this ghastly news. We could imagine no explanation that would -begin to explain. Had there been an invasion? an earthquake? -a pestilence? Had the nation been swept out of existence? But -guessing was profitless. I must go--at once. I borrowed the king's -navy--a "ship" no bigger than a steam launch--and was soon ready. - -The parting--ah, yes, that was hard. As I was devouring the child -with last kisses, it brisked up and jabbered out its vocabulary! ---the first time in more than two weeks, and it made fools of us -for joy. The darling mispronunciations of childhood!--dear me, -there's no music that can touch it; and how one grieves when it -wastes away and dissolves into correctness, knowing it will never -visit his bereaved ear again. Well, how good it was to be able -to carry that gracious memory away with me! - -I approached England the next morning, with the wide highway of -salt water all to myself. There were ships in the harbor, at -Dover, but they were naked as to sails, and there was no sign -of life about them. It was Sunday; yet at Canterbury the streets -were empty; strangest of all, there was not even a priest in sight, -and no stroke of a bell fell upon my ear. The mournfulness of -death was everywhere. I couldn't understand it. At last, in -the further edge of that town I saw a small funeral procession ---just a family and a few friends following a coffin--no priest; -a funeral without bell, book, or candle; there was a church there -close at hand, but they passed it by weeping, and did not enter it; -I glanced up at the belfry, and there hung the bell, shrouded in -black, and its tongue tied back. Now I knew! Now I understood -the stupendous calamity that had overtaken England. Invasion? -Invasion is a triviality to it. It was the INTERDICT! - -I asked no questions; I didn't need to ask any. The Church had -struck; the thing for me to do was to get into a disguise, and -go warily. One of my servants gave me a suit of clothes, and -when we were safe beyond the town I put them on, and from that time -I traveled alone; I could not risk the embarrassment of company. - -A miserable journey. A desolate silence everywhere. Even in -London itself. Traffic had ceased; men did not talk or laugh, or -go in groups, or even in couples; they moved aimlessly about, each -man by himself, with his head down, and woe and terror at his heart. -The Tower showed recent war-scars. Verily, much had been happening. - -Of course, I meant to take the train for Camelot. Train! Why, -the station was as vacant as a cavern. I moved on. The journey -to Camelot was a repetition of what I had already seen. The Monday -and the Tuesday differed in no way from the Sunday. I arrived -far in the night. From being the best electric-lighted town in -the kingdom and the most like a recumbent sun of anything you ever -saw, it was become simply a blot--a blot upon darkness--that is -to say, it was darker and solider than the rest of the darkness, -and so you could see it a little better; it made me feel as if -maybe it was symbolical--a sort of sign that the Church was going to -_keep_ the upper hand now, and snuff out all my beautiful civilization -just like that. I found no life stirring in the somber streets. -I groped my way with a heavy heart. The vast castle loomed black -upon the hilltop, not a spark visible about it. The drawbridge -was down, the great gate stood wide, I entered without challenge, -my own heels making the only sound I heard--and it was sepulchral -enough, in those huge vacant courts. - - - -CHAPTER XLII - -WAR! - -I found Clarence alone in his quarters, drowned in melancholy; -and in place of the electric light, he had reinstituted the ancient -rag-lamp, and sat there in a grisly twilight with all curtains -drawn tight. He sprang up and rushed for me eagerly, saying: - -"Oh, it's worth a billion milrays to look upon a live person again!" - -He knew me as easily as if I hadn't been disguised at all. Which -frightened me; one may easily believe that. - -"Quick, now, tell me the meaning of this fearful disaster," I said. -"How did it come about?" - -"Well, if there hadn't been any Queen Guenever, it wouldn't have -come so early; but it would have come, anyway. It would have -come on your own account by and by; by luck, it happened to come -on the queen's." - -"_And_ Sir Launcelot's?" - -"Just so." - -"Give me the details." - -"I reckon you will grant that during some years there has been -only one pair of eyes in these kingdoms that has not been looking -steadily askance at the queen and Sir Launcelot--" - -"Yes, King Arthur's." - -"--and only one heart that was without suspicion--" - -"Yes--the king's; a heart that isn't capable of thinking evil -of a friend." - -"Well, the king might have gone on, still happy and unsuspecting, -to the end of his days, but for one of your modern improvements ---the stock-board. When you left, three miles of the London, -Canterbury and Dover were ready for the rails, and also ready and -ripe for manipulation in the stock-market. It was wildcat, and -everybody knew it. The stock was for sale at a give-away. What -does Sir Launcelot do, but--" - -"Yes, I know; he quietly picked up nearly all of it for a song; -then he bought about twice as much more, deliverable upon call; -and he was about to call when I left." - -"Very well, he did call. The boys couldn't deliver. Oh, he had -them--and he just settled his grip and squeezed them. They were -laughing in their sleeves over their smartness in selling stock -to him at 15 and 16 and along there that wasn't worth 10. Well, -when they had laughed long enough on that side of their mouths, -they rested-up that side by shifting the laugh to the other side. -That was when they compromised with the Invincible at 283!" - -"Good land!" - -"He skinned them alive, and they deserved it--anyway, the whole -kingdom rejoiced. Well, among the flayed were Sir Agravaine and -Sir Mordred, nephews to the king. End of the first act. Act -second, scene first, an apartment in Carlisle castle, where the -court had gone for a few days' hunting. Persons present, the -whole tribe of the king's nephews. Mordred and Agravaine propose -to call the guileless Arthur's attention to Guenever and Sir -Launcelot. Sir Gawaine, Sir Gareth, and Sir Gaheris will have -nothing to do with it. A dispute ensues, with loud talk; in the -midst of it enter the king. Mordred and Agravaine spring their -devastating tale upon him. _Tableau_. A trap is laid for Launcelot, -by the king's command, and Sir Launcelot walks into it. He made -it sufficiently uncomfortable for the ambushed witnesses--to wit, -Mordred, Agravaine, and twelve knights of lesser rank, for he -killed every one of them but Mordred; but of course that couldn't -straighten matters between Launcelot and the king, and didn't." - -"Oh, dear, only one thing could result--I see that. War, and -the knights of the realm divided into a king's party and a -Sir Launcelot's party." - -"Yes--that was the way of it. The king sent the queen to the -stake, proposing to purify her with fire. Launcelot and his -knights rescued her, and in doing it slew certain good old friends -of yours and mine--in fact, some of the best we ever had; to wit, -Sir Belias le Orgulous, Sir Segwarides, Sir Griflet le Fils de Dieu, -Sir Brandiles, Sir Aglovale--" - -"Oh, you tear out my heartstrings." - -"--wait, I'm not done yet--Sir Tor, Sir Gauter, Sir Gillimer--" - -"The very best man in my subordinate nine. What a handy right-fielder -he was!" - -"--Sir Reynold's three brothers, Sir Damus, Sir Priamus, Sir Kay -the Stranger--" - -"My peerless short-stop! I've seen him catch a daisy-cutter in -his teeth. Come, I can't stand this!" - -"--Sir Driant, Sir Lambegus, Sir Herminde, Sir Pertilope, -Sir Perimones, and--whom do you think?" - -"Rush! Go on." - -"Sir Gaheris, and Sir Gareth--both!" - -"Oh, incredible! Their love for Launcelot was indestructible." - -"Well, it was an accident. They were simply onlookers; they were -unarmed, and were merely there to witness the queen's punishment. -Sir Launcelot smote down whoever came in the way of his blind fury, -and he killed these without noticing who they were. Here is an -instantaneous photograph one of our boys got of the battle; it's -for sale on every news-stand. There--the figures nearest the queen -are Sir Launcelot with his sword up, and Sir Gareth gasping his -latest breath. You can catch the agony in the queen's face through -the curling smoke. It's a rattling battle-picture." - -"Indeed, it is. We must take good care of it; its historical value -is incalculable. Go on." - -"Well, the rest of the tale is just war, pure and simple. Launcelot -retreated to his town and castle of Joyous Gard, and gathered -there a great following of knights. The king, with a great host, -went there, and there was desperate fighting during several days, -and, as a result, all the plain around was paved with corpses -and cast-iron. Then the Church patched up a peace between Arthur -and Launcelot and the queen and everybody--everybody but Sir Gawaine. -He was bitter about the slaying of his brothers, Gareth and Gaheris, -and would not be appeased. He notified Launcelot to get him -thence, and make swift preparation, and look to be soon attacked. -So Launcelot sailed to his Duchy of Guienne with his following, and -Gawaine soon followed with an army, and he beguiled Arthur to go -with him. Arthur left the kingdom in Sir Mordred's hands until -you should return--" - -"Ah--a king's customary wisdom!" - -"Yes. Sir Mordred set himself at once to work to make his kingship -permanent. He was going to marry Guenever, as a first move; but -she fled and shut herself up in the Tower of London. Mordred -attacked; the Bishop of Canterbury dropped down on him with the -Interdict. The king returned; Mordred fought him at Dover, at -Canterbury, and again at Barham Down. Then there was talk of peace -and a composition. Terms, Mordred to have Cornwall and Kent during -Arthur's life, and the whole kingdom afterward." - -"Well, upon my word! My dream of a republic to _be_ a dream, and -so remain." - -"Yes. The two armies lay near Salisbury. Gawaine--Gawaine's head -is at Dover Castle, he fell in the fight there--Gawaine appeared to -Arthur in a dream, at least his ghost did, and warned him to -refrain from conflict for a month, let the delay cost what it might. -But battle was precipitated by an accident. Arthur had given -order that if a sword was raised during the consultation over -the proposed treaty with Mordred, sound the trumpet and fall on! -for he had no confidence in Mordred. Mordred had given a similar -order to _his_ people. Well, by and by an adder bit a knight's heel; -the knight forgot all about the order, and made a slash at the -adder with his sword. Inside of half a minute those two prodigious -hosts came together with a crash! They butchered away all day. -Then the king--however, we have started something fresh since -you left--our paper has." - -"No? What is that?" - -"War correspondence!" - -"Why, that's good." - -"Yes, the paper was booming right along, for the Interdict made -no impression, got no grip, while the war lasted. I had war -correspondents with both armies. I will finish that battle by -reading you what one of the boys says: - - 'Then the king looked about him, and then was he - ware of all his host and of all his good knights - were left no more on live but two knights, that - was Sir Lucan de Butlere, and his brother Sir - Bedivere: and they were full sore wounded. Jesu - mercy, said the king, where are all my noble - knights becomen? Alas that ever I should see this - doleful day. For now, said Arthur, I am come to - mine end. But would to God that I wist where were - that traitor Sir Mordred, that hath caused all - this mischief. Then was King Arthur ware where Sir - Mordred leaned upon his sword among a great heap - of dead men. Now give me my spear, said Arthur - unto Sir Lucan, for yonder I have espied the - traitor that all this woe hath wrought. Sir, let - him be, said Sir Lucan, for he is unhappy; and if - ye pass this unhappy day, ye shall be right well - revenged upon him. Good lord, remember ye of your - night's dream, and what the spirit of Sir Gawaine - told you this night, yet God of his great goodness - hath preserved you hitherto. Therefore, for God's - sake, my lord, leave off by this. For blessed be - God ye have won the field: for here we be three - on live, and with Sir Mordred is none on live. - And if ye leave off now, this wicked day of - destiny is past. Tide me death, betide me life, - saith the king, now I see him yonder alone, he - shall never escape mine hands, for at a better - avail shall I never have him. God speed you well, - said Sir Bedivere. Then the king gat his spear - in both his hands, and ran toward Sir Mordred - crying, Traitor, now is thy death day come. And - when Sir Mordred heard Sir Arthur, he ran until - him with his sword drawn in his hand. And then - King Arthur smote Sir Mordred under the shield, - with a foin of his spear throughout the body more - than a fathom. And when Sir Mordred felt that he - had his death's wound, he thrust himself, with - the might that he had, up to the butt of King - Arthur's spear. And right so he smote his father - Arthur with his sword holden in both his hands, - on the side of the head, that the sword pierced - the helmet and the brain-pan, and therewithal - Sir Mordred fell stark dead to the earth. And - the noble Arthur fell in a swoon to the earth, - and there he swooned oft-times--'" - -"That is a good piece of war correspondence, Clarence; you are -a first-rate newspaper man. Well--is the king all right? Did -he get well?" - -"Poor soul, no. He is dead." - -I was utterly stunned; it had not seemed to me that any wound -could be mortal to him. - -"And the queen, Clarence?" - -"She is a nun, in Almesbury." - -"What changes! and in such a short while. It is inconceivable. -What next, I wonder?" - -"I can tell you what next." - -"Well?" - -"Stake our lives and stand by them!" - -"What do you mean by that?" - -"The Church is master now. The Interdict included you with Mordred; -it is not to be removed while you remain alive. The clans are -gathering. The Church has gathered all the knights that are left -alive, and as soon as you are discovered we shall have business -on our hands." - -"Stuff! With our deadly scientific war-material; with our hosts -of trained--" - -"Save your breath--we haven't sixty faithful left!" - -"What are you saying? Our schools, our colleges, our vast -workshops, our--" - -"When those knights come, those establishments will empty themselves -and go over to the enemy. Did you think you had educated the -superstition out of those people?" - -"I certainly did think it." - -"Well, then, you may unthink it. They stood every strain easily ---until the Interdict. Since then, they merely put on a bold -outside--at heart they are quaking. Make up your mind to it ---when the armies come, the mask will fall." - -"It's hard news. We are lost. They will turn our own science -against us." - -"No they won't." - -"Why?" - -"Because I and a handful of the faithful have blocked that game. -I'll tell you what I've done, and what moved me to it. Smart as -you are, the Church was smarter. It was the Church that sent -you cruising--through her servants, the doctors." - -"Clarence!" - -"It is the truth. I know it. Every officer of your ship was -the Church's picked servant, and so was every man of the crew." - -"Oh, come!" - -"It is just as I tell you. I did not find out these things at once, -but I found them out finally. Did you send me verbal information, -by the commander of the ship, to the effect that upon his return -to you, with supplies, you were going to leave Cadiz--" - -"Cadiz! I haven't been at Cadiz at all!" - -"--going to leave Cadiz and cruise in distant seas indefinitely, -for the health of your family? Did you send me that word?" - -"Of course not. I would have written, wouldn't I?" - -"Naturally. I was troubled and suspicious. When the commander -sailed again I managed to ship a spy with him. I have never -heard of vessel or spy since. I gave myself two weeks to hear -from you in. Then I resolved to send a ship to Cadiz. There was -a reason why I didn't." - -"What was that?" - -"Our navy had suddenly and mysteriously disappeared! Also, as -suddenly and as mysteriously, the railway and telegraph and -telephone service ceased, the men all deserted, poles were cut -down, the Church laid a ban upon the electric light! I had to be -up and doing--and straight off. Your life was safe--nobody in -these kingdoms but Merlin would venture to touch such a magician -as you without ten thousand men at his back--I had nothing to -think of but how to put preparations in the best trim against your -coming. I felt safe myself--nobody would be anxious to touch -a pet of yours. So this is what I did. From our various works -I selected all the men--boys I mean--whose faithfulness under -whatsoever pressure I could swear to, and I called them together -secretly and gave them their instructions. There are fifty-two of -them; none younger than fourteen, and none above seventeen years old." - -"Why did you select boys?" - -"Because all the others were born in an atmosphere of superstition -and reared in it. It is in their blood and bones. We imagined -we had educated it out of them; they thought so, too; the Interdict -woke them up like a thunderclap! It revealed them to themselves, -and it revealed them to me, too. With boys it was different. Such -as have been under our training from seven to ten years have had -no acquaintance with the Church's terrors, and it was among these -that I found my fifty-two. As a next move, I paid a private visit -to that old cave of Merlin's--not the small one--the big one--" - -"Yes, the one where we secretly established our first great electric -plant when I was projecting a miracle." - -"Just so. And as that miracle hadn't become necessary then, -I thought it might be a good idea to utilize the plant now. I've -provisioned the cave for a siege--" - -"A good idea, a first-rate idea." - -"I think so. I placed four of my boys there as a guard--inside, -and out of sight. Nobody was to be hurt--while outside; but any -attempt to enter--well, we said just let anybody try it! Then -I went out into the hills and uncovered and cut the secret wires -which connected your bedroom with the wires that go to the dynamite -deposits under all our vast factories, mills, workshops, magazines, -etc., and about midnight I and my boys turned out and connected -that wire with the cave, and nobody but you and I suspects where -the other end of it goes to. We laid it under ground, of course, and -it was all finished in a couple of hours or so. We sha'n't have -to leave our fortress now when we want to blow up our civilization." - -"It was the right move--and the natural one; military necessity, -in the changed condition of things. Well, what changes _have_ come! -We expected to be besieged in the palace some time or other, but ---however, go on." - -"Next, we built a wire fence." - -"Wire fence?" - -"Yes. You dropped the hint of it yourself, two or three years ago." - -"Oh, I remember--the time the Church tried her strength against -us the first time, and presently thought it wise to wait for a -hopefuler season. Well, how have you arranged the fence?" - -"I start twelve immensely strong wires--naked, not insulated ---from a big dynamo in the cave--dynamo with no brushes except -a positive and a negative one--" - -"Yes, that's right." - -"The wires go out from the cave and fence in a circle of level -ground a hundred yards in diameter; they make twelve independent -fences, ten feet apart--that is to say, twelve circles within -circles--and their ends come into the cave again." - -"Right; go on." - -"The fences are fastened to heavy oaken posts only three feet apart, -and these posts are sunk five feet in the ground." - -"That is good and strong." - -"Yes. The wires have no ground-connection outside of the cave. -They go out from the positive brush of the dynamo; there is a -ground-connection through the negative brush; the other ends of -the wire return to the cave, and each is grounded independently." - -"No, no, that won't do!" - -"Why?" - -"It's too expensive--uses up force for nothing. You don't want -any ground-connection except the one through the negative brush. -The other end of every wire must be brought back into the cave -and fastened independently, and _without_ any ground-connection. -Now, then, observe the economy of it. A cavalry charge hurls -itself against the fence; you are using no power, you are spending -no money, for there is only one ground-connection till those horses -come against the wire; the moment they touch it they form a -connection with the negative brush _through the ground_, and drop -dead. Don't you see?--you are using no energy until it is needed; -your lightning is there, and ready, like the load in a gun; but -it isn't costing you a cent till you touch it off. Oh, yes, the -single ground-connection--" - -"Of course! I don't know how I overlooked that. It's not only -cheaper, but it's more effectual than the other way, for if wires -break or get tangled, no harm is done." - -"No, especially if we have a tell-tale in the cave and disconnect -the broken wire. Well, go on. The gatlings?" - -"Yes--that's arranged. In the center of the inner circle, on a -spacious platform six feet high, I've grouped a battery of thirteen -gatling guns, and provided plenty of ammunition." - -"That's it. They command every approach, and when the Church's -knights arrive, there's going to be music. The brow of the -precipice over the cave--" - -"I've got a wire fence there, and a gatling. They won't drop any -rocks down on us." - -"Well, and the glass-cylinder dynamite torpedoes?" - -"That's attended to. It's the prettiest garden that was ever -planted. It's a belt forty feet wide, and goes around the outer -fence--distance between it and the fence one hundred yards--kind of -neutral ground that space is. There isn't a single square yard -of that whole belt but is equipped with a torpedo. We laid them -on the surface of the ground, and sprinkled a layer of sand over -them. It's an innocent looking garden, but you let a man start -in to hoe it once, and you'll see." - -"You tested the torpedoes?" - -"Well, I was going to, but--" - -"But what? Why, it's an immense oversight not to apply a--" - -"Test? Yes, I know; but they're all right; I laid a few in the -public road beyond our lines and they've been tested." - -"Oh, that alters the case. Who did it?" - -"A Church committee." - -"How kind!" - -"Yes. They came to command us to make submission. You see they -didn't really come to test the torpedoes; that was merely an incident." - -"Did the committee make a report?" - -"Yes, they made one. You could have heard it a mile." - -"Unanimous?" - -"That was the nature of it. After that I put up some signs, for the -protection of future committees, and we have had no intruders since." - -"Clarence, you've done a world of work, and done it perfectly." - -"We had plenty of time for it; there wasn't any occasion for hurry." - -We sat silent awhile, thinking. Then my mind was made up, and -I said: - -"Yes, everything is ready; everything is shipshape, no detail is -wanting. I know what to do now." - -"So do I; sit down and wait." - -"No, _sir_! rise up and _strike_!" - -"Do you mean it?" - -"Yes, indeed! The _de_fensive isn't in my line, and the _of_fensive -is. That is, when I hold a fair hand--two-thirds as good a hand -as the enemy. Oh, yes, we'll rise up and strike; that's our game." - -"A hundred to one you are right. When does the performance begin?" - -"_Now!_ We'll proclaim the Republic." - -"Well, that _will_ precipitate things, sure enough!" - -"It will make them buzz, I tell you! England will be a hornets' -nest before noon to-morrow, if the Church's hand hasn't lost its -cunning--and we know it hasn't. Now you write and I'll dictate thus: - - "PROCLAMATION - - --- - - "BE IT KNOWN UNTO ALL. Whereas the king having died - and left no heir, it becomes my duty to continue the - executive authority vested in me, until a government - shall have been created and set in motion. The - monarchy has lapsed, it no longer exists. By - consequence, all political power has reverted to its - original source, the people of the nation. With the - monarchy, its several adjuncts died also; wherefore - there is no longer a nobility, no longer a privileged - class, no longer an Established Church; all men are - become exactly equal; they are upon one common - level, and religion is free. _A Republic is hereby - proclaimed_, as being the natural estate of a nation - when other authority has ceased. It is the duty of - the British people to meet together immediately, - and by their votes elect representatives and deliver - into their hands the government." - -I signed it "The Boss," and dated it from Merlin's Cave. -Clarence said-- - -"Why, that tells where we are, and invites them to call right away." - -"That is the idea. We _strike_--by the Proclamation--then it's -their innings. Now have the thing set up and printed and posted, -right off; that is, give the order; then, if you've got a couple -of bicycles handy at the foot of the hill, ho for Merlin's Cave!" - -"I shall be ready in ten minutes. What a cyclone there is going -to be to-morrow when this piece of paper gets to work!... It's a -pleasant old palace, this is; I wonder if we shall ever again ---but never mind about that." - - - -CHAPTER XLIII - -THE BATTLE OF THE SAND BELT - -In Merlin's Cave--Clarence and I and fifty-two fresh, bright, -well-educated, clean-minded young British boys. At dawn I sent -an order to the factories and to all our great works to stop -operations and remove all life to a safe distance, as everything -was going to be blown up by secret mines, "_and no telling at what -moment--therefore, vacate at once_." These people knew me, and -had confidence in my word. They would clear out without waiting -to part their hair, and I could take my own time about dating the -explosion. You couldn't hire one of them to go back during the -century, if the explosion was still impending. - -We had a week of waiting. It was not dull for me, because I was -writing all the time. During the first three days, I finished -turning my old diary into this narrative form; it only required -a chapter or so to bring it down to date. The rest of the week -I took up in writing letters to my wife. It was always my habit -to write to Sandy every day, whenever we were separate, and now -I kept up the habit for love of it, and of her, though I couldn't -do anything with the letters, of course, after I had written them. -But it put in the time, you see, and was almost like talking; -it was almost as if I was saying, "Sandy, if you and Hello-Central -were here in the cave, instead of only your photographs, what -good times we could have!" And then, you know, I could imagine -the baby goo-gooing something out in reply, with its fists in its -mouth and itself stretched across its mother's lap on its back, -and she a-laughing and admiring and worshipping, and now and then -tickling under the baby's chin to set it cackling, and then maybe -throwing in a word of answer to me herself--and so on and so on ---well, don't you know, I could sit there in the cave with my pen, -and keep it up, that way, by the hour with them. Why, it was -almost like having us all together again. - -I had spies out every night, of course, to get news. Every report -made things look more and more impressive. The hosts were gathering, -gathering; down all the roads and paths of England the knights were -riding, and priests rode with them, to hearten these original -Crusaders, this being the Church's war. All the nobilities, big -and little, were on their way, and all the gentry. This was all -as was expected. We should thin out this sort of folk to such -a degree that the people would have nothing to do but just step -to the front with their republic and-- - -Ah, what a donkey I was! Toward the end of the week I began to get -this large and disenchanting fact through my head: that the mass -of the nation had swung their caps and shouted for the republic for -about one day, and there an end! The Church, the nobles, and -the gentry then turned one grand, all-disapproving frown upon them -and shriveled them into sheep! From that moment the sheep had -begun to gather to the fold--that is to say, the camps--and offer -their valueless lives and their valuable wool to the "righteous -cause." Why, even the very men who had lately been slaves were -in the "righteous cause," and glorifying it, praying for it, -sentimentally slabbering over it, just like all the other commoners. -Imagine such human muck as this; conceive of this folly! - -Yes, it was now "Death to the Republic!" everywhere--not a dissenting -voice. All England was marching against us! Truly, this was more -than I had bargained for. - -I watched my fifty-two boys narrowly; watched their faces, their -walk, their unconscious attitudes: for all these are a language ---a language given us purposely that it may betray us in times of -emergency, when we have secrets which we want to keep. I knew -that that thought would keep saying itself over and over again -in their minds and hearts, _All England is marching against us!_ -and ever more strenuously imploring attention with each repetition, -ever more sharply realizing itself to their imaginations, until -even in their sleep they would find no rest from it, but hear -the vague and flitting creatures of the dreams say, _All England_ ---ALL ENGLAND!--_is marching against you_! I knew all this would -happen; I knew that ultimately the pressure would become so great -that it would compel utterance; therefore, I must be ready with an -answer at that time--an answer well chosen and tranquilizing. - -I was right. The time came. They HAD to speak. Poor lads, it -was pitiful to see, they were so pale, so worn, so troubled. At -first their spokesman could hardly find voice or words; but he -presently got both. This is what he said--and he put it in the -neat modern English taught him in my schools: - -"We have tried to forget what we are--English boys! We have tried -to put reason before sentiment, duty before love; our minds -approve, but our hearts reproach us. While apparently it was -only the nobility, only the gentry, only the twenty-five or thirty -thousand knights left alive out of the late wars, we were of one -mind, and undisturbed by any troubling doubt; each and every one -of these fifty-two lads who stand here before you, said, 'They -have chosen--it is their affair.' But think!--the matter is -altered--_All England is marching against us_! Oh, sir, consider! ---reflect!--these people are our people, they are bone of our bone, -flesh of our flesh, we love them--do not ask us to destroy our nation!" - -Well, it shows the value of looking ahead, and being ready for -a thing when it happens. If I hadn't foreseen this thing and been -fixed, that boy would have had me!--I couldn't have said a word. -But I was fixed. I said: - -"My boys, your hearts are in the right place, you have thought the -worthy thought, you have done the worthy thing. You are English -boys, you will remain English boys, and you will keep that name -unsmirched. Give yourselves no further concern, let your minds be -at peace. Consider this: while all England is marching against -us, who is in the van? Who, by the commonest rules of war, will -march in the front? Answer me." - -"The mounted host of mailed knights." - -"True. They are thirty thousand strong. Acres deep they will march. -Now, observe: none but _they_ will ever strike the sand-belt! Then -there will be an episode! Immediately after, the civilian multitude -in the rear will retire, to meet business engagements elsewhere. -None but nobles and gentry are knights, and _none but these_ will -remain to dance to our music after that episode. It is absolutely -true that we shall have to fight nobody but these thirty thousand -knights. Now speak, and it shall be as you decide. Shall we -avoid the battle, retire from the field?" - -"NO!!!" - -The shout was unanimous and hearty. - -"Are you--are you--well, afraid of these thirty thousand knights?" - -That joke brought out a good laugh, the boys' troubles vanished -away, and they went gaily to their posts. Ah, they were a darling -fifty-two! As pretty as girls, too. - -I was ready for the enemy now. Let the approaching big day come -along--it would find us on deck. - -The big day arrived on time. At dawn the sentry on watch in the -corral came into the cave and reported a moving black mass under -the horizon, and a faint sound which he thought to be military -music. Breakfast was just ready; we sat down and ate it. - -This over, I made the boys a little speech, and then sent out -a detail to man the battery, with Clarence in command of it. - -The sun rose presently and sent its unobstructed splendors over -the land, and we saw a prodigious host moving slowly toward us, -with the steady drift and aligned front of a wave of the sea. -Nearer and nearer it came, and more and more sublimely imposing -became its aspect; yes, all England was there, apparently. Soon -we could see the innumerable banners fluttering, and then the sun -struck the sea of armor and set it all aflash. Yes, it was a fine -sight; I hadn't ever seen anything to beat it. - -At last we could make out details. All the front ranks, no telling -how many acres deep, were horsemen--plumed knights in armor. -Suddenly we heard the blare of trumpets; the slow walk burst into -a gallop, and then--well, it was wonderful to see! Down swept -that vast horse-shoe wave--it approached the sand-belt--my breath -stood still; nearer, nearer--the strip of green turf beyond the -yellow belt grew narrow--narrower still--became a mere ribbon in -front of the horses--then disappeared under their hoofs. Great -Scott! Why, the whole front of that host shot into the sky with -a thunder-crash, and became a whirling tempest of rags and fragments; -and along the ground lay a thick wall of smoke that hid what was -left of the multitude from our sight. - -Time for the second step in the plan of campaign! I touched -a button, and shook the bones of England loose from her spine! - -In that explosion all our noble civilization-factories went up in -the air and disappeared from the earth. It was a pity, but it -was necessary. We could not afford to let the enemy turn our own -weapons against us. - -Now ensued one of the dullest quarter-hours I had ever endured. -We waited in a silent solitude enclosed by our circles of wire, -and by a circle of heavy smoke outside of these. We couldn't -see over the wall of smoke, and we couldn't see through it. But -at last it began to shred away lazily, and by the end of another -quarter-hour the land was clear and our curiosity was enabled -to satisfy itself. No living creature was in sight! We now -perceived that additions had been made to our defenses. The -dynamite had dug a ditch more than a hundred feet wide, all around -us, and cast up an embankment some twenty-five feet high on both -borders of it. As to destruction of life, it was amazing. Moreover, -it was beyond estimate. Of course, we could not _count_ the dead, -because they did not exist as individuals, but merely as homogeneous -protoplasm, with alloys of iron and buttons. - -No life was in sight, but necessarily there must have been some -wounded in the rear ranks, who were carried off the field under -cover of the wall of smoke; there would be sickness among the -others--there always is, after an episode like that. But there -would be no reinforcements; this was the last stand of the chivalry -of England; it was all that was left of the order, after the recent -annihilating wars. So I felt quite safe in believing that the -utmost force that could for the future be brought against us -would be but small; that is, of knights. I therefore issued a -congratulatory proclamation to my army in these words: - - SOLDIERS, CHAMPIONS OF HUMAN LIBERTY AND EQUALITY: - Your General congratulates you! In the pride of his - strength and the vanity of his renown, an arrogant - enemy came against you. You were ready. The conflict - was brief; on your side, glorious. This mighty - victory, having been achieved utterly without loss, - stands without example in history. So long as the - planets shall continue to move in their orbits, the - BATTLE OF THE SAND-BELT will not perish out of the - memories of men. - - THE BOSS. - -I read it well, and the applause I got was very gratifying to me. -I then wound up with these remarks: - -"The war with the English nation, as a nation, is at an end. -The nation has retired from the field and the war. Before it can -be persuaded to return, war will have ceased. This campaign is -the only one that is going to be fought. It will be brief ---the briefest in history. Also the most destructive to life, -considered from the standpoint of proportion of casualties to -numbers engaged. We are done with the nation; henceforth we deal -only with the knights. English knights can be killed, but they -cannot be conquered. We know what is before us. While one of -these men remains alive, our task is not finished, the war is not -ended. We will kill them all." [Loud and long continued applause.] - -I picketed the great embankments thrown up around our lines by -the dynamite explosion--merely a lookout of a couple of boys -to announce the enemy when he should appear again. - -Next, I sent an engineer and forty men to a point just beyond -our lines on the south, to turn a mountain brook that was there, -and bring it within our lines and under our command, arranging -it in such a way that I could make instant use of it in an emergency. -The forty men were divided into two shifts of twenty each, and -were to relieve each other every two hours. In ten hours the -work was accomplished. - -It was nightfall now, and I withdrew my pickets. The one who -had had the northern outlook reported a camp in sight, but visible -with the glass only. He also reported that a few knights had been -feeling their way toward us, and had driven some cattle across our -lines, but that the knights themselves had not come very near. -That was what I had been expecting. They were feeling us, you -see; they wanted to know if we were going to play that red terror -on them again. They would grow bolder in the night, perhaps. -I believed I knew what project they would attempt, because it was -plainly the thing I would attempt myself if I were in their places -and as ignorant as they were. I mentioned it to Clarence. - -"I think you are right," said he; "it is the obvious thing for -them to try." - -"Well, then," I said, "if they do it they are doomed." - -"Certainly." - -"They won't have the slightest show in the world." - -"Of course they won't." - -"It's dreadful, Clarence. It seems an awful pity." - -The thing disturbed me so that I couldn't get any peace of mind -for thinking of it and worrying over it. So, at last, to quiet -my conscience, I framed this message to the knights: - - TO THE HONORABLE THE COMMANDER OF THE INSURGENT - CHIVALRY OF ENGLAND: YOU fight in vain. We know - your strength--if one may call it by that name. - We know that at the utmost you cannot bring - against us above five and twenty thousand knights. - Therefore, you have no chance--none whatever. - Reflect: we are well equipped, well fortified, we - number 54. Fifty-four what? Men? No, MINDS--the - capablest in the world; a force against which - mere animal might may no more hope to prevail than - may the idle waves of the sea hope to prevail - against the granite barriers of England. Be advised. - We offer you your lives; for the sake of your - families, do not reject the gift. We offer you - this chance, and it is the last: throw down your - arms; surrender unconditionally to the Republic, - and all will be forgiven. - - (Signed) THE BOSS. - -I read it to Clarence, and said I proposed to send it by a flag -of truce. He laughed the sarcastic laugh he was born with, and said: - -"Somehow it seems impossible for you to ever fully realize what -these nobilities are. Now let us save a little time and trouble. -Consider me the commander of the knights yonder. Now, then, -you are the flag of truce; approach and deliver me your message, -and I will give you your answer." - -I humored the idea. I came forward under an imaginary guard of -the enemy's soldiers, produced my paper, and read it through. -For answer, Clarence struck the paper out of my hand, pursed up -a scornful lip and said with lofty disdain: - -"Dismember me this animal, and return him in a basket to the -base-born knave who sent him; other answer have I none!" - -How empty is theory in presence of fact! And this was just fact, -and nothing else. It was the thing that would have happened, -there was no getting around that. I tore up the paper and granted -my mistimed sentimentalities a permanent rest. - -Then, to business. I tested the electric signals from the gatling -platform to the cave, and made sure that they were all right; -I tested and retested those which commanded the fences--these -were signals whereby I could break and renew the electric current -in each fence independently of the others at will. I placed the -brook-connection under the guard and authority of three of my -best boys, who would alternate in two-hour watches all night and -promptly obey my signal, if I should have occasion to give it ---three revolver-shots in quick succession. Sentry-duty was discarded -for the night, and the corral left empty of life; I ordered that -quiet be maintained in the cave, and the electric lights turned -down to a glimmer. - -As soon as it was good and dark, I shut off the current from all -the fences, and then groped my way out to the embankment bordering -our side of the great dynamite ditch. I crept to the top of it -and lay there on the slant of the muck to watch. But it was -too dark to see anything. As for sounds, there were none. The -stillness was deathlike. True, there were the usual night-sounds -of the country--the whir of night-birds, the buzzing of insects, -the barking of distant dogs, the mellow lowing of far-off kine ---but these didn't seem to break the stillness, they only intensified -it, and added a grewsome melancholy to it into the bargain. - -I presently gave up looking, the night shut down so black, but -I kept my ears strained to catch the least suspicious sound, for -I judged I had only to wait, and I shouldn't be disappointed. -However, I had to wait a long time. At last I caught what you -may call in distinct glimpses of sound dulled metallic sound. -I pricked up my ears, then, and held my breath, for this was the -sort of thing I had been waiting for. This sound thickened, and -approached--from toward the north. Presently, I heard it at my -own level--the ridge-top of the opposite embankment, a hundred -feet or more away. Then I seemed to see a row of black dots appear -along that ridge--human heads? I couldn't tell; it mightn't be -anything at all; you can't depend on your eyes when your imagination -is out of focus. However, the question was soon settled. I heard -that metallic noise descending into the great ditch. It augmented -fast, it spread all along, and it unmistakably furnished me this -fact: an armed host was taking up its quarters in the ditch. Yes, -these people were arranging a little surprise party for us. We -could expect entertainment about dawn, possibly earlier. - -I groped my way back to the corral now; I had seen enough. I went -to the platform and signaled to turn the current on to the two -inner fences. Then I went into the cave, and found everything -satisfactory there--nobody awake but the working-watch. I woke -Clarence and told him the great ditch was filling up with men, -and that I believed all the knights were coming for us in a body. -It was my notion that as soon as dawn approached we could expect -the ditch's ambuscaded thousands to swarm up over the embankment -and make an assault, and be followed immediately by the rest -of their army. - -Clarence said: - -"They will be wanting to send a scout or two in the dark to make -preliminary observations. Why not take the lightning off the -outer fences, and give them a chance?" - -"I've already done it, Clarence. Did you ever know me to be -inhospitable?" - -"No, you are a good heart. I want to go and--" - -"Be a reception committee? I will go, too." - -We crossed the corral and lay down together between the two inside -fences. Even the dim light of the cave had disordered our eyesight -somewhat, but the focus straightway began to regulate itself and -soon it was adjusted for present circumstances. We had had to feel -our way before, but we could make out to see the fence posts now. -We started a whispered conversation, but suddenly Clarence broke -off and said: - -"What is that?" - -"What is what?" - -"That thing yonder." - -"What thing--where?" - -"There beyond you a little piece--dark something--a dull shape -of some kind--against the second fence." - -I gazed and he gazed. I said: - -"Could it be a man, Clarence?" - -"No, I think not. If you notice, it looks a lit--why, it _is_ -a man!--leaning on the fence." - -"I certainly believe it is; let us go and see." - -We crept along on our hands and knees until we were pretty close, -and then looked up. Yes, it was a man--a dim great figure in armor, -standing erect, with both hands on the upper wire--and, of course, -there was a smell of burning flesh. Poor fellow, dead as a -door-nail, and never knew what hurt him. He stood there like a -statue--no motion about him, except that his plumes swished about -a little in the night wind. We rose up and looked in through -the bars of his visor, but couldn't make out whether we knew him -or not--features too dim and shadowed. - -We heard muffled sounds approaching, and we sank down to the ground -where we were. We made out another knight vaguely; he was coming -very stealthily, and feeling his way. He was near enough now for -us to see him put out a hand, find an upper wire, then bend and -step under it and over the lower one. Now he arrived at the -first knight--and started slightly when he discovered him. He -stood a moment--no doubt wondering why the other one didn't move -on; then he said, in a low voice, "Why dreamest thou here, good -Sir Mar--" then he laid his hand on the corpse's shoulder--and just -uttered a little soft moan and sunk down dead. Killed by a dead -man, you see--killed by a dead friend, in fact. There was something -awful about it. - -These early birds came scattering along after each other, about -one every five minutes in our vicinity, during half an hour. -They brought no armor of offense but their swords; as a rule, -they carried the sword ready in the hand, and put it forward and -found the wires with it. We would now and then see a blue spark -when the knight that caused it was so far away as to be invisible -to us; but we knew what had happened, all the same; poor fellow, -he had touched a charged wire with his sword and been electrocuted. -We had brief intervals of grim stillness, interrupted with piteous -regularity by the clash made by the falling of an iron-clad; and -this sort of thing was going on, right along, and was very creepy -there in the dark and lonesomeness. - -We concluded to make a tour between the inner fences. We elected -to walk upright, for convenience's sake; we argued that if discerned, -we should be taken for friends rather than enemies, and in any case -we should be out of reach of swords, and these gentry did not seem -to have any spears along. Well, it was a curious trip. Everywhere -dead men were lying outside the second fence--not plainly visible, -but still visible; and we counted fifteen of those pathetic -statues--dead knights standing with their hands on the upper wire. - -One thing seemed to be sufficiently demonstrated: our current -was so tremendous that it killed before the victim could cry out. -Pretty soon we detected a muffled and heavy sound, and next moment -we guessed what it was. It was a surprise in force coming! I whispered -Clarence to go and wake the army, and notify it to wait in silence -in the cave for further orders. He was soon back, and we stood -by the inner fence and watched the silent lightning do its awful -work upon that swarming host. One could make out but little of -detail; but he could note that a black mass was piling itself up -beyond the second fence. That swelling bulk was dead men! Our -camp was enclosed with a solid wall of the dead--a bulwark, -a breastwork, of corpses, you may say. One terrible thing about -this thing was the absence of human voices; there were no cheers, -no war cries; being intent upon a surprise, these men moved as -noiselessly as they could; and always when the front rank was near -enough to their goal to make it proper for them to begin to get -a shout ready, of course they struck the fatal line and went down -without testifying. - -I sent a current through the third fence now; and almost immediately -through the fourth and fifth, so quickly were the gaps filled up. -I believed the time was come now for my climax; I believed that -that whole army was in our trap. Anyway, it was high time to find -out. So I touched a button and set fifty electric suns aflame -on the top of our precipice. - -Land, what a sight! We were enclosed in three walls of dead men! -All the other fences were pretty nearly filled with the living, -who were stealthily working their way forward through the wires. -The sudden glare paralyzed this host, petrified them, you may say, -with astonishment; there was just one instant for me to utilize -their immobility in, and I didn't lose the chance. You see, in -another instant they would have recovered their faculties, then -they'd have burst into a cheer and made a rush, and my wires -would have gone down before it; but that lost instant lost them -their opportunity forever; while even that slight fragment of time -was still unspent, I shot the current through all the fences and -struck the whole host dead in their tracks! _There_ was a groan -you could _hear_! It voiced the death-pang of eleven thousand men. -It swelled out on the night with awful pathos. - -A glance showed that the rest of the enemy--perhaps ten thousand -strong--were between us and the encircling ditch, and pressing -forward to the assault. Consequently we had them _all!_ and had -them past help. Time for the last act of the tragedy. I fired -the three appointed revolver shots--which meant: - -"Turn on the water!" - -There was a sudden rush and roar, and in a minute the mountain -brook was raging through the big ditch and creating a river a -hundred feet wide and twenty-five deep. - -"Stand to your guns, men! Open fire!" - -The thirteen gatlings began to vomit death into the fated ten -thousand. They halted, they stood their ground a moment against -that withering deluge of fire, then they broke, faced about and -swept toward the ditch like chaff before a gale. A full fourth -part of their force never reached the top of the lofty embankment; -the three-fourths reached it and plunged over--to death by drowning. - -Within ten short minutes after we had opened fire, armed resistance -was totally annihilated, the campaign was ended, we fifty-four were -masters of England. Twenty-five thousand men lay dead around us. - -But how treacherous is fortune! In a little while--say an hour ---happened a thing, by my own fault, which--but I have no heart -to write that. Let the record end here. - - - -CHAPTER XLIV - -A POSTSCRIPT BY CLARENCE - -I, Clarence, must write it for him. He proposed that we two -go out and see if any help could be accorded the wounded. I was -strenuous against the project. I said that if there were many, -we could do but little for them; and it would not be wise for us to -trust ourselves among them, anyway. But he could seldom be turned -from a purpose once formed; so we shut off the electric current -from the fences, took an escort along, climbed over the enclosing -ramparts of dead knights, and moved out upon the field. The first -wounded mall who appealed for help was sitting with his back -against a dead comrade. When The Boss bent over him and spoke -to him, the man recognized him and stabbed him. That knight was -Sir Meliagraunce, as I found out by tearing off his helmet. He -will not ask for help any more. - -We carried The Boss to the cave and gave his wound, which was -not very serious, the best care we could. In this service we had -the help of Merlin, though we did not know it. He was disguised -as a woman, and appeared to be a simple old peasant goodwife. -In this disguise, with brown-stained face and smooth shaven, he -had appeared a few days after The Boss was hurt and offered to cook -for us, saying her people had gone off to join certain new camps -which the enemy were forming, and that she was starving. The Boss -had been getting along very well, and had amused himself with -finishing up his record. - -We were glad to have this woman, for we were short handed. We -were in a trap, you see--a trap of our own making. If we stayed -where we were, our dead would kill us; if we moved out of our -defenses, we should no longer be invincible. We had conquered; -in turn we were conquered. The Boss recognized this; we all -recognized it. If we could go to one of those new camps and -patch up some kind of terms with the enemy--yes, but The Boss -could not go, and neither could I, for I was among the first that -were made sick by the poisonous air bred by those dead thousands. -Others were taken down, and still others. To-morrow-- - -_To-morrow._ It is here. And with it the end. About midnight -I awoke, and saw that hag making curious passes in the air about -The Boss's head and face, and wondered what it meant. Everybody -but the dynamo-watch lay steeped in sleep; there was no sound. -The woman ceased from her mysterious foolery, and started tip-toeing -toward the door. I called out: - -"Stop! What have you been doing?" - -She halted, and said with an accent of malicious satisfaction: - -"Ye were conquerors; ye are conquered! These others are perishing ---you also. Ye shall all die in this place--every one--except _him_. -He sleepeth now--and shall sleep thirteen centuries. I am Merlin!" - -Then such a delirium of silly laughter overtook him that he reeled -about like a drunken man, and presently fetched up against one -of our wires. His mouth is spread open yet; apparently he is still -laughing. I suppose the face will retain that petrified laugh until -the corpse turns to dust. - -The Boss has never stirred--sleeps like a stone. If he does not -wake to-day we shall understand what kind of a sleep it is, and -his body will then be borne to a place in one of the remote recesses -of the cave where none will ever find it to desecrate it. As for -the rest of us--well, it is agreed that if any one of us ever -escapes alive from this place, he will write the fact here, and -loyally hide this Manuscript with The Boss, our dear good chief, -whose property it is, be he alive or dead. - - - -THE END OF THE MANUSCRIPT - - - - - -FINAL P.S. BY M.T. - -The dawn was come when I laid the Manuscript aside. The rain -had almost ceased, the world was gray and sad, the exhausted storm -was sighing and sobbing itself to rest. I went to the stranger's -room, and listened at his door, which was slightly ajar. I could -hear his voice, and so I knocked. There was no answer, but I still -heard the voice. I peeped in. The man lay on his back in bed, -talking brokenly but with spirit, and punctuating with his arms, -which he thrashed about, restlessly, as sick people do in delirium. -I slipped in softly and bent over him. His mutterings and -ejaculations went on. I spoke--merely a word, to call his attention. -His glassy eyes and his ashy face were alight in an instant with -pleasure, gratitude, gladness, welcome: - -"Oh, Sandy, you are come at last--how I have longed for you! Sit -by me--do not leave me--never leave me again, Sandy, never again. -Where is your hand?--give it me, dear, let me hold it--there ---now all is well, all is peace, and I am happy again--_we_ are happy -again, isn't it so, Sandy? You are so dim, so vague, you are but -a mist, a cloud, but you are _here_, and that is blessedness sufficient; -and I have your hand; don't take it away--it is for only a little -while, I shall not require it long.... Was that the child?... -Hello-Central!... she doesn't answer. Asleep, perhaps? Bring her -when she wakes, and let me touch her hands, her face, her hair, -and tell her good-bye.... Sandy! Yes, you are there. I lost -myself a moment, and I thought you were gone.... Have I been -sick long? It must be so; it seems months to me. And such dreams! -such strange and awful dreams, Sandy! Dreams that were as real -as reality--delirium, of course, but _so_ real! Why, I thought -the king was dead, I thought you were in Gaul and couldn't get -home, I thought there was a revolution; in the fantastic frenzy -of these dreams, I thought that Clarence and I and a handful of -my cadets fought and exterminated the whole chivalry of England! -But even that was not the strangest. I seemed to be a creature -out of a remote unborn age, centuries hence, and even _that_ was -as real as the rest! Yes, I seemed to have flown back out of that -age into this of ours, and then forward to it again, and was set -down, a stranger and forlorn in that strange England, with an -abyss of thirteen centuries yawning between me and you! between -me and my home and my friends! between me and all that is dear -to me, all that could make life worth the living! It was awful ---awfuler than you can ever imagine, Sandy. Ah, watch by me, Sandy ---stay by me every moment--_don't_ let me go out of my mind again; -death is nothing, let it come, but not with those dreams, not with -the torture of those hideous dreams--I cannot endure _that_ again.... -Sandy?..." - -He lay muttering incoherently some little time; then for a time he -lay silent, and apparently sinking away toward death. Presently -his fingers began to pick busily at the coverlet, and by that sign -I knew that his end was at hand with the first suggestion of the -death-rattle in his throat he started up slightly, and seemed -to listen: then he said: - -"A bugle?... It is the king! The drawbridge, there! Man the -battlements!--turn out the--" - -He was getting up his last "effect"; but he never finished it. - - - - - -End of the Project Gutenberg EBook of A Connecticut Yankee in King Arthur's -Court, Complete, by Mark Twain (Samuel Clemens) - -*** END OF THIS PROJECT GUTENBERG EBOOK CONNECTICUT YANKEE *** - -***** This file should be named 86.txt or 86.zip ***** -This and all associated files of various formats will be found in: - http://www.gutenberg.net/8/86/ - -Produced by David Widger and Janet Blenkinship - - -Updated editions will replace the previous one--the old editions -will be renamed. - -Creating the works from public domain print editions means that no -one owns a United States copyright in these works, so the Foundation -(and you!) can copy and distribute it in the United States without -permission and without paying copyright royalties. Special rules, -set forth in the General Terms of Use part of this license, apply to -copying and distributing Project Gutenberg-tm electronic works to -protect the PROJECT GUTENBERG-tm concept and trademark. Project -Gutenberg is a registered trademark, and may not be used if you -charge for the eBooks, unless you receive specific permission. If you -do not charge anything for copies of this eBook, complying with the -rules is very easy. You may use this eBook for nearly any purpose -such as creation of derivative works, reports, performances and -research. They may be modified and printed and given away--you may do -practically ANYTHING with public domain eBooks. Redistribution is -subject to the trademark license, especially commercial -redistribution. - - - -*** START: FULL LICENSE *** - -THE FULL PROJECT GUTENBERG LICENSE -PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK - -To protect the Project Gutenberg-tm mission of promoting the free -distribution of electronic works, by using or distributing this work -(or any other work associated in any way with the phrase "Project -Gutenberg"), you agree to comply with all the terms of the Full Project -Gutenberg-tm License (available with this file or online at -http://gutenberg.net/license). - - -Section 1. General Terms of Use and Redistributing Project Gutenberg-tm -electronic works - -1.A. By reading or using any part of this Project Gutenberg-tm -electronic work, you indicate that you have read, understand, agree to -and accept all the terms of this license and intellectual property -(trademark/copyright) agreement. If you do not agree to abide by all -the terms of this agreement, you must cease using and return or destroy -all copies of Project Gutenberg-tm electronic works in your possession. -If you paid a fee for obtaining a copy of or access to a Project -Gutenberg-tm electronic work and you do not agree to be bound by the -terms of this agreement, you may obtain a refund from the person or -entity to whom you paid the fee as set forth in paragraph 1.E.8. - -1.B. "Project Gutenberg" is a registered trademark. It may only be -used on or associated in any way with an electronic work by people who -agree to be bound by the terms of this agreement. There are a few -things that you can do with most Project Gutenberg-tm electronic works -even without complying with the full terms of this agreement. See -paragraph 1.C below. There are a lot of things you can do with Project -Gutenberg-tm electronic works if you follow the terms of this agreement -and help preserve free future access to Project Gutenberg-tm electronic -works. See paragraph 1.E below. - -1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" -or PGLAF), owns a compilation copyright in the collection of Project -Gutenberg-tm electronic works. Nearly all the individual works in the -collection are in the public domain in the United States. If an -individual work is in the public domain in the United States and you are -located in the United States, we do not claim a right to prevent you from -copying, distributing, performing, displaying or creating derivative -works based on the work as long as all references to Project Gutenberg -are removed. Of course, we hope that you will support the Project -Gutenberg-tm mission of promoting free access to electronic works by -freely sharing Project Gutenberg-tm works in compliance with the terms of -this agreement for keeping the Project Gutenberg-tm name associated with -the work. You can easily comply with the terms of this agreement by -keeping this work in the same format with its attached full Project -Gutenberg-tm License when you share it without charge with others. - -1.D. The copyright laws of the place where you are located also govern -what you can do with this work. Copyright laws in most countries are in -a constant state of change. If you are outside the United States, check -the laws of your country in addition to the terms of this agreement -before downloading, copying, displaying, performing, distributing or -creating derivative works based on this work or any other Project -Gutenberg-tm work. The Foundation makes no representations concerning -the copyright status of any work in any country outside the United -States. - -1.E. Unless you have removed all references to Project Gutenberg: - -1.E.1. The following sentence, with active links to, or other immediate -access to, the full Project Gutenberg-tm License must appear prominently -whenever any copy of a Project Gutenberg-tm work (any work on which the -phrase "Project Gutenberg" appears, or with which the phrase "Project -Gutenberg" is associated) is accessed, displayed, performed, viewed, -copied or distributed: - -This eBook is for the use of anyone anywhere at no cost and with -almost no restrictions whatsoever. You may copy it, give it away or -re-use it under the terms of the Project Gutenberg License included -with this eBook or online at www.gutenberg.net - -1.E.2. If an individual Project Gutenberg-tm electronic work is derived -from the public domain (does not contain a notice indicating that it is -posted with permission of the copyright holder), the work can be copied -and distributed to anyone in the United States without paying any fees -or charges. If you are redistributing or providing access to a work -with the phrase "Project Gutenberg" associated with or appearing on the -work, you must comply either with the requirements of paragraphs 1.E.1 -through 1.E.7 or obtain permission for the use of the work and the -Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or -1.E.9. - -1.E.3. If an individual Project Gutenberg-tm electronic work is posted -with the permission of the copyright holder, your use and distribution -must comply with both paragraphs 1.E.1 through 1.E.7 and any additional -terms imposed by the copyright holder. Additional terms will be linked -to the Project Gutenberg-tm License for all works posted with the -permission of the copyright holder found at the beginning of this work. - -1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm -License terms from this work, or any files containing a part of this -work or any other work associated with Project Gutenberg-tm. - -1.E.5. Do not copy, display, perform, distribute or redistribute this -electronic work, or any part of this electronic work, without -prominently displaying the sentence set forth in paragraph 1.E.1 with -active links or immediate access to the full terms of the Project -Gutenberg-tm License. - -1.E.6. You may convert to and distribute this work in any binary, -compressed, marked up, nonproprietary or proprietary form, including any -word processing or hypertext form. However, if you provide access to or -distribute copies of a Project Gutenberg-tm work in a format other than -"Plain Vanilla ASCII" or other format used in the official version -posted on the official Project Gutenberg-tm web site (www.gutenberg.net), -you must, at no additional cost, fee or expense to the user, provide a -copy, a means of exporting a copy, or a means of obtaining a copy upon -request, of the work in its original "Plain Vanilla ASCII" or other -form. Any alternate format must include the full Project Gutenberg-tm -License as specified in paragraph 1.E.1. - -1.E.7. Do not charge a fee for access to, viewing, displaying, -performing, copying or distributing any Project Gutenberg-tm works -unless you comply with paragraph 1.E.8 or 1.E.9. - -1.E.8. You may charge a reasonable fee for copies of or providing -access to or distributing Project Gutenberg-tm electronic works provided -that - -- You pay a royalty fee of 20% of the gross profits you derive from - the use of Project Gutenberg-tm works calculated using the method - you already use to calculate your applicable taxes. The fee is - owed to the owner of the Project Gutenberg-tm trademark, but he - has agreed to donate royalties under this paragraph to the - Project Gutenberg Literary Archive Foundation. Royalty payments - must be paid within 60 days following each date on which you - prepare (or are legally required to prepare) your periodic tax - returns. Royalty payments should be clearly marked as such and - sent to the Project Gutenberg Literary Archive Foundation at the - address specified in Section 4, "Information about donations to - the Project Gutenberg Literary Archive Foundation." - -- You provide a full refund of any money paid by a user who notifies - you in writing (or by e-mail) within 30 days of receipt that s/he - does not agree to the terms of the full Project Gutenberg-tm - License. You must require such a user to return or - destroy all copies of the works possessed in a physical medium - and discontinue all use of and all access to other copies of - Project Gutenberg-tm works. - -- You provide, in accordance with paragraph 1.F.3, a full refund of any - money paid for a work or a replacement copy, if a defect in the - electronic work is discovered and reported to you within 90 days - of receipt of the work. - -- You comply with all other terms of this agreement for free - distribution of Project Gutenberg-tm works. - -1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm -electronic work or group of works on different terms than are set -forth in this agreement, you must obtain permission in writing from -both the Project Gutenberg Literary Archive Foundation and Michael -Hart, the owner of the Project Gutenberg-tm trademark. Contact the -Foundation as set forth in Section 3 below. - -1.F. - -1.F.1. Project Gutenberg volunteers and employees expend considerable -effort to identify, do copyright research on, transcribe and proofread -public domain works in creating the Project Gutenberg-tm -collection. Despite these efforts, Project Gutenberg-tm electronic -works, and the medium on which they may be stored, may contain -"Defects," such as, but not limited to, incomplete, inaccurate or -corrupt data, transcription errors, a copyright or other intellectual -property infringement, a defective or damaged disk or other medium, a -computer virus, or computer codes that damage or cannot be read by -your equipment. - -1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right -of Replacement or Refund" described in paragraph 1.F.3, the Project -Gutenberg Literary Archive Foundation, the owner of the Project -Gutenberg-tm trademark, and any other party distributing a Project -Gutenberg-tm electronic work under this agreement, disclaim all -liability to you for damages, costs and expenses, including legal -fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT -LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE -PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE -TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE -LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR -INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH -DAMAGE. - -1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a -defect in this electronic work within 90 days of receiving it, you can -receive a refund of the money (if any) you paid for it by sending a -written explanation to the person you received the work from. If you -received the work on a physical medium, you must return the medium with -your written explanation. The person or entity that provided you with -the defective work may elect to provide a replacement copy in lieu of a -refund. If you received the work electronically, the person or entity -providing it to you may choose to give you a second opportunity to -receive the work electronically in lieu of a refund. If the second copy -is also defective, you may demand a refund in writing without further -opportunities to fix the problem. - -1.F.4. Except for the limited right of replacement or refund set forth -in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER -WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO -WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. - -1.F.5. Some states do not allow disclaimers of certain implied -warranties or the exclusion or limitation of certain types of damages. -If any disclaimer or limitation set forth in this agreement violates the -law of the state applicable to this agreement, the agreement shall be -interpreted to make the maximum disclaimer or limitation permitted by -the applicable state law. The invalidity or unenforceability of any -provision of this agreement shall not void the remaining provisions. - -1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the -trademark owner, any agent or employee of the Foundation, anyone -providing copies of Project Gutenberg-tm electronic works in accordance -with this agreement, and any volunteers associated with the production, -promotion and distribution of Project Gutenberg-tm electronic works, -harmless from all liability, costs and expenses, including legal fees, -that arise directly or indirectly from any of the following which you do -or cause to occur: (a) distribution of this or any Project Gutenberg-tm -work, (b) alteration, modification, or additions or deletions to any -Project Gutenberg-tm work, and (c) any Defect you cause. - - -Section 2. Information about the Mission of Project Gutenberg-tm - -Project Gutenberg-tm is synonymous with the free distribution of -electronic works in formats readable by the widest variety of computers -including obsolete, old, middle-aged and new computers. It exists -because of the efforts of hundreds of volunteers and donations from -people in all walks of life. - -Volunteers and financial support to provide volunteers with the -assistance they need, is critical to reaching Project Gutenberg-tm's -goals and ensuring that the Project Gutenberg-tm collection will -remain freely available for generations to come. In 2001, the Project -Gutenberg Literary Archive Foundation was created to provide a secure -and permanent future for Project Gutenberg-tm and future generations. -To learn more about the Project Gutenberg Literary Archive Foundation -and how your efforts and donations can help, see Sections 3 and 4 -and the Foundation web page at http://www.pglaf.org. - - -Section 3. Information about the Project Gutenberg Literary Archive -Foundation - -The Project Gutenberg Literary Archive Foundation is a non profit -501(c)(3) educational corporation organized under the laws of the -state of Mississippi and granted tax exempt status by the Internal -Revenue Service. The Foundation's EIN or federal tax identification -number is 64-6221541. Its 501(c)(3) letter is posted at -http://pglaf.org/fundraising. Contributions to the Project Gutenberg -Literary Archive Foundation are tax deductible to the full extent -permitted by U.S. federal laws and your state's laws. - -The Foundation's principal office is located at 4557 Melan Dr. S. -Fairbanks, AK, 99712., but its volunteers and employees are scattered -throughout numerous locations. Its business office is located at -809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email -business@pglaf.org. Email contact links and up to date contact -information can be found at the Foundation's web site and official -page at http://pglaf.org - -For additional contact information: - Dr. Gregory B. Newby - Chief Executive and Director - gbnewby@pglaf.org - - -Section 4. Information about Donations to the Project Gutenberg -Literary Archive Foundation - -Project Gutenberg-tm depends upon and cannot survive without wide -spread public support and donations to carry out its mission of -increasing the number of public domain and licensed works that can be -freely distributed in machine readable form accessible by the widest -array of equipment including outdated equipment. Many small donations -($1 to $5,000) are particularly important to maintaining tax exempt -status with the IRS. - -The Foundation is committed to complying with the laws regulating -charities and charitable donations in all 50 states of the United -States. Compliance requirements are not uniform and it takes a -considerable effort, much paperwork and many fees to meet and keep up -with these requirements. We do not solicit donations in locations -where we have not received written confirmation of compliance. To -SEND DONATIONS or determine the status of compliance for any -particular state visit http://pglaf.org - -While we cannot and do not solicit contributions from states where we -have not met the solicitation requirements, we know of no prohibition -against accepting unsolicited donations from donors in such states who -approach us with offers to donate. - -International donations are gratefully accepted, but we cannot make -any statements concerning tax treatment of donations received from -outside the United States. U.S. laws alone swamp our small staff. - -Please check the Project Gutenberg Web pages for current donation -methods and addresses. Donations are accepted in a number of other -ways including including checks, online payments and credit card -donations. To donate, please visit: http://pglaf.org/donate - - -Section 5. General Information About Project Gutenberg-tm electronic -works. - -Professor Michael S. Hart is the originator of the Project Gutenberg-tm -concept of a library of electronic works that could be freely shared -with anyone. For thirty years, he produced and distributed Project -Gutenberg-tm eBooks with only a loose network of volunteer support. - - -Project Gutenberg-tm eBooks are often created from several printed -editions, all of which are confirmed as Public Domain in the U.S. -unless a copyright notice is included. Thus, we do not necessarily -keep eBooks in compliance with any particular paper edition. - - -Most people start at our Web site which has the main PG search facility: - - http://www.gutenberg.net - -This Web site includes information about Project Gutenberg-tm, -including how to make donations to the Project Gutenberg Literary -Archive Foundation, how to help produce our new eBooks, and how to -subscribe to our email newsletter to hear about new eBooks. +The Project Gutenberg EBook of A Connecticut Yankee in King Arthur's +Court, Complete, by Mark Twain (Samuel Clemens) + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.net + + +Title: A Connecticut Yankee in King Arthur's Court, Complete + +Author: Mark Twain (Samuel Clemens) + +Release Date: July 20, 2006 [EBook #86] +Last Updated: May 19, 2010 + +Language: English + + +*** START OF THIS PROJECT GUTENBERG EBOOK CONNECTICUT YANKEE *** + + + + +Produced by David Widger and Janet Blenkinship + + + + + + +A CONNECTICUT YANKEE IN KING ARTHUR'S COURT + +by + +MARK TWAIN +(Samuel L. Clemens) + + + + +PREFACE + +The ungentle laws and customs touched upon in this tale are +historical, and the episodes which are used to illustrate them +are also historical. It is not pretended that these laws and +customs existed in England in the sixth century; no, it is only +pretended that inasmuch as they existed in the English and other +civilizations of far later times, it is safe to consider that it is +no libel upon the sixth century to suppose them to have been in +practice in that day also. One is quite justified in inferring +that whatever one of these laws or customs was lacking in that +remote time, its place was competently filled by a worse one. + +The question as to whether there is such a thing as divine right +of kings is not settled in this book. It was found too difficult. +That the executive head of a nation should be a person of lofty +character and extraordinary ability, was manifest and indisputable; +that none but the Deity could select that head unerringly, was +also manifest and indisputable; that the Deity ought to make that +selection, then, was likewise manifest and indisputable; consequently, +that He does make it, as claimed, was an unavoidable deduction. +I mean, until the author of this book encountered the Pompadour, +and Lady Castlemaine, and some other executive heads of that kind; +these were found so difficult to work into the scheme, that it +was judged better to take the other tack in this book (which +must be issued this fall), and then go into training and settle +the question in another book. It is, of course, a thing which +ought to be settled, and I am not going to have anything particular +to do next winter anyway. + +MARK TWAIN + +HARTFORD, July 21, 1889 + + + + + + +A CONNECTICUT YANKEE IN KING ARTHUR'S COURT + + + + +A WORD OF EXPLANATION + +It was in Warwick Castle that I came across the curious stranger +whom I am going to talk about. He attracted me by three things: +his candid simplicity, his marvelous familiarity with ancient armor, +and the restfulness of his company--for he did all the talking. +We fell together, as modest people will, in the tail of the herd +that was being shown through, and he at once began to say things +which interested me. As he talked along, softly, pleasantly, +flowingly, he seemed to drift away imperceptibly out of this world +and time, and into some remote era and old forgotten country; +and so he gradually wove such a spell about me that I seemed +to move among the specters and shadows and dust and mold of a gray +antiquity, holding speech with a relic of it! Exactly as I would +speak of my nearest personal friends or enemies, or my most familiar +neighbors, he spoke of Sir Bedivere, Sir Bors de Ganis, Sir Launcelot +of the Lake, Sir Galahad, and all the other great names of the +Table Round--and how old, old, unspeakably old and faded and dry +and musty and ancient he came to look as he went on! Presently +he turned to me and said, just as one might speak of the weather, +or any other common matter-- + +"You know about transmigration of souls; do you know about +transposition of epochs--and bodies?" + +I said I had not heard of it. He was so little interested--just +as when people speak of the weather--that he did not notice +whether I made him any answer or not. There was half a moment +of silence, immediately interrupted by the droning voice of the +salaried cicerone: + +"Ancient hauberk, date of the sixth century, time of King Arthur +and the Round Table; said to have belonged to the knight Sir Sagramor +le Desirous; observe the round hole through the chain-mail in +the left breast; can't be accounted for; supposed to have been +done with a bullet since invention of firearms--perhaps maliciously +by Cromwell's soldiers." + +My acquaintance smiled--not a modern smile, but one that must +have gone out of general use many, many centuries ago--and muttered +apparently to himself: + +"Wit ye well, _I saw it done_." Then, after a pause, added: +"I did it myself." + +By the time I had recovered from the electric surprise of this +remark, he was gone. + +All that evening I sat by my fire at the Warwick Arms, steeped +in a dream of the olden time, while the rain beat upon the windows, +and the wind roared about the eaves and corners. From time to +time I dipped into old Sir Thomas Malory's enchanting book, and +fed at its rich feast of prodigies and adventures, breathed in +the fragrance of its obsolete names, and dreamed again. Midnight +being come at length, I read another tale, for a nightcap--this +which here follows, to wit: + +HOW SIR LAUNCELOT SLEW TWO GIANTS, AND MADE A CASTLE FREE + + Anon withal came there upon him two great giants, + well armed, all save the heads, with two horrible + clubs in their hands. Sir Launcelot put his shield + afore him, and put the stroke away of the one + giant, and with his sword he clave his head asunder. + When his fellow saw that, he ran away as he were + wood [*demented], for fear of the horrible strokes, + and Sir Launcelot after him with all his might, + and smote him on the shoulder, and clave him to + the middle. Then Sir Launcelot went into the hall, + and there came afore him three score ladies and + damsels, and all kneeled unto him, and thanked + God and him of their deliverance. For, sir, said + they, the most part of us have been here this + seven year their prisoners, and we have worked all + manner of silk works for our meat, and we are all + great gentle-women born, and blessed be the time, + knight, that ever thou wert born; for thou hast + done the most worship that ever did knight in the + world, that will we bear record, and we all pray + you to tell us your name, that we may tell our + friends who delivered us out of prison. Fair + damsels, he said, my name is Sir Launcelot du + Lake. And so he departed from them and betaught + them unto God. And then he mounted upon his + horse, and rode into many strange and wild + countries, and through many waters and valleys, + and evil was he lodged. And at the last by + fortune him happened against a night to come to + a fair courtilage, and therein he found an old + gentle-woman that lodged him with a good-will, + and there he had good cheer for him and his horse. + And when time was, his host brought him into a + fair garret over the gate to his bed. There + Sir Launcelot unarmed him, and set his harness + by him, and went to bed, and anon he fell on + sleep. So, soon after there came one on + horseback, and knocked at the gate in great + haste. And when Sir Launcelot heard this he rose + up, and looked out at the window, and saw by the + moonlight three knights come riding after that + one man, and all three lashed on him at once + with swords, and that one knight turned on them + knightly again and defended him. Truly, said + Sir Launcelot, yonder one knight shall I help, + for it were shame for me to see three knights + on one, and if he be slain I am partner of his + death. And therewith he took his harness and + went out at a window by a sheet down to the four + knights, and then Sir Launcelot said on high, + Turn you knights unto me, and leave your + fighting with that knight. And then they all + three left Sir Kay, and turned unto Sir Launcelot, + and there began great battle, for they alight + all three, and strake many strokes at Sir + Launcelot, and assailed him on every side. Then + Sir Kay dressed him for to have holpen Sir + Launcelot. Nay, sir, said he, I will none of + your help, therefore as ye will have my help + let me alone with them. Sir Kay for the pleasure + of the knight suffered him for to do his will, + and so stood aside. And then anon within six + strokes Sir Launcelot had stricken them to the earth. + + And then they all three cried, Sir Knight, we + yield us unto you as man of might matchless. As + to that, said Sir Launcelot, I will not take + your yielding unto me, but so that ye yield + you unto Sir Kay the seneschal, on that covenant + I will save your lives and else not. Fair knight, + said they, that were we loath to do; for as for + Sir Kay we chased him hither, and had overcome + him had ye not been; therefore, to yield us unto + him it were no reason. Well, as to that, said + Sir Launcelot, advise you well, for ye may + choose whether ye will die or live, for an ye be + yielden, it shall be unto Sir Kay. Fair knight, + then they said, in saving our lives we will do + as thou commandest us. Then shall ye, said Sir + Launcelot, on Whitsunday next coming go unto the + court of King Arthur, and there shall ye yield + you unto Queen Guenever, and put you all three + in her grace and mercy, and say that Sir Kay + sent you thither to be her prisoners. On the morn + Sir Launcelot arose early, and left Sir Kay + sleeping; and Sir Launcelot took Sir Kay's armor + and his shield and armed him, and so he went to + the stable and took his horse, and took his leave + of his host, and so he departed. Then soon after + arose Sir Kay and missed Sir Launcelot; and + then he espied that he had his armor and his + horse. Now by my faith I know well that he will + grieve some of the court of King Arthur; for on + him knights will be bold, and deem that it is I, + and that will beguile them; and because of his + armor and shield I am sure I shall ride in peace. + And then soon after departed Sir Kay, and + thanked his host. + + +As I laid the book down there was a knock at the door, and my +stranger came in. I gave him a pipe and a chair, and made him +welcome. I also comforted him with a hot Scotch whisky; gave him +another one; then still another--hoping always for his story. +After a fourth persuader, he drifted into it himself, in a quite +simple and natural way: + + + +THE STRANGER'S HISTORY + +I am an American. I was born and reared in Hartford, in the State +of Connecticut--anyway, just over the river, in the country. So +I am a Yankee of the Yankees--and practical; yes, and nearly +barren of sentiment, I suppose--or poetry, in other words. My +father was a blacksmith, my uncle was a horse doctor, and I was +both, along at first. Then I went over to the great arms factory +and learned my real trade; learned all there was to it; learned +to make everything: guns, revolvers, cannon, boilers, engines, all +sorts of labor-saving machinery. Why, I could make anything +a body wanted--anything in the world, it didn't make any difference +what; and if there wasn't any quick new-fangled way to make a thing, +I could invent one--and do it as easy as rolling off a log. I became +head superintendent; had a couple of thousand men under me. + +Well, a man like that is a man that is full of fight--that goes +without saying. With a couple of thousand rough men under one, +one has plenty of that sort of amusement. I had, anyway. At last +I met my match, and I got my dose. It was during a misunderstanding +conducted with crowbars with a fellow we used to call Hercules. +He laid me out with a crusher alongside the head that made everything +crack, and seemed to spring every joint in my skull and made it +overlap its neighbor. Then the world went out in darkness, and +I didn't feel anything more, and didn't know anything at all +--at least for a while. + +When I came to again, I was sitting under an oak tree, on the +grass, with a whole beautiful and broad country landscape all +to myself--nearly. Not entirely; for there was a fellow on a horse, +looking down at me--a fellow fresh out of a picture-book. He was +in old-time iron armor from head to heel, with a helmet on his +head the shape of a nail-keg with slits in it; and he had a shield, +and a sword, and a prodigious spear; and his horse had armor on, +too, and a steel horn projecting from his forehead, and gorgeous +red and green silk trappings that hung down all around him like +a bedquilt, nearly to the ground. + +"Fair sir, will ye just?" said this fellow. + +"Will I which?" + +"Will ye try a passage of arms for land or lady or for--" + +"What are you giving me?" I said. "Get along back to your circus, +or I'll report you." + +Now what does this man do but fall back a couple of hundred yards +and then come rushing at me as hard as he could tear, with his +nail-keg bent down nearly to his horse's neck and his long spear +pointed straight ahead. I saw he meant business, so I was up +the tree when he arrived. + +He allowed that I was his property, the captive of his spear. +There was argument on his side--and the bulk of the advantage +--so I judged it best to humor him. We fixed up an agreement +whereby I was to go with him and he was not to hurt me. I came +down, and we started away, I walking by the side of his horse. +We marched comfortably along, through glades and over brooks which +I could not remember to have seen before--which puzzled me and +made me wonder--and yet we did not come to any circus or sign of +a circus. So I gave up the idea of a circus, and concluded he was +from an asylum. But we never came to an asylum--so I was up +a stump, as you may say. I asked him how far we were from Hartford. +He said he had never heard of the place; which I took to be a lie, +but allowed it to go at that. At the end of an hour we saw a +far-away town sleeping in a valley by a winding river; and beyond +it on a hill, a vast gray fortress, with towers and turrets, +the first I had ever seen out of a picture. + +"Bridgeport?" said I, pointing. + +"Camelot," said he. + + +My stranger had been showing signs of sleepiness. He caught +himself nodding, now, and smiled one of those pathetic, obsolete +smiles of his, and said: + +"I find I can't go on; but come with me, I've got it all written +out, and you can read it if you like." + +In his chamber, he said: "First, I kept a journal; then by and by, +after years, I took the journal and turned it into a book. How +long ago that was!" + +He handed me his manuscript, and pointed out the place where +I should begin: + +"Begin here--I've already told you what goes before." He was +steeped in drowsiness by this time. As I went out at his door +I heard him murmur sleepily: "Give you good den, fair sir." + +I sat down by my fire and examined my treasure. The first part +of it--the great bulk of it--was parchment, and yellow with age. +I scanned a leaf particularly and saw that it was a palimpsest. +Under the old dim writing of the Yankee historian appeared traces +of a penmanship which was older and dimmer still--Latin words +and sentences: fragments from old monkish legends, evidently. +I turned to the place indicated by my stranger and began to read +--as follows: + + + + +THE TALE OF THE LOST LAND + + + + +CHAPTER I + +CAMELOT + +"Camelot--Camelot," said I to myself. "I don't seem to remember +hearing of it before. Name of the asylum, likely." + +It was a soft, reposeful summer landscape, as lovely as a dream, +and as lonesome as Sunday. The air was full of the smell of +flowers, and the buzzing of insects, and the twittering of birds, +and there were no people, no wagons, there was no stir of life, +nothing going on. The road was mainly a winding path with hoof-prints +in it, and now and then a faint trace of wheels on either side in +the grass--wheels that apparently had a tire as broad as one's hand. + +Presently a fair slip of a girl, about ten years old, with a cataract +of golden hair streaming down over her shoulders, came along. +Around her head she wore a hoop of flame-red poppies. It was as +sweet an outfit as ever I saw, what there was of it. She walked +indolently along, with a mind at rest, its peace reflected in her +innocent face. The circus man paid no attention to her; didn't +even seem to see her. And she--she was no more startled at his +fantastic make-up than if she was used to his like every day of +her life. She was going by as indifferently as she might have gone +by a couple of cows; but when she happened to notice me, _then_ +there was a change! Up went her hands, and she was turned to stone; +her mouth dropped open, her eyes stared wide and timorously, she +was the picture of astonished curiosity touched with fear. And +there she stood gazing, in a sort of stupefied fascination, till +we turned a corner of the wood and were lost to her view. That +she should be startled at me instead of at the other man, was too +many for me; I couldn't make head or tail of it. And that she +should seem to consider me a spectacle, and totally overlook her +own merits in that respect, was another puzzling thing, and a +display of magnanimity, too, that was surprising in one so young. +There was food for thought here. I moved along as one in a dream. + +As we approached the town, signs of life began to appear. At +intervals we passed a wretched cabin, with a thatched roof, and +about it small fields and garden patches in an indifferent state of +cultivation. There were people, too; brawny men, with long, coarse, +uncombed hair that hung down over their faces and made them look +like animals. They and the women, as a rule, wore a coarse +tow-linen robe that came well below the knee, and a rude sort of +sandal, and many wore an iron collar. The small boys and girls +were always naked; but nobody seemed to know it. All of these +people stared at me, talked about me, ran into the huts and fetched +out their families to gape at me; but nobody ever noticed that +other fellow, except to make him humble salutation and get no +response for their pains. + +In the town were some substantial windowless houses of stone +scattered among a wilderness of thatched cabins; the streets were +mere crooked alleys, and unpaved; troops of dogs and nude children +played in the sun and made life and noise; hogs roamed and rooted +contentedly about, and one of them lay in a reeking wallow in +the middle of the main thoroughfare and suckled her family. +Presently there was a distant blare of military music; it came +nearer, still nearer, and soon a noble cavalcade wound into view, +glorious with plumed helmets and flashing mail and flaunting banners +and rich doublets and horse-cloths and gilded spearheads; and +through the muck and swine, and naked brats, and joyous dogs, and +shabby huts, it took its gallant way, and in its wake we followed. +Followed through one winding alley and then another,--and climbing, +always climbing--till at last we gained the breezy height where +the huge castle stood. There was an exchange of bugle blasts; +then a parley from the walls, where men-at-arms, in hauberk and +morion, marched back and forth with halberd at shoulder under +flapping banners with the rude figure of a dragon displayed upon +them; and then the great gates were flung open, the drawbridge +was lowered, and the head of the cavalcade swept forward under +the frowning arches; and we, following, soon found ourselves in +a great paved court, with towers and turrets stretching up into +the blue air on all the four sides; and all about us the dismount +was going on, and much greeting and ceremony, and running to and +fro, and a gay display of moving and intermingling colors, and +an altogether pleasant stir and noise and confusion. + + + +CHAPTER II + +KING ARTHUR'S COURT + +The moment I got a chance I slipped aside privately and touched +an ancient common looking man on the shoulder and said, in an +insinuating, confidential way: + +"Friend, do me a kindness. Do you belong to the asylum, or are +you just on a visit or something like that?" + +He looked me over stupidly, and said: + +"Marry, fair sir, me seemeth--" + +"That will do," I said; "I reckon you are a patient." + +I moved away, cogitating, and at the same time keeping an eye +out for any chance passenger in his right mind that might come +along and give me some light. I judged I had found one, presently; +so I drew him aside and said in his ear: + +"If I could see the head keeper a minute--only just a minute--" + +"Prithee do not let me." + +"Let you _what_?" + +"_Hinder_ me, then, if the word please thee better. Then he went +on to say he was an under-cook and could not stop to gossip, +though he would like it another time; for it would comfort his +very liver to know where I got my clothes. As he started away he +pointed and said yonder was one who was idle enough for my purpose, +and was seeking me besides, no doubt. This was an airy slim boy +in shrimp-colored tights that made him look like a forked carrot, +the rest of his gear was blue silk and dainty laces and ruffles; +and he had long yellow curls, and wore a plumed pink satin cap +tilted complacently over his ear. By his look, he was good-natured; +by his gait, he was satisfied with himself. He was pretty enough +to frame. He arrived, looked me over with a smiling and impudent +curiosity; said he had come for me, and informed me that he was a page. + +"Go 'long," I said; "you ain't more than a paragraph." + +It was pretty severe, but I was nettled. However, it never phazed +him; he didn't appear to know he was hurt. He began to talk and +laugh, in happy, thoughtless, boyish fashion, as we walked along, +and made himself old friends with me at once; asked me all sorts +of questions about myself and about my clothes, but never waited +for an answer--always chattered straight ahead, as if he didn't +know he had asked a question and wasn't expecting any reply, until +at last he happened to mention that he was born in the beginning +of the year 513. + +It made the cold chills creep over me! I stopped and said, +a little faintly: + +"Maybe I didn't hear you just right. Say it again--and say it +slow. What year was it?" + +"513." + +"513! You don't look it! Come, my boy, I am a stranger and +friendless; be honest and honorable with me. Are you in your +right mind?" + +He said he was. + +"Are these other people in their right minds?" + +He said they were. + +"And this isn't an asylum? I mean, it isn't a place where they +cure crazy people?" + +He said it wasn't. + +"Well, then," I said, "either I am a lunatic, or something just +as awful has happened. Now tell me, honest and true, where am I?" + +"IN KING ARTHUR'S COURT." + +I waited a minute, to let that idea shudder its way home, +and then said: + +"And according to your notions, what year is it now?" + +"528--nineteenth of June." + +I felt a mournful sinking at the heart, and muttered: "I shall +never see my friends again--never, never again. They will not +be born for more than thirteen hundred years yet." + +I seemed to believe the boy, I didn't know why. _Something_ in me +seemed to believe him--my consciousness, as you may say; but my +reason didn't. My reason straightway began to clamor; that was +natural. I didn't know how to go about satisfying it, because +I knew that the testimony of men wouldn't serve--my reason would +say they were lunatics, and throw out their evidence. But all +of a sudden I stumbled on the very thing, just by luck. I knew +that the only total eclipse of the sun in the first half of the +sixth century occurred on the 21st of June, A.D. 528, O.S., and +began at 3 minutes after 12 noon. I also knew that no total eclipse +of the sun was due in what to _me_ was the present year--i.e., 1879. +So, if I could keep my anxiety and curiosity from eating the heart +out of me for forty-eight hours, I should then find out for certain +whether this boy was telling me the truth or not. + +Wherefore, being a practical Connecticut man, I now shoved this +whole problem clear out of my mind till its appointed day and hour +should come, in order that I might turn all my attention to the +circumstances of the present moment, and be alert and ready to +make the most out of them that could be made. One thing at a time, +is my motto--and just play that thing for all it is worth, even +if it's only two pair and a jack. I made up my mind to two things: +if it was still the nineteenth century and I was among lunatics +and couldn't get away, I would presently boss that asylum or know +the reason why; and if, on the other hand, it was really the sixth +century, all right, I didn't want any softer thing: I would boss +the whole country inside of three months; for I judged I would +have the start of the best-educated man in the kingdom by a matter +of thirteen hundred years and upward. I'm not a man to waste +time after my mind's made up and there's work on hand; so I said +to the page: + +"Now, Clarence, my boy--if that might happen to be your name +--I'll get you to post me up a little if you don't mind. What is +the name of that apparition that brought me here?" + +"My master and thine? That is the good knight and great lord +Sir Kay the Seneschal, foster brother to our liege the king." + +"Very good; go on, tell me everything." + +He made a long story of it; but the part that had immediate interest +for me was this: He said I was Sir Kay's prisoner, and that +in the due course of custom I would be flung into a dungeon and +left there on scant commons until my friends ransomed me--unless +I chanced to rot, first. I saw that the last chance had the best +show, but I didn't waste any bother about that; time was too +precious. The page said, further, that dinner was about ended +in the great hall by this time, and that as soon as the sociability +and the heavy drinking should begin, Sir Kay would have me in and +exhibit me before King Arthur and his illustrious knights seated at +the Table Round, and would brag about his exploit in capturing +me, and would probably exaggerate the facts a little, but it +wouldn't be good form for me to correct him, and not over safe, +either; and when I was done being exhibited, then ho for the +dungeon; but he, Clarence, would find a way to come and see me every +now and then, and cheer me up, and help me get word to my friends. + +Get word to my friends! I thanked him; I couldn't do less; and +about this time a lackey came to say I was wanted; so Clarence +led me in and took me off to one side and sat down by me. + +Well, it was a curious kind of spectacle, and interesting. It was +an immense place, and rather naked--yes, and full of loud contrasts. +It was very, very lofty; so lofty that the banners depending from +the arched beams and girders away up there floated in a sort of +twilight; there was a stone-railed gallery at each end, high up, +with musicians in the one, and women, clothed in stunning colors, +in the other. The floor was of big stone flags laid in black and +white squares, rather battered by age and use, and needing repair. +As to ornament, there wasn't any, strictly speaking; though on +the walls hung some huge tapestries which were probably taxed +as works of art; battle-pieces, they were, with horses shaped like +those which children cut out of paper or create in gingerbread; +with men on them in scale armor whose scales are represented by +round holes--so that the man's coat looks as if it had been done +with a biscuit-punch. There was a fireplace big enough to camp in; +and its projecting sides and hood, of carved and pillared stonework, +had the look of a cathedral door. Along the walls stood men-at-arms, +in breastplate and morion, with halberds for their only weapon +--rigid as statues; and that is what they looked like. + +In the middle of this groined and vaulted public square was an oaken +table which they called the Table Round. It was as large as +a circus ring; and around it sat a great company of men dressed +in such various and splendid colors that it hurt one's eyes to look +at them. They wore their plumed hats, right along, except that +whenever one addressed himself directly to the king, he lifted +his hat a trifle just as he was beginning his remark. + +Mainly they were drinking--from entire ox horns; but a few were +still munching bread or gnawing beef bones. There was about +an average of two dogs to one man; and these sat in expectant +attitudes till a spent bone was flung to them, and then they went +for it by brigades and divisions, with a rush, and there ensued +a fight which filled the prospect with a tumultuous chaos of +plunging heads and bodies and flashing tails, and the storm of +howlings and barkings deafened all speech for the time; but that +was no matter, for the dog-fight was always a bigger interest +anyway; the men rose, sometimes, to observe it the better and bet +on it, and the ladies and the musicians stretched themselves out +over their balusters with the same object; and all broke into +delighted ejaculations from time to time. In the end, the winning +dog stretched himself out comfortably with his bone between his +paws, and proceeded to growl over it, and gnaw it, and grease +the floor with it, just as fifty others were already doing; and the +rest of the court resumed their previous industries and entertainments. + +As a rule, the speech and behavior of these people were gracious +and courtly; and I noticed that they were good and serious listeners +when anybody was telling anything--I mean in a dog-fightless +interval. And plainly, too, they were a childlike and innocent lot; +telling lies of the stateliest pattern with a most gentle and +winning naivety, and ready and willing to listen to anybody else's +lie, and believe it, too. It was hard to associate them with +anything cruel or dreadful; and yet they dealt in tales of blood +and suffering with a guileless relish that made me almost forget +to shudder. + +I was not the only prisoner present. There were twenty or more. +Poor devils, many of them were maimed, hacked, carved, in a frightful +way; and their hair, their faces, their clothing, were caked with +black and stiffened drenchings of blood. They were suffering +sharp physical pain, of course; and weariness, and hunger and +thirst, no doubt; and at least none had given them the comfort +of a wash, or even the poor charity of a lotion for their wounds; +yet you never heard them utter a moan or a groan, or saw them show +any sign of restlessness, or any disposition to complain. The +thought was forced upon me: "The rascals--_they_ have served other +people so in their day; it being their own turn, now, they were +not expecting any better treatment than this; so their philosophical +bearing is not an outcome of mental training, intellectual fortitude, +reasoning; it is mere animal training; they are white Indians." + + + +CHAPTER III + +KNIGHTS OF THE TABLE ROUND + +Mainly the Round Table talk was monologues--narrative accounts +of the adventures in which these prisoners were captured and their +friends and backers killed and stripped of their steeds and armor. +As a general thing--as far as I could make out--these murderous +adventures were not forays undertaken to avenge injuries, nor to +settle old disputes or sudden fallings out; no, as a rule they were +simply duels between strangers--duels between people who had never +even been introduced to each other, and between whom existed no +cause of offense whatever. Many a time I had seen a couple of boys, +strangers, meet by chance, and say simultaneously, "I can lick you," +and go at it on the spot; but I had always imagined until now that +that sort of thing belonged to children only, and was a sign and +mark of childhood; but here were these big boobies sticking to it +and taking pride in it clear up into full age and beyond. Yet there +was something very engaging about these great simple-hearted +creatures, something attractive and lovable. There did not seem +to be brains enough in the entire nursery, so to speak, to bait +a fish-hook with; but you didn't seem to mind that, after a little, +because you soon saw that brains were not needed in a society +like that, and indeed would have marred it, hindered it, spoiled +its symmetry--perhaps rendered its existence impossible. + +There was a fine manliness observable in almost every face; and +in some a certain loftiness and sweetness that rebuked your +belittling criticisms and stilled them. A most noble benignity +and purity reposed in the countenance of him they called Sir Galahad, +and likewise in the king's also; and there was majesty and greatness +in the giant frame and high bearing of Sir Launcelot of the Lake. + +There was presently an incident which centered the general interest +upon this Sir Launcelot. At a sign from a sort of master of +ceremonies, six or eight of the prisoners rose and came forward +in a body and knelt on the floor and lifted up their hands toward +the ladies' gallery and begged the grace of a word with the queen. +The most conspicuously situated lady in that massed flower-bed +of feminine show and finery inclined her head by way of assent, +and then the spokesman of the prisoners delivered himself and his +fellows into her hands for free pardon, ransom, captivity, or death, +as she in her good pleasure might elect; and this, as he said, he +was doing by command of Sir Kay the Seneschal, whose prisoners +they were, he having vanquished them by his single might and +prowess in sturdy conflict in the field. + +Surprise and astonishment flashed from face to face all over +the house; the queen's gratified smile faded out at the name of +Sir Kay, and she looked disappointed; and the page whispered in +my ear with an accent and manner expressive of extravagant derision-- + +"Sir _Kay_, forsooth! Oh, call me pet names, dearest, call me +a marine! In twice a thousand years shall the unholy invention +of man labor at odds to beget the fellow to this majestic lie!" + +Every eye was fastened with severe inquiry upon Sir Kay. But he +was equal to the occasion. He got up and played his hand like +a major--and took every trick. He said he would state the case +exactly according to the facts; he would tell the simple +straightforward tale, without comment of his own; "and then," +said he, "if ye find glory and honor due, ye will give it unto him +who is the mightiest man of his hands that ever bare shield or +strake with sword in the ranks of Christian battle--even him that +sitteth there!" and he pointed to Sir Launcelot. Ah, he fetched +them; it was a rattling good stroke. Then he went on and told +how Sir Launcelot, seeking adventures, some brief time gone by, +killed seven giants at one sweep of his sword, and set a hundred +and forty-two captive maidens free; and then went further, still +seeking adventures, and found him (Sir Kay) fighting a desperate +fight against nine foreign knights, and straightway took the battle +solely into his own hands, and conquered the nine; and that night +Sir Launcelot rose quietly, and dressed him in Sir Kay's armor and +took Sir Kay's horse and gat him away into distant lands, and +vanquished sixteen knights in one pitched battle and thirty-four +in another; and all these and the former nine he made to swear +that about Whitsuntide they would ride to Arthur's court and yield +them to Queen Guenever's hands as captives of Sir Kay the Seneschal, +spoil of his knightly prowess; and now here were these half dozen, +and the rest would be along as soon as they might be healed of +their desperate wounds. + +Well, it was touching to see the queen blush and smile, and look +embarrassed and happy, and fling furtive glances at Sir Launcelot +that would have got him shot in Arkansas, to a dead certainty. + +Everybody praised the valor and magnanimity of Sir Launcelot; and +as for me, I was perfectly amazed, that one man, all by himself, +should have been able to beat down and capture such battalions +of practiced fighters. I said as much to Clarence; but this mocking +featherhead only said: + +"An Sir Kay had had time to get another skin of sour wine into him, +ye had seen the accompt doubled." + +I looked at the boy in sorrow; and as I looked I saw the cloud of +a deep despondency settle upon his countenance. I followed the +direction of his eye, and saw that a very old and white-bearded +man, clothed in a flowing black gown, had risen and was standing +at the table upon unsteady legs, and feebly swaying his ancient +head and surveying the company with his watery and wandering eye. +The same suffering look that was in the page's face was observable +in all the faces around--the look of dumb creatures who know that +they must endure and make no moan. + +"Marry, we shall have it again," sighed the boy; "that same old +weary tale that he hath told a thousand times in the same words, +and that he _will_ tell till he dieth, every time he hath gotten his +barrel full and feeleth his exaggeration-mill a-working. Would +God I had died or I saw this day!" + +"Who is it?" + +"Merlin, the mighty liar and magician, perdition singe him for +the weariness he worketh with his one tale! But that men fear +him for that he hath the storms and the lightnings and all the +devils that be in hell at his beck and call, they would have dug +his entrails out these many years ago to get at that tale and +squelch it. He telleth it always in the third person, making +believe he is too modest to glorify himself--maledictions light +upon him, misfortune be his dole! Good friend, prithee call me +for evensong." + +The boy nestled himself upon my shoulder and pretended to go +to sleep. The old man began his tale; and presently the lad was +asleep in reality; so also were the dogs, and the court, the lackeys, +and the files of men-at-arms. The droning voice droned on; a soft +snoring arose on all sides and supported it like a deep and subdued +accompaniment of wind instruments. Some heads were bowed upon +folded arms, some lay back with open mouths that issued unconscious +music; the flies buzzed and bit, unmolested, the rats swarmed +softly out from a hundred holes, and pattered about, and made +themselves at home everywhere; and one of them sat up like a +squirrel on the king's head and held a bit of cheese in its hands +and nibbled it, and dribbled the crumbs in the king's face with +naive and impudent irreverence. It was a tranquil scene, and +restful to the weary eye and the jaded spirit. + +This was the old man's tale. He said: + +"Right so the king and Merlin departed, and went until an hermit +that was a good man and a great leech. So the hermit searched +all his wounds and gave him good salves; so the king was there +three days, and then were his wounds well amended that he might +ride and go, and so departed. And as they rode, Arthur said, +I have no sword. No force,* [*Footnote from M.T.: No matter.] +said Merlin, hereby is a sword that shall be yours and I may. +So they rode till they came to a lake, the which was a fair water +and broad, and in the midst of the lake Arthur was ware of an arm +clothed in white samite, that held a fair sword in that hand. +Lo, said Merlin, yonder is that sword that I spake of. With that +they saw a damsel going upon the lake. What damsel is that? +said Arthur. That is the Lady of the lake, said Merlin; and within +that lake is a rock, and therein is as fair a place as any on earth, +and richly beseen, and this damsel will come to you anon, and then +speak ye fair to her that she will give you that sword. Anon +withal came the damsel unto Arthur and saluted him, and he her +again. Damsel, said Arthur, what sword is that, that yonder +the arm holdeth above the water? I would it were mine, for I have +no sword. Sir Arthur King, said the damsel, that sword is mine, +and if ye will give me a gift when I ask it you, ye shall have it. +By my faith, said Arthur, I will give you what gift ye will ask. +Well, said the damsel, go ye into yonder barge and row yourself +to the sword, and take it and the scabbard with you, and I will ask +my gift when I see my time. So Sir Arthur and Merlin alight, and +tied their horses to two trees, and so they went into the ship, +and when they came to the sword that the hand held, Sir Arthur +took it up by the handles, and took it with him. And the arm +and the hand went under the water; and so they came unto the land +and rode forth. And then Sir Arthur saw a rich pavilion. What +signifieth yonder pavilion? It is the knight's pavilion, said +Merlin, that ye fought with last, Sir Pellinore, but he is out, +he is not there; he hath ado with a knight of yours, that hight +Egglame, and they have fought together, but at the last Egglame +fled, and else he had been dead, and he hath chased him even +to Carlion, and we shall meet with him anon in the highway. That +is well said, said Arthur, now have I a sword, now will I wage +battle with him, and be avenged on him. Sir, ye shall not so, +said Merlin, for the knight is weary of fighting and chasing, so +that ye shall have no worship to have ado with him; also, he will +not lightly be matched of one knight living; and therefore it is my +counsel, let him pass, for he shall do you good service in short +time, and his sons, after his days. Also ye shall see that day +in short space ye shall be right glad to give him your sister +to wed. When I see him, I will do as ye advise me, said Arthur. +Then Sir Arthur looked on the sword, and liked it passing well. +Whether liketh you better, said Merlin, the sword or the scabbard? +Me liketh better the sword, said Arthur. Ye are more unwise, +said Merlin, for the scabbard is worth ten of the sword, for while +ye have the scabbard upon you ye shall never lose no blood, be ye +never so sore wounded; therefore, keep well the scabbard always +with you. So they rode into Carlion, and by the way they met with +Sir Pellinore; but Merlin had done such a craft that Pellinore saw +not Arthur, and he passed by without any words. I marvel, said +Arthur, that the knight would not speak. Sir, said Merlin, he saw +you not; for and he had seen you ye had not lightly departed. So +they came unto Carlion, whereof his knights were passing glad. +And when they heard of his adventures they marveled that he would +jeopard his person so alone. But all men of worship said it was +merry to be under such a chieftain that would put his person in +adventure as other poor knights did." + + + +CHAPTER IV + +SIR DINADAN THE HUMORIST + +It seemed to me that this quaint lie was most simply and beautifully +told; but then I had heard it only once, and that makes a difference; +it was pleasant to the others when it was fresh, no doubt. + +Sir Dinadan the Humorist was the first to awake, and he soon roused +the rest with a practical joke of a sufficiently poor quality. +He tied some metal mugs to a dog's tail and turned him loose, +and he tore around and around the place in a frenzy of fright, +with all the other dogs bellowing after him and battering and +crashing against everything that came in their way and making +altogether a chaos of confusion and a most deafening din and +turmoil; at which every man and woman of the multitude laughed +till the tears flowed, and some fell out of their chairs and +wallowed on the floor in ecstasy. It was just like so many children. +Sir Dinadan was so proud of his exploit that he could not keep +from telling over and over again, to weariness, how the immortal +idea happened to occur to him; and as is the way with humorists +of his breed, he was still laughing at it after everybody else had +got through. He was so set up that he concluded to make a speech +--of course a humorous speech. I think I never heard so many old +played-out jokes strung together in my life. He was worse than +the minstrels, worse than the clown in the circus. It seemed +peculiarly sad to sit here, thirteen hundred years before I was +born, and listen again to poor, flat, worm-eaten jokes that had +given me the dry gripes when I was a boy thirteen hundred years +afterwards. It about convinced me that there isn't any such thing +as a new joke possible. Everybody laughed at these antiquities +--but then they always do; I had noticed that, centuries later. +However, of course the scoffer didn't laugh--I mean the boy. No, +he scoffed; there wasn't anything he wouldn't scoff at. He said +the most of Sir Dinadan's jokes were rotten and the rest were +petrified. I said "petrified" was good; as I believed, myself, +that the only right way to classify the majestic ages of some of +those jokes was by geologic periods. But that neat idea hit +the boy in a blank place, for geology hadn't been invented yet. +However, I made a note of the remark, and calculated to educate +the commonwealth up to it if I pulled through. It is no use +to throw a good thing away merely because the market isn't ripe yet. + +Now Sir Kay arose and began to fire up on his history-mill with me +for fuel. It was time for me to feel serious, and I did. Sir Kay +told how he had encountered me in a far land of barbarians, who +all wore the same ridiculous garb that I did--a garb that was a work +of enchantment, and intended to make the wearer secure from hurt +by human hands. However he had nullified the force of the +enchantment by prayer, and had killed my thirteen knights in +a three hours' battle, and taken me prisoner, sparing my life +in order that so strange a curiosity as I was might be exhibited +to the wonder and admiration of the king and the court. He spoke +of me all the time, in the blandest way, as "this prodigious giant," +and "this horrible sky-towering monster," and "this tusked and +taloned man-devouring ogre", and everybody took in all this bosh +in the naivest way, and never smiled or seemed to notice that +there was any discrepancy between these watered statistics and me. +He said that in trying to escape from him I sprang into the top of +a tree two hundred cubits high at a single bound, but he dislodged +me with a stone the size of a cow, which "all-to brast" the most +of my bones, and then swore me to appear at Arthur's court for +sentence. He ended by condemning me to die at noon on the 21st; +and was so little concerned about it that he stopped to yawn before +he named the date. + +I was in a dismal state by this time; indeed, I was hardly enough +in my right mind to keep the run of a dispute that sprung up as +to how I had better be killed, the possibility of the killing being +doubted by some, because of the enchantment in my clothes. And yet +it was nothing but an ordinary suit of fifteen-dollar slop-shops. +Still, I was sane enough to notice this detail, to wit: many of +the terms used in the most matter-of-fact way by this great +assemblage of the first ladies and gentlemen in the land would +have made a Comanche blush. Indelicacy is too mild a term to convey +the idea. However, I had read "Tom Jones," and "Roderick Random," +and other books of that kind, and knew that the highest and first +ladies and gentlemen in England had remained little or no cleaner +in their talk, and in the morals and conduct which such talk +implies, clear up to a hundred years ago; in fact clear into our +own nineteenth century--in which century, broadly speaking, +the earliest samples of the real lady and real gentleman discoverable +in English history--or in European history, for that matter--may be +said to have made their appearance. Suppose Sir Walter, instead +of putting the conversations into the mouths of his characters, +had allowed the characters to speak for themselves? We should +have had talk from Rebecca and Ivanhoe and the soft lady Rowena +which would embarrass a tramp in our day. However, to the +unconsciously indelicate all things are delicate. King Arthur's +people were not aware that they were indecent and I had presence +of mind enough not to mention it. + +They were so troubled about my enchanted clothes that they were +mightily relieved, at last, when old Merlin swept the difficulty +away for them with a common-sense hint. He asked them why they +were so dull--why didn't it occur to them to strip me. In half a +minute I was as naked as a pair of tongs! And dear, dear, to think +of it: I was the only embarrassed person there. Everybody discussed +me; and did it as unconcernedly as if I had been a cabbage. +Queen Guenever was as naively interested as the rest, and said +she had never seen anybody with legs just like mine before. It was +the only compliment I got--if it was a compliment. + +Finally I was carried off in one direction, and my perilous clothes +in another. I was shoved into a dark and narrow cell in a dungeon, +with some scant remnants for dinner, some moldy straw for a bed, +and no end of rats for company. + + + +CHAPTER V + +AN INSPIRATION + +I was so tired that even my fears were not able to keep me awake long. + +When I next came to myself, I seemed to have been asleep a very +long time. My first thought was, "Well, what an astonishing dream +I've had! I reckon I've waked only just in time to keep from +being hanged or drowned or burned or something.... I'll nap again +till the whistle blows, and then I'll go down to the arms factory +and have it out with Hercules." + +But just then I heard the harsh music of rusty chains and bolts, +a light flashed in my eyes, and that butterfly, Clarence, stood +before me! I gasped with surprise; my breath almost got away from me. + +"What!" I said, "you here yet? Go along with the rest of +the dream! scatter!" + +But he only laughed, in his light-hearted way, and fell to making +fun of my sorry plight. + +"All right," I said resignedly, "let the dream go on; I'm in no hurry." + +"Prithee what dream?" + +"What dream? Why, the dream that I am in Arthur's court--a person +who never existed; and that I am talking to you, who are nothing +but a work of the imagination." + +"Oh, la, indeed! and is it a dream that you're to be burned +to-morrow? Ho-ho--answer me that!" + +The shock that went through me was distressing. I now began +to reason that my situation was in the last degree serious, dream +or no dream; for I knew by past experience of the lifelike intensity +of dreams, that to be burned to death, even in a dream, would be +very far from being a jest, and was a thing to be avoided, by any +means, fair or foul, that I could contrive. So I said beseechingly: + +"Ah, Clarence, good boy, only friend I've got,--for you _are_ my +friend, aren't you?--don't fail me; help me to devise some way +of escaping from this place!" + +"Now do but hear thyself! Escape? Why, man, the corridors are +in guard and keep of men-at-arms." + +"No doubt, no doubt. But how many, Clarence? Not many, I hope?" + +"Full a score. One may not hope to escape." After a pause +--hesitatingly: "and there be other reasons--and weightier." + +"Other ones? What are they?" + +"Well, they say--oh, but I daren't, indeed daren't!" + +"Why, poor lad, what is the matter? Why do you blench? Why do +you tremble so?" + +"Oh, in sooth, there is need! I do want to tell you, but--" + +"Come, come, be brave, be a man--speak out, there's a good lad!" + +He hesitated, pulled one way by desire, the other way by fear; +then he stole to the door and peeped out, listening; and finally +crept close to me and put his mouth to my ear and told me his +fearful news in a whisper, and with all the cowering apprehension +of one who was venturing upon awful ground and speaking of things +whose very mention might be freighted with death. + +"Merlin, in his malice, has woven a spell about this dungeon, and +there bides not the man in these kingdoms that would be desperate +enough to essay to cross its lines with you! Now God pity me, +I have told it! Ah, be kind to me, be merciful to a poor boy who +means thee well; for an thou betray me I am lost!" + +I laughed the only really refreshing laugh I had had for some time; +and shouted: + +"Merlin has wrought a spell! _Merlin_, forsooth! That cheap old +humbug, that maundering old ass? Bosh, pure bosh, the silliest bosh +in the world! Why, it does seem to me that of all the childish, +idiotic, chuckle-headed, chicken-livered superstitions that ev +--oh, damn Merlin!" + +But Clarence had slumped to his knees before I had half finished, +and he was like to go out of his mind with fright. + +"Oh, beware! These are awful words! Any moment these walls +may crumble upon us if you say such things. Oh call them back +before it is too late!" + +Now this strange exhibition gave me a good idea and set me to +thinking. If everybody about here was so honestly and sincerely +afraid of Merlin's pretended magic as Clarence was, certainly +a superior man like me ought to be shrewd enough to contrive +some way to take advantage of such a state of things. I went +on thinking, and worked out a plan. Then I said: + +"Get up. Pull yourself together; look me in the eye. Do you +know why I laughed?" + +"No--but for our blessed Lady's sake, do it no more." + +"Well, I'll tell you why I laughed. Because I'm a magician myself." + +"Thou!" The boy recoiled a step, and caught his breath, for +the thing hit him rather sudden; but the aspect which he took +on was very, very respectful. I took quick note of that; it +indicated that a humbug didn't need to have a reputation in this +asylum; people stood ready to take him at his word, without that. +I resumed. + +"I've known Merlin seven hundred years, and he--" + +"Seven hun--" + +"Don't interrupt me. He has died and come alive again thirteen +times, and traveled under a new name every time: Smith, Jones, +Robinson, Jackson, Peters, Haskins, Merlin--a new alias every +time he turns up. I knew him in Egypt three hundred years ago; +I knew him in India five hundred years ago--he is always blethering +around in my way, everywhere I go; he makes me tired. He don't +amount to shucks, as a magician; knows some of the old common +tricks, but has never got beyond the rudiments, and never will. +He is well enough for the provinces--one-night stands and that +sort of thing, you know--but dear me, _he_ oughtn't to set up for +an expert--anyway not where there's a real artist. Now look here, +Clarence, I am going to stand your friend, right along, and in +return you must be mine. I want you to do me a favor. I want +you to get word to the king that I am a magician myself--and the +Supreme Grand High-yu-Muck-amuck and head of the tribe, at that; +and I want him to be made to understand that I am just quietly +arranging a little calamity here that will make the fur fly in these +realms if Sir Kay's project is carried out and any harm comes +to me. Will you get that to the king for me?" + +The poor boy was in such a state that he could hardly answer me. +It was pitiful to see a creature so terrified, so unnerved, so +demoralized. But he promised everything; and on my side he made +me promise over and over again that I would remain his friend, and +never turn against him or cast any enchantments upon him. Then +he worked his way out, staying himself with his hand along the +wall, like a sick person. + +Presently this thought occurred to me: how heedless I have been! +When the boy gets calm, he will wonder why a great magician like me +should have begged a boy like him to help me get out of this place; +he will put this and that together, and will see that I am a humbug. + +I worried over that heedless blunder for an hour, and called myself +a great many hard names, meantime. But finally it occurred to me +all of a sudden that these animals didn't reason; that _they_ never +put this and that together; that all their talk showed that they +didn't know a discrepancy when they saw it. I was at rest, then. + +But as soon as one is at rest, in this world, off he goes on +something else to worry about. It occurred to me that I had made +another blunder: I had sent the boy off to alarm his betters with +a threat--I intending to invent a calamity at my leisure; now +the people who are the readiest and eagerest and willingest to +swallow miracles are the very ones who are hungriest to see you +perform them; suppose I should be called on for a sample? Suppose +I should be asked to name my calamity? Yes, I had made a blunder; +I ought to have invented my calamity first. "What shall I do? +what can I say, to gain a little time?" I was in trouble again; +in the deepest kind of trouble... + +"There's a footstep!--they're coming. If I had only just a moment +to think.... Good, I've got it. I'm all right." + +You see, it was the eclipse. It came into my mind in the nick +of time, how Columbus, or Cortez, or one of those people, played +an eclipse as a saving trump once, on some savages, and I saw my +chance. I could play it myself, now, and it wouldn't be any +plagiarism, either, because I should get it in nearly a thousand +years ahead of those parties. + +Clarence came in, subdued, distressed, and said: + +"I hasted the message to our liege the king, and straightway he +had me to his presence. He was frighted even to the marrow, +and was minded to give order for your instant enlargement, and +that you be clothed in fine raiment and lodged as befitted one so +great; but then came Merlin and spoiled all; for he persuaded +the king that you are mad, and know not whereof you speak; and +said your threat is but foolishness and idle vaporing. They +disputed long, but in the end, Merlin, scoffing, said, 'Wherefore +hath he not _named_ his brave calamity? Verily it is because he +cannot.' This thrust did in a most sudden sort close the king's +mouth, and he could offer naught to turn the argument; and so, +reluctant, and full loth to do you the discourtesy, he yet prayeth +you to consider his perplexed case, as noting how the matter stands, +and name the calamity--if so be you have determined the nature +of it and the time of its coming. Oh, prithee delay not; to delay +at such a time were to double and treble the perils that already +compass thee about. Oh, be thou wise--name the calamity!" + +I allowed silence to accumulate while I got my impressiveness +together, and then said: + +"How long have I been shut up in this hole?" + +"Ye were shut up when yesterday was well spent. It is 9 of +the morning now." + +"No! Then I have slept well, sure enough. Nine in the morning +now! And yet it is the very complexion of midnight, to a shade. +This is the 20th, then?" + +"The 20th--yes." + +"And I am to be burned alive to-morrow." The boy shuddered. + +"At what hour?" + +"At high noon." + +"Now then, I will tell you what to say." I paused, and stood over +that cowering lad a whole minute in awful silence; then, in a voice +deep, measured, charged with doom, I began, and rose by dramatically +graded stages to my colossal climax, which I delivered in as sublime +and noble a way as ever I did such a thing in my life: "Go back +and tell the king that at that hour I will smother the whole world +in the dead blackness of midnight; I will blot out the sun, and he +shall never shine again; the fruits of the earth shall rot for lack +of light and warmth, and the peoples of the earth shall famish +and die, to the last man!" + +I had to carry the boy out myself, he sunk into such a collapse. +I handed him over to the soldiers, and went back. + + + +CHAPTER VI + +THE ECLIPSE + +In the stillness and the darkness, realization soon began to +supplement knowledge. The mere knowledge of a fact is pale; but +when you come to _realize_ your fact, it takes on color. It is +all the difference between hearing of a man being stabbed to +the heart, and seeing it done. In the stillness and the darkness, +the knowledge that I was in deadly danger took to itself deeper +and deeper meaning all the time; a something which was realization +crept inch by inch through my veins and turned me cold. + +But it is a blessed provision of nature that at times like these, +as soon as a man's mercury has got down to a certain point there +comes a revulsion, and he rallies. Hope springs up, and cheerfulness +along with it, and then he is in good shape to do something for +himself, if anything can be done. When my rally came, it came with +a bound. I said to myself that my eclipse would be sure to save me, +and make me the greatest man in the kingdom besides; and straightway +my mercury went up to the top of the tube, and my solicitudes +all vanished. I was as happy a man as there was in the world. +I was even impatient for to-morrow to come, I so wanted to gather +in that great triumph and be the center of all the nation's wonder +and reverence. Besides, in a business way it would be the making +of me; I knew that. + +Meantime there was one thing which had got pushed into the background +of my mind. That was the half-conviction that when the nature +of my proposed calamity should be reported to those superstitious +people, it would have such an effect that they would want to +compromise. So, by and by when I heard footsteps coming, that +thought was recalled to me, and I said to myself, "As sure as +anything, it's the compromise. Well, if it is good, all right, +I will accept; but if it isn't, I mean to stand my ground and play +my hand for all it is worth." + +The door opened, and some men-at-arms appeared. The leader said: + +"The stake is ready. Come!" + +The stake! The strength went out of me, and I almost fell down. +It is hard to get one's breath at such a time, such lumps come into +one's throat, and such gaspings; but as soon as I could speak, I said: + +"But this is a mistake--the execution is to-morrow." + +"Order changed; been set forward a day. Haste thee!" + +I was lost. There was no help for me. I was dazed, stupefied; +I had no command over myself, I only wandered purposely about, +like one out of his mind; so the soldiers took hold of me, and +pulled me along with them, out of the cell and along the maze of +underground corridors, and finally into the fierce glare of daylight +and the upper world. As we stepped into the vast enclosed court +of the castle I got a shock; for the first thing I saw was the stake, +standing in the center, and near it the piled fagots and a monk. +On all four sides of the court the seated multitudes rose rank +above rank, forming sloping terraces that were rich with color. +The king and the queen sat in their thrones, the most conspicuous +figures there, of course. + +To note all this, occupied but a second. The next second Clarence +had slipped from some place of concealment and was pouring news +into my ear, his eyes beaming with triumph and gladness. He said: + +"Tis through _me_ the change was wrought! And main hard have I worked +to do it, too. But when I revealed to them the calamity in store, +and saw how mighty was the terror it did engender, then saw I also +that this was the time to strike! Wherefore I diligently pretended, +unto this and that and the other one, that your power against the sun +could not reach its full until the morrow; and so if any would save +the sun and the world, you must be slain to-day, while your +enchantments are but in the weaving and lack potency. Odsbodikins, +it was but a dull lie, a most indifferent invention, but you should +have seen them seize it and swallow it, in the frenzy of their +fright, as it were salvation sent from heaven; and all the while +was I laughing in my sleeve the one moment, to see them so cheaply +deceived, and glorifying God the next, that He was content to let +the meanest of His creatures be His instrument to the saving of +thy life. Ah how happy has the matter sped! You will not need +to do the sun a _real_ hurt--ah, forget not that, on your soul forget +it not! Only make a little darkness--only the littlest little +darkness, mind, and cease with that. It will be sufficient. They +will see that I spoke falsely,--being ignorant, as they will fancy +--and with the falling of the first shadow of that darkness you +shall see them go mad with fear; and they will set you free and +make you great! Go to thy triumph, now! But remember--ah, good +friend, I implore thee remember my supplication, and do the blessed +sun no hurt. For _my_ sake, thy true friend." + +I choked out some words through my grief and misery; as much as +to say I would spare the sun; for which the lad's eyes paid me back +with such deep and loving gratitude that I had not the heart +to tell him his good-hearted foolishness had ruined me and sent me +to my death. + +As the soldiers assisted me across the court the stillness was +so profound that if I had been blindfold I should have supposed +I was in a solitude instead of walled in by four thousand people. +There was not a movement perceptible in those masses of humanity; +they were as rigid as stone images, and as pale; and dread sat +upon every countenance. This hush continued while I was being +chained to the stake; it still continued while the fagots were +carefully and tediously piled about my ankles, my knees, my thighs, +my body. Then there was a pause, and a deeper hush, if possible, +and a man knelt down at my feet with a blazing torch; the multitude +strained forward, gazing, and parting slightly from their seats +without knowing it; the monk raised his hands above my head, and +his eyes toward the blue sky, and began some words in Latin; in +this attitude he droned on and on, a little while, and then stopped. +I waited two or three moments; then looked up; he was standing +there petrified. With a common impulse the multitude rose slowly +up and stared into the sky. I followed their eyes, as sure as guns, +there was my eclipse beginning! The life went boiling through +my veins; I was a new man! The rim of black spread slowly into +the sun's disk, my heart beat higher and higher, and still the +assemblage and the priest stared into the sky, motionless. I knew +that this gaze would be turned upon me, next. When it was, I was +ready. I was in one of the most grand attitudes I ever struck, +with my arm stretched up pointing to the sun. It was a noble +effect. You could _see_ the shudder sweep the mass like a wave. +Two shouts rang out, one close upon the heels of the other: + +"Apply the torch!" + +"I forbid it!" + +The one was from Merlin, the other from the king. Merlin started +from his place--to apply the torch himself, I judged. I said: + +"Stay where you are. If any man moves--even the king--before +I give him leave, I will blast him with thunder, I will consume +him with lightnings!" + +The multitude sank meekly into their seats, and I was just expecting +they would. Merlin hesitated a moment or two, and I was on pins +and needles during that little while. Then he sat down, and I took +a good breath; for I knew I was master of the situation now. +The king said: + +"Be merciful, fair sir, and essay no further in this perilous matter, +lest disaster follow. It was reported to us that your powers could +not attain unto their full strength until the morrow; but--" + +"Your Majesty thinks the report may have been a lie? It _was_ a lie." + +That made an immense effect; up went appealing hands everywhere, +and the king was assailed with a storm of supplications that +I might be bought off at any price, and the calamity stayed. +The king was eager to comply. He said: + +"Name any terms, reverend sir, even to the halving of my kingdom; +but banish this calamity, spare the sun!" + +My fortune was made. I would have taken him up in a minute, but +I couldn't stop an eclipse; the thing was out of the question. So +I asked time to consider. The king said: + +"How long--ah, how long, good sir? Be merciful; look, it groweth +darker, moment by moment. Prithee how long?" + +"Not long. Half an hour--maybe an hour." + +There were a thousand pathetic protests, but I couldn't shorten up +any, for I couldn't remember how long a total eclipse lasts. I was +in a puzzled condition, anyway, and wanted to think. Something +was wrong about that eclipse, and the fact was very unsettling. +If this wasn't the one I was after, how was I to tell whether this +was the sixth century, or nothing but a dream? Dear me, if I could +only prove it was the latter! Here was a glad new hope. If the boy +was right about the date, and this was surely the 20th, it _wasn't_ +the sixth century. I reached for the monk's sleeve, in considerable +excitement, and asked him what day of the month it was. + +Hang him, he said it was the _twenty-first_! It made me turn cold +to hear him. I begged him not to make any mistake about it; but +he was sure; he knew it was the 21st. So, that feather-headed +boy had botched things again! The time of the day was right +for the eclipse; I had seen that for myself, in the beginning, +by the dial that was near by. Yes, I was in King Arthur's court, +and I might as well make the most out of it I could. + +The darkness was steadily growing, the people becoming more and +more distressed. I now said: + +"I have reflected, Sir King. For a lesson, I will let this darkness +proceed, and spread night in the world; but whether I blot out +the sun for good, or restore it, shall rest with you. These are +the terms, to wit: You shall remain king over all your dominions, +and receive all the glories and honors that belong to the kingship; +but you shall appoint me your perpetual minister and executive, +and give me for my services one per cent of such actual increase +of revenue over and above its present amount as I may succeed +in creating for the state. If I can't live on that, I sha'n't ask +anybody to give me a lift. Is it satisfactory?" + +There was a prodigious roar of applause, and out of the midst +of it the king's voice rose, saying: + +"Away with his bonds, and set him free! and do him homage, high +and low, rich and poor, for he is become the king's right hand, +is clothed with power and authority, and his seat is upon the highest +step of the throne! Now sweep away this creeping night, and bring +the light and cheer again, that all the world may bless thee." + +But I said: + +"That a common man should be shamed before the world, is nothing; +but it were dishonor to the _king_ if any that saw his minister naked +should not also see him delivered from his shame. If I might ask +that my clothes be brought again--" + +"They are not meet," the king broke in. "Fetch raiment of another +sort; clothe him like a prince!" + +My idea worked. I wanted to keep things as they were till the +eclipse was total, otherwise they would be trying again to get +me to dismiss the darkness, and of course I couldn't do it. Sending +for the clothes gained some delay, but not enough. So I had to make +another excuse. I said it would be but natural if the king should +change his mind and repent to some extent of what he had done +under excitement; therefore I would let the darkness grow a while, +and if at the end of a reasonable time the king had kept his mind +the same, the darkness should be dismissed. Neither the king nor +anybody else was satisfied with that arrangement, but I had +to stick to my point. + +It grew darker and darker and blacker and blacker, while I struggled +with those awkward sixth-century clothes. It got to be pitch dark, +at last, and the multitude groaned with horror to feel the cold +uncanny night breezes fan through the place and see the stars +come out and twinkle in the sky. At last the eclipse was total, +and I was very glad of it, but everybody else was in misery; which +was quite natural. I said: + +"The king, by his silence, still stands to the terms." Then +I lifted up my hands--stood just so a moment--then I said, with +the most awful solemnity: "Let the enchantment dissolve and +pass harmless away!" + +There was no response, for a moment, in that deep darkness and +that graveyard hush. But when the silver rim of the sun pushed +itself out, a moment or two later, the assemblage broke loose with +a vast shout and came pouring down like a deluge to smother me +with blessings and gratitude; and Clarence was not the last of +the wash, to be sure. + + + +CHAPTER VII + +MERLIN'S TOWER + +Inasmuch as I was now the second personage in the Kingdom, as far +as political power and authority were concerned, much was made +of me. My raiment was of silks and velvets and cloth of gold, +and by consequence was very showy, also uncomfortable. But habit +would soon reconcile me to my clothes; I was aware of that. I was +given the choicest suite of apartments in the castle, after +the king's. They were aglow with loud-colored silken hangings, +but the stone floors had nothing but rushes on them for a carpet, +and they were misfit rushes at that, being not all of one breed. +As for conveniences, properly speaking, there weren't any. I mean +_little_ conveniences; it is the little conveniences that make +the real comfort of life. The big oaken chairs, graced with rude +carvings, were well enough, but that was the stopping place. +There was no soap, no matches, no looking-glass--except a metal +one, about as powerful as a pail of water. And not a chromo. +I had been used to chromos for years, and I saw now that without +my suspecting it a passion for art had got worked into the fabric +of my being, and was become a part of me. It made me homesick +to look around over this proud and gaudy but heartless barrenness +and remember that in our house in East Hartford, all unpretending +as it was, you couldn't go into a room but you would find an +insurance-chromo, or at least a three-color God-Bless-Our-Home +over the door; and in the parlor we had nine. But here, even in +my grand room of state, there wasn't anything in the nature of +a picture except a thing the size of a bedquilt, which was either +woven or knitted (it had darned places in it), and nothing in it +was the right color or the right shape; and as for proportions, +even Raphael himself couldn't have botched them more formidably, +after all his practice on those nightmares they call his "celebrated +Hampton Court cartoons." Raphael was a bird. We had several +of his chromos; one was his "Miraculous Draught of Fishes," where +he puts in a miracle of his own--puts three men into a canoe which +wouldn't have held a dog without upsetting. I always admired +to study R.'s art, it was so fresh and unconventional. + +There wasn't even a bell or a speaking-tube in the castle. I had +a great many servants, and those that were on duty lolled in the +anteroom; and when I wanted one of them I had to go and call for him. +There was no gas, there were no candles; a bronze dish half full +of boarding-house butter with a blazing rag floating in it was +the thing that produced what was regarded as light. A lot of +these hung along the walls and modified the dark, just toned it +down enough to make it dismal. If you went out at night, your +servants carried torches. There were no books, pens, paper or +ink, and no glass in the openings they believed to be windows. +It is a little thing--glass is--until it is absent, then it becomes +a big thing. But perhaps the worst of all was, that there wasn't +any sugar, coffee, tea, or tobacco. I saw that I was just another +Robinson Crusoe cast away on an uninhabited island, with no society +but some more or less tame animals, and if I wanted to make life +bearable I must do as he did--invent, contrive, create, reorganize +things; set brain and hand to work, and keep them busy. Well, +that was in my line. + +One thing troubled me along at first--the immense interest which +people took in me. Apparently the whole nation wanted a look +at me. It soon transpired that the eclipse had scared the British +world almost to death; that while it lasted the whole country, +from one end to the other, was in a pitiable state of panic, and +the churches, hermitages, and monkeries overflowed with praying +and weeping poor creatures who thought the end of the world was +come. Then had followed the news that the producer of this awful +event was a stranger, a mighty magician at Arthur's court; that he +could have blown out the sun like a candle, and was just going +to do it when his mercy was purchased, and he then dissolved +his enchantments, and was now recognized and honored as the man +who had by his unaided might saved the globe from destruction and +its peoples from extinction. Now if you consider that everybody +believed that, and not only believed it, but never even dreamed +of doubting it, you will easily understand that there was not +a person in all Britain that would not have walked fifty miles +to get a sight of me. Of course I was all the talk--all other +subjects were dropped; even the king became suddenly a person of +minor interest and notoriety. Within twenty-four hours the +delegations began to arrive, and from that time onward for a fortnight +they kept coming. The village was crowded, and all the countryside. +I had to go out a dozen times a day and show myself to these +reverent and awe-stricken multitudes. It came to be a great burden, +as to time and trouble, but of course it was at the same time +compensatingly agreeable to be so celebrated and such a center +of homage. It turned Brer Merlin green with envy and spite, which +was a great satisfaction to me. But there was one thing I couldn't +understand--nobody had asked for an autograph. I spoke to Clarence +about it. By George! I had to explain to him what it was. Then +he said nobody in the country could read or write but a few dozen +priests. Land! think of that. + +There was another thing that troubled me a little. Those multitudes +presently began to agitate for another miracle. That was natural. +To be able to carry back to their far homes the boast that they +had seen the man who could command the sun, riding in the heavens, +and be obeyed, would make them great in the eyes of their neighbors, +and envied by them all; but to be able to also say they had seen +him work a miracle themselves--why, people would come a distance +to see _them_. The pressure got to be pretty strong. There was +going to be an eclipse of the moon, and I knew the date and hour, +but it was too far away. Two years. I would have given a good +deal for license to hurry it up and use it now when there was +a big market for it. It seemed a great pity to have it wasted so, +and come lagging along at a time when a body wouldn't have any +use for it, as like as not. If it had been booked for only a month +away, I could have sold it short; but, as matters stood, I couldn't +seem to cipher out any way to make it do me any good, so I gave up +trying. Next, Clarence found that old Merlin was making himself +busy on the sly among those people. He was spreading a report that +I was a humbug, and that the reason I didn't accommodate the people +with a miracle was because I couldn't. I saw that I must do +something. I presently thought out a plan. + +By my authority as executive I threw Merlin into prison--the same +cell I had occupied myself. Then I gave public notice by herald +and trumpet that I should be busy with affairs of state for +a fortnight, but about the end of that time I would take a moment's +leisure and blow up Merlin's stone tower by fires from heaven; +in the meantime, whoso listened to evil reports about me, let him +beware. Furthermore, I would perform but this one miracle at +this time, and no more; if it failed to satisfy and any murmured, +I would turn the murmurers into horses, and make them useful. +Quiet ensued. + +I took Clarence into my confidence, to a certain degree, and we +went to work privately. I told him that this was a sort of miracle +that required a trifle of preparation, and that it would be sudden +death to ever talk about these preparations to anybody. That made +his mouth safe enough. Clandestinely we made a few bushels of +first-rate blasting powder, and I superintended my armorers while +they constructed a lightning-rod and some wires. This old stone +tower was very massive--and rather ruinous, too, for it was Roman, +and four hundred years old. Yes, and handsome, after a rude +fashion, and clothed with ivy from base to summit, as with a shirt +of scale mail. It stood on a lonely eminence, in good view from +the castle, and about half a mile away. + +Working by night, we stowed the powder in the tower--dug stones +out, on the inside, and buried the powder in the walls themselves, +which were fifteen feet thick at the base. We put in a peck +at a time, in a dozen places. We could have blown up the Tower +of London with these charges. When the thirteenth night was come +we put up our lightning-rod, bedded it in one of the batches of +powder, and ran wires from it to the other batches. Everybody +had shunned that locality from the day of my proclamation, but +on the morning of the fourteenth I thought best to warn the people, +through the heralds, to keep clear away--a quarter of a mile away. +Then added, by command, that at some time during the twenty-four +hours I would consummate the miracle, but would first give a brief +notice; by flags on the castle towers if in the daytime, by +torch-baskets in the same places if at night. + +Thunder-showers had been tolerably frequent of late, and I was +not much afraid of a failure; still, I shouldn't have cared for +a delay of a day or two; I should have explained that I was busy +with affairs of state yet, and the people must wait. + +Of course, we had a blazing sunny day--almost the first one without +a cloud for three weeks; things always happen so. I kept secluded, +and watched the weather. Clarence dropped in from time to time +and said the public excitement was growing and growing all the +time, and the whole country filling up with human masses as far +as one could see from the battlements. At last the wind sprang up +and a cloud appeared--in the right quarter, too, and just at +nightfall. For a little while I watched that distant cloud spread +and blacken, then I judged it was time for me to appear. I ordered +the torch-baskets to be lit, and Merlin liberated and sent to me. +A quarter of an hour later I ascended the parapet and there found +the king and the court assembled and gazing off in the darkness +toward Merlin's Tower. Already the darkness was so heavy that +one could not see far; these people and the old turrets, being +partly in deep shadow and partly in the red glow from the great +torch-baskets overhead, made a good deal of a picture. + +Merlin arrived in a gloomy mood. I said: + +"You wanted to burn me alive when I had not done you any harm, +and latterly you have been trying to injure my professional +reputation. Therefore I am going to call down fire and blow up +your tower, but it is only fair to give you a chance; now if you +think you can break my enchantments and ward off the fires, step +to the bat, it's your innings." + +"I can, fair sir, and I will. Doubt it not." + +He drew an imaginary circle on the stones of the roof, and burnt +a pinch of powder in it, which sent up a small cloud of aromatic +smoke, whereat everybody fell back and began to cross themselves +and get uncomfortable. Then he began to mutter and make passes +in the air with his hands. He worked himself up slowly and +gradually into a sort of frenzy, and got to thrashing around with +his arms like the sails of a windmill. By this time the storm had +about reached us; the gusts of wind were flaring the torches and +making the shadows swash about, the first heavy drops of rain +were falling, the world abroad was black as pitch, the lightning +began to wink fitfully. Of course, my rod would be loading itself +now. In fact, things were imminent. So I said: + +"You have had time enough. I have given you every advantage, +and not interfered. It is plain your magic is weak. It is only +fair that I begin now." + +I made about three passes in the air, and then there was an awful +crash and that old tower leaped into the sky in chunks, along +with a vast volcanic fountain of fire that turned night to noonday, +and showed a thousand acres of human beings groveling on the ground +in a general collapse of consternation. Well, it rained mortar and +masonry the rest of the week. This was the report; but probably +the facts would have modified it. + +It was an effective miracle. The great bothersome temporary +population vanished. There were a good many thousand tracks +in the mud the next morning, but they were all outward bound. +If I had advertised another miracle I couldn't have raised an +audience with a sheriff. + +Merlin's stock was flat. The king wanted to stop his wages; he +even wanted to banish him, but I interfered. I said he would be +useful to work the weather, and attend to small matters like that, +and I would give him a lift now and then when his poor little +parlor-magic soured on him. There wasn't a rag of his tower left, +but I had the government rebuild it for him, and advised him +to take boarders; but he was too high-toned for that. And as for +being grateful, he never even said thank you. He was a rather +hard lot, take him how you might; but then you couldn't fairly +expect a man to be sweet that had been set back so. + + + +CHAPTER VIII + +THE BOSS + +To be vested with enormous authority is a fine thing; but to have +the on-looking world consent to it is a finer. The tower episode +solidified my power, and made it impregnable. If any were perchance +disposed to be jealous and critical before that, they experienced +a change of heart, now. There was not any one in the kingdom +who would have considered it good judgment to meddle with my matters. + +I was fast getting adjusted to my situation and circumstances. +For a time, I used to wake up, mornings, and smile at my "dream," +and listen for the Colt's factory whistle; but that sort of thing +played itself out, gradually, and at last I was fully able to realize +that I was actually living in the sixth century, and in Arthur's +court, not a lunatic asylum. After that, I was just as much +at home in that century as I could have been in any other; and +as for preference, I wouldn't have traded it for the twentieth. +Look at the opportunities here for a man of knowledge, brains, +pluck, and enterprise to sail in and grow up with the country. +The grandest field that ever was; and all my own; not a competitor; +not a man who wasn't a baby to me in acquirements and capacities; +whereas, what would I amount to in the twentieth century? I should +be foreman of a factory, that is about all; and could drag a seine +down street any day and catch a hundred better men than myself. + +What a jump I had made! I couldn't keep from thinking about it, +and contemplating it, just as one does who has struck oil. There +was nothing back of me that could approach it, unless it might be +Joseph's case; and Joseph's only approached it, it didn't equal +it, quite. For it stands to reason that as Joseph's splendid +financial ingenuities advantaged nobody but the king, the general +public must have regarded him with a good deal of disfavor, whereas +I had done my entire public a kindness in sparing the sun, and was +popular by reason of it. + +I was no shadow of a king; I was the substance; the king himself +was the shadow. My power was colossal; and it was not a mere +name, as such things have generally been, it was the genuine +article. I stood here, at the very spring and source of the second +great period of the world's history; and could see the trickling +stream of that history gather and deepen and broaden, and roll +its mighty tides down the far centuries; and I could note the +upspringing of adventurers like myself in the shelter of its long +array of thrones: De Montforts, Gavestons, Mortimers, Villierses; +the war-making, campaign-directing wantons of France, and Charles +the Second's scepter-wielding drabs; but nowhere in the procession +was my full-sized fellow visible. I was a Unique; and glad to know +that that fact could not be dislodged or challenged for thirteen +centuries and a half, for sure. Yes, in power I was equal to +the king. At the same time there was another power that was +a trifle stronger than both of us put together. That was the Church. +I do not wish to disguise that fact. I couldn't, if I wanted to. +But never mind about that, now; it will show up, in its proper +place, later on. It didn't cause me any trouble in the beginning +--at least any of consequence. + +Well, it was a curious country, and full of interest. And the +people! They were the quaintest and simplest and trustingest race; +why, they were nothing but rabbits. It was pitiful for a person +born in a wholesome free atmosphere to listen to their humble +and hearty outpourings of loyalty toward their king and Church +and nobility; as if they had any more occasion to love and honor +king and Church and noble than a slave has to love and honor +the lash, or a dog has to love and honor the stranger that kicks him! +Why, dear me, _any_ kind of royalty, howsoever modified, _any_ kind +of aristocracy, howsoever pruned, is rightly an insult; but if you +are born and brought up under that sort of arrangement you probably +never find it out for yourself, and don't believe it when somebody +else tells you. It is enough to make a body ashamed of his race +to think of the sort of froth that has always occupied its thrones +without shadow of right or reason, and the seventh-rate people +that have always figured as its aristocracies--a company of monarchs +and nobles who, as a rule, would have achieved only poverty and +obscurity if left, like their betters, to their own exertions. + +The most of King Arthur's British nation were slaves, pure and +simple, and bore that name, and wore the iron collar on their +necks; and the rest were slaves in fact, but without the name; +they imagined themselves men and freemen, and called themselves +so. The truth was, the nation as a body was in the world for one +object, and one only: to grovel before king and Church and noble; +to slave for them, sweat blood for them, starve that they might +be fed, work that they might play, drink misery to the dregs that +they might be happy, go naked that they might wear silks and +jewels, pay taxes that they might be spared from paying them, +be familiar all their lives with the degrading language and postures +of adulation that they might walk in pride and think themselves +the gods of this world. And for all this, the thanks they got were +cuffs and contempt; and so poor-spirited were they that they took +even this sort of attention as an honor. + +Inherited ideas are a curious thing, and interesting to observe +and examine. I had mine, the king and his people had theirs. +In both cases they flowed in ruts worn deep by time and habit, +and the man who should have proposed to divert them by reason +and argument would have had a long contract on his hands. For +instance, those people had inherited the idea that all men without +title and a long pedigree, whether they had great natural gifts +and acquirements or hadn't, were creatures of no more consideration +than so many animals, bugs, insects; whereas I had inherited the idea +that human daws who can consent to masquerade in the peacock-shams +of inherited dignities and unearned titles, are of no good but +to be laughed at. The way I was looked upon was odd, but it was +natural. You know how the keeper and the public regard the elephant +in the menagerie: well, that is the idea. They are full of +admiration of his vast bulk and his prodigious strength; they +speak with pride of the fact that he can do a hundred marvels +which are far and away beyond their own powers; and they speak +with the same pride of the fact that in his wrath he is able +to drive a thousand men before him. But does that make him one +of _them_? No; the raggedest tramp in the pit would smile at +the idea. He couldn't comprehend it; couldn't take it in; couldn't +in any remote way conceive of it. Well, to the king, the nobles, +and all the nation, down to the very slaves and tramps, I was +just that kind of an elephant, and nothing more. I was admired, +also feared; but it was as an animal is admired and feared. +The animal is not reverenced, neither was I; I was not even +respected. I had no pedigree, no inherited title; so in the king's +and nobles' eyes I was mere dirt; the people regarded me with +wonder and awe, but there was no reverence mixed with it; through +the force of inherited ideas they were not able to conceive of +anything being entitled to that except pedigree and lordship. +There you see the hand of that awful power, the Roman Catholic +Church. In two or three little centuries it had converted a nation +of men to a nation of worms. Before the day of the Church's +supremacy in the world, men were men, and held their heads up, +and had a man's pride and spirit and independence; and what +of greatness and position a person got, he got mainly by achievement, +not by birth. But then the Church came to the front, with an axe +to grind; and she was wise, subtle, and knew more than one way +to skin a cat--or a nation; she invented "divine right of kings," +and propped it all around, brick by brick, with the Beatitudes +--wrenching them from their good purpose to make them fortify +an evil one; she preached (to the commoner) humility, obedience +to superiors, the beauty of self-sacrifice; she preached (to the +commoner) meekness under insult; preached (still to the commoner, +always to the commoner) patience, meanness of spirit, non-resistance +under oppression; and she introduced heritable ranks and +aristocracies, and taught all the Christian populations of the earth +to bow down to them and worship them. Even down to my birth-century +that poison was still in the blood of Christendom, and the best +of English commoners was still content to see his inferiors +impudently continuing to hold a number of positions, such as +lordships and the throne, to which the grotesque laws of his country +did not allow him to aspire; in fact, he was not merely contented +with this strange condition of things, he was even able to persuade +himself that he was proud of it. It seems to show that there isn't +anything you can't stand, if you are only born and bred to it. +Of course that taint, that reverence for rank and title, had been +in our American blood, too--I know that; but when I left America +it had disappeared--at least to all intents and purposes. The +remnant of it was restricted to the dudes and dudesses. When +a disease has worked its way down to that level, it may fairly +be said to be out of the system. + +But to return to my anomalous position in King Arthur's kingdom. +Here I was, a giant among pigmies, a man among children, a master +intelligence among intellectual moles: by all rational measurement +the one and only actually great man in that whole British world; +and yet there and then, just as in the remote England of my +birth-time, the sheep-witted earl who could claim long descent +from a king's leman, acquired at second-hand from the slums of +London, was a better man than I was. Such a personage was fawned +upon in Arthur's realm and reverently looked up to by everybody, +even though his dispositions were as mean as his intelligence, +and his morals as base as his lineage. There were times when +_he_ could sit down in the king's presence, but I couldn't. I could +have got a title easily enough, and that would have raised me +a large step in everybody's eyes; even in the king's, the giver +of it. But I didn't ask for it; and I declined it when it was +offered. I couldn't have enjoyed such a thing with my notions; +and it wouldn't have been fair, anyway, because as far back as +I could go, our tribe had always been short of the bar sinister. +I couldn't have felt really and satisfactorily fine and proud +and set-up over any title except one that should come from the nation +itself, the only legitimate source; and such an one I hoped to win; +and in the course of years of honest and honorable endeavor, I did +win it and did wear it with a high and clean pride. This title +fell casually from the lips of a blacksmith, one day, in a village, +was caught up as a happy thought and tossed from mouth to mouth +with a laugh and an affirmative vote; in ten days it had swept +the kingdom, and was become as familiar as the king's name. I was +never known by any other designation afterward, whether in the +nation's talk or in grave debate upon matters of state at the +council-board of the sovereign. This title, translated into modern +speech, would be THE BOSS. Elected by the nation. That suited me. +And it was a pretty high title. There were very few THE'S, and +I was one of them. If you spoke of the duke, or the earl, or +the bishop, how could anybody tell which one you meant? But if +you spoke of The King or The Queen or The Boss, it was different. + +Well, I liked the king, and as king I respected him--respected +the office; at least respected it as much as I was capable of +respecting any unearned supremacy; but as MEN I looked down upon +him and his nobles--privately. And he and they liked me, and +respected my office; but as an animal, without birth or sham title, +they looked down upon me--and were not particularly private about it, +either. I didn't charge for my opinion about them, and they didn't +charge for their opinion about me: the account was square, the +books balanced, everybody was satisfied. + + + +CHAPTER IX + +THE TOURNAMENT + +They were always having grand tournaments there at Camelot; and +very stirring and picturesque and ridiculous human bull-fights +they were, too, but just a little wearisome to the practical mind. +However, I was generally on hand--for two reasons: a man must +not hold himself aloof from the things which his friends and his +community have at heart if he would be liked--especially as +a statesman; and both as business man and statesman I wanted +to study the tournament and see if I couldn't invent an improvement +on it. That reminds me to remark, in passing, that the very first +official thing I did, in my administration--and it was on the very +first day of it, too--was to start a patent office; for I knew +that a country without a patent office and good patent laws was +just a crab, and couldn't travel any way but sideways or backways. + +Things ran along, a tournament nearly every week; and now and then +the boys used to want me to take a hand--I mean Sir Launcelot and +the rest--but I said I would by and by; no hurry yet, and too much +government machinery to oil up and set to rights and start a-going. + +We had one tournament which was continued from day to day during +more than a week, and as many as five hundred knights took part +in it, from first to last. They were weeks gathering. They came +on horseback from everywhere; from the very ends of the country, +and even from beyond the sea; and many brought ladies, and all +brought squires and troops of servants. It was a most gaudy and +gorgeous crowd, as to costumery, and very characteristic of the +country and the time, in the way of high animal spirits, innocent +indecencies of language, and happy-hearted indifference to morals. +It was fight or look on, all day and every day; and sing, gamble, +dance, carouse half the night every night. They had a most noble +good time. You never saw such people. Those banks of beautiful +ladies, shining in their barbaric splendors, would see a knight +sprawl from his horse in the lists with a lanceshaft the thickness +of your ankle clean through him and the blood spouting, and instead +of fainting they would clap their hands and crowd each other for a +better view; only sometimes one would dive into her handkerchief, +and look ostentatiously broken-hearted, and then you could lay +two to one that there was a scandal there somewhere and she was +afraid the public hadn't found it out. + +The noise at night would have been annoying to me ordinarily, but +I didn't mind it in the present circumstances, because it kept me +from hearing the quacks detaching legs and arms from the day's +cripples. They ruined an uncommon good old cross-cut saw for me, +and broke the saw-buck, too, but I let it pass. And as for my +axe--well, I made up my mind that the next time I lent an axe +to a surgeon I would pick my century. + +I not only watched this tournament from day to day, but detailed +an intelligent priest from my Department of Public Morals and +Agriculture, and ordered him to report it; for it was my purpose +by and by, when I should have gotten the people along far enough, +to start a newspaper. The first thing you want in a new country, +is a patent office; then work up your school system; and after that, +out with your paper. A newspaper has its faults, and plenty of them, +but no matter, it's hark from the tomb for a dead nation, and don't +you forget it. You can't resurrect a dead nation without it; there +isn't any way. So I wanted to sample things, and be finding out +what sort of reporter-material I might be able to rake together out +of the sixth century when I should come to need it. + +Well, the priest did very well, considering. He got in all +the details, and that is a good thing in a local item: you see, +he had kept books for the undertaker-department of his church +when he was younger, and there, you know, the money's in the details; +the more details, the more swag: bearers, mutes, candles, prayers +--everything counts; and if the bereaved don't buy prayers enough +you mark up your candles with a forked pencil, and your bill +shows up all right. And he had a good knack at getting in the +complimentary thing here and there about a knight that was likely +to advertise--no, I mean a knight that had influence; and he also +had a neat gift of exaggeration, for in his time he had kept door +for a pious hermit who lived in a sty and worked miracles. + +Of course this novice's report lacked whoop and crash and lurid +description, and therefore wanted the true ring; but its antique +wording was quaint and sweet and simple, and full of the fragrances +and flavors of the time, and these little merits made up in a measure +for its more important lacks. Here is an extract from it: + + Then Sir Brian de les Isles and Grummore Grummorsum, + knights of the castle, encountered with Sir Aglovale and + Sir Tor, and Sir Tor smote down Sir Grummore Grummorsum + to the earth. Then came Sir Carados of the dolorous + tower, and Sir Turquine, knights of the castle, and + there encountered with them Sir Percivale de Galis + and Sir Lamorak de Galis, that were two brethren, and + there encountered Sir Percivale with Sir Carados, and + either brake their spears unto their hands, and then + Sir Turquine with Sir Lamorak, and either of them smote + down other, horse and all, to the earth, and either + parties rescued other and horsed them again. And Sir + Arnold, and Sir Gauter, knights of the castle, + encountered with Sir Brandiles and Sir Kay, and these + four knights encountered mightily, and brake their + spears to their hands. Then came Sir Pertolope from + the castle, and there encountered with him Sir Lionel, + and there Sir Pertolope the green knight smote down Sir + Lionel, brother to Sir Launcelot. All this was marked + by noble heralds, who bare him best, and their names. + Then Sir Bleobaris brake his spear upon Sir Gareth, + but of that stroke Sir Bleobaris fell to the earth. + When Sir Galihodin saw that, he bad Sir Gareth keep him, + and Sir Gareth smote him to the earth. Then Sir Galihud + gat a spear to avenge his brother, and in the same wise + Sir Gareth served him, and Sir Dinadan and his brother + La Cote Male Taile, and Sir Sagramore le Disirous, and + Sir Dodinas le Savage; all these he bare down with one + spear. When King Aswisance of Ireland saw Sir Gareth + fare so he marvelled what he might be, that one time + seemed green, and another time, at his again coming, + he seemed blue. And thus at every course that he rode + to and fro he changed his color, so that there might + neither king nor knight have ready cognizance of him. + Then Sir Agwisance the King of Ireland encountered + with Sir Gareth, and there Sir Gareth smote him from + his horse, saddle and all. And then came King Carados + of Scotland, and Sir Gareth smote him down horse and + man. And in the same wise he served King Uriens of the + land of Gore. And then there came in Sir Bagdemagus, + and Sir Gareth smote him down horse and man to the + earth. And Bagdemagus's son Meliganus brake a spear + upon Sir Gareth mightily and knightly. And then Sir + Galahault the noble prince cried on high, Knight with + the many colors, well hast thou justed; now make thee + ready that I may just with thee. Sir Gareth heard him, + and he gat a great spear, and so they encountered + together, and there the prince brake his spear; but Sir + Gareth smote him upon the left side of the helm, that + he reeled here and there, and he had fallen down had not + his men recovered him. Truly, said King Arthur, that + knight with the many colors is a good knight. Wherefore + the king called unto him Sir Launcelot, and prayed him + to encounter with that knight. Sir, said Launcelot, I + may as well find in my heart for to forbear him at + this time, for he hath had travail enough this day, and + when a good knight doth so well upon some day, it is + no good knight's part to let him of his worship, and, + namely, when he seeth a knight hath done so great + labour; for peradventure, said Sir Launcelot, his + quarrel is here this day, and peradventure he is best + beloved with this lady of all that be here, for I see + well he paineth himself and enforceth him to do great + deeds, and therefore, said Sir Launcelot, as for me, + this day he shall have the honour; though it lay in my + power to put him from it, I would not. + +There was an unpleasant little episode that day, which for reasons +of state I struck out of my priest's report. You will have noticed +that Garry was doing some great fighting in the engagement. When +I say Garry I mean Sir Gareth. Garry was my private pet name +for him; it suggests that I had a deep affection for him, and that +was the case. But it was a private pet name only, and never spoken +aloud to any one, much less to him; being a noble, he would not +have endured a familiarity like that from me. Well, to proceed: +I sat in the private box set apart for me as the king's minister. +While Sir Dinadan was waiting for his turn to enter the lists, +he came in there and sat down and began to talk; for he was always +making up to me, because I was a stranger and he liked to have +a fresh market for his jokes, the most of them having reached that +stage of wear where the teller has to do the laughing himself while +the other person looks sick. I had always responded to his efforts +as well as I could, and felt a very deep and real kindness for him, +too, for the reason that if by malice of fate he knew the one +particular anecdote which I had heard oftenest and had most hated +and most loathed all my life, he had at least spared it me. It was +one which I had heard attributed to every humorous person who +had ever stood on American soil, from Columbus down to Artemus Ward. +It was about a humorous lecturer who flooded an ignorant audience +with the killingest jokes for an hour and never got a laugh; and +then when he was leaving, some gray simpletons wrung him gratefully +by the hand and said it had been the funniest thing they had ever +heard, and "it was all they could do to keep from laughin' right +out in meetin'." That anecdote never saw the day that it was +worth the telling; and yet I had sat under the telling of it +hundreds and thousands and millions and billions of times, and +cried and cursed all the way through. Then who can hope to know +what my feelings were, to hear this armor-plated ass start in on +it again, in the murky twilight of tradition, before the dawn of +history, while even Lactantius might be referred to as "the late +Lactantius," and the Crusades wouldn't be born for five hundred +years yet? Just as he finished, the call-boy came; so, haw-hawing +like a demon, he went rattling and clanking out like a crate of +loose castings, and I knew nothing more. It was some minutes +before I came to, and then I opened my eyes just in time to see +Sir Gareth fetch him an awful welt, and I unconsciously out with +the prayer, "I hope to gracious he's killed!" But by ill-luck, +before I had got half through with the words, Sir Gareth crashed +into Sir Sagramor le Desirous and sent him thundering over his +horse's crupper, and Sir Sagramor caught my remark and thought +I meant it for _him_. + +Well, whenever one of those people got a thing into his head, +there was no getting it out again. I knew that, so I saved my +breath, and offered no explanations. As soon as Sir Sagramor +got well, he notified me that there was a little account to settle +between us, and he named a day three or four years in the future; +place of settlement, the lists where the offense had been given. +I said I would be ready when he got back. You see, he was going +for the Holy Grail. The boys all took a flier at the Holy Grail +now and then. It was a several years' cruise. They always put in +the long absence snooping around, in the most conscientious way, +though none of them had any idea where the Holy Grail really was, +and I don't think any of them actually expected to find it, or +would have known what to do with it if he _had_ run across it. +You see, it was just the Northwest Passage of that day, as you may +say; that was all. Every year expeditions went out holy grailing, +and next year relief expeditions went out to hunt for _them_. There +was worlds of reputation in it, but no money. Why, they actually +wanted _me_ to put in! Well, I should smile. + + + +CHAPTER X + +BEGINNINGS OF CIVILIZATION + +The Round Table soon heard of the challenge, and of course it was +a good deal discussed, for such things interested the boys. +The king thought I ought now to set forth in quest of adventures, +so that I might gain renown and be the more worthy to meet +Sir Sagramor when the several years should have rolled away. +I excused myself for the present; I said it would take me three +or four years yet to get things well fixed up and going smoothly; +then I should be ready; all the chances were that at the end of +that time Sir Sagramor would still be out grailing, so no valuable +time would be lost by the postponement; I should then have been +in office six or seven years, and I believed my system and machinery +would be so well developed that I could take a holiday without +its working any harm. + +I was pretty well satisfied with what I had already accomplished. +In various quiet nooks and corners I had the beginnings of all +sorts of industries under way--nuclei of future vast factories, +the iron and steel missionaries of my future civilization. In these +were gathered together the brightest young minds I could find, +and I kept agents out raking the country for more, all the time. +I was training a crowd of ignorant folk into experts--experts +in every sort of handiwork and scientific calling. These nurseries +of mine went smoothly and privately along undisturbed in their +obscure country retreats, for nobody was allowed to come into their +precincts without a special permit--for I was afraid of the Church. + +I had started a teacher-factory and a lot of Sunday-schools the +first thing; as a result, I now had an admirable system of graded +schools in full blast in those places, and also a complete variety +of Protestant congregations all in a prosperous and growing +condition. Everybody could be any kind of a Christian he wanted +to; there was perfect freedom in that matter. But I confined public +religious teaching to the churches and the Sunday-schools, permitting +nothing of it in my other educational buildings. I could have +given my own sect the preference and made everybody a Presbyterian +without any trouble, but that would have been to affront a law +of human nature: spiritual wants and instincts are as various in +the human family as are physical appetites, complexions, and +features, and a man is only at his best, morally, when he is +equipped with the religious garment whose color and shape and +size most nicely accommodate themselves to the spiritual complexion, +angularities, and stature of the individual who wears it; and, +besides, I was afraid of a united Church; it makes a mighty power, +the mightiest conceivable, and then when it by and by gets into +selfish hands, as it is always bound to do, it means death to +human liberty and paralysis to human thought. + +All mines were royal property, and there were a good many of them. +They had formerly been worked as savages always work mines--holes +grubbed in the earth and the mineral brought up in sacks of hide by +hand, at the rate of a ton a day; but I had begun to put the mining +on a scientific basis as early as I could. + +Yes, I had made pretty handsome progress when Sir Sagramor's +challenge struck me. + +Four years rolled by--and then! Well, you would never imagine +it in the world. Unlimited power is the ideal thing when it is in +safe hands. The despotism of heaven is the one absolutely perfect +government. An earthly despotism would be the absolutely perfect +earthly government, if the conditions were the same, namely, the +despot the perfectest individual of the human race, and his lease +of life perpetual. But as a perishable perfect man must die, and +leave his despotism in the hands of an imperfect successor, an +earthly despotism is not merely a bad form of government, it is +the worst form that is possible. + +My works showed what a despot could do with the resources of +a kingdom at his command. Unsuspected by this dark land, I had +the civilization of the nineteenth century booming under its very +nose! It was fenced away from the public view, but there it was, +a gigantic and unassailable fact--and to be heard from, yet, if +I lived and had luck. There it was, as sure a fact and as substantial +a fact as any serene volcano, standing innocent with its smokeless +summit in the blue sky and giving no sign of the rising hell in its +bowels. My schools and churches were children four years before; +they were grown-up now; my shops of that day were vast factories +now; where I had a dozen trained men then, I had a thousand now; +where I had one brilliant expert then, I had fifty now. I stood +with my hand on the cock, so to speak, ready to turn it on and +flood the midnight world with light at any moment. But I was not +going to do the thing in that sudden way. It was not my policy. +The people could not have stood it; and, moreover, I should have +had the Established Roman Catholic Church on my back in a minute. + +No, I had been going cautiously all the while. I had had confidential +agents trickling through the country some time, whose office was +to undermine knighthood by imperceptible degrees, and to gnaw +a little at this and that and the other superstition, and so prepare +the way gradually for a better order of things. I was turning on +my light one-candle-power at a time, and meant to continue to do so. + +I had scattered some branch schools secretly about the kingdom, +and they were doing very well. I meant to work this racket more +and more, as time wore on, if nothing occurred to frighten me. +One of my deepest secrets was my West Point--my military academy. +I kept that most jealously out of sight; and I did the same with my +naval academy which I had established at a remote seaport. Both +were prospering to my satisfaction. + +Clarence was twenty-two now, and was my head executive, my right +hand. He was a darling; he was equal to anything; there wasn't +anything he couldn't turn his hand to. Of late I had been training +him for journalism, for the time seemed about right for a start +in the newspaper line; nothing big, but just a small weekly for +experimental circulation in my civilization-nurseries. He took +to it like a duck; there was an editor concealed in him, sure. +Already he had doubled himself in one way; he talked sixth century +and wrote nineteenth. His journalistic style was climbing, +steadily; it was already up to the back settlement Alabama mark, +and couldn't be told from the editorial output of that region +either by matter or flavor. + +We had another large departure on hand, too. This was a telegraph +and a telephone; our first venture in this line. These wires were +for private service only, as yet, and must be kept private until +a riper day should come. We had a gang of men on the road, working +mainly by night. They were stringing ground wires; we were afraid +to put up poles, for they would attract too much inquiry. Ground +wires were good enough, in both instances, for my wires were +protected by an insulation of my own invention which was perfect. +My men had orders to strike across country, avoiding roads, and +establishing connection with any considerable towns whose lights +betrayed their presence, and leaving experts in charge. Nobody +could tell you how to find any place in the kingdom, for nobody +ever went intentionally to any place, but only struck it by +accident in his wanderings, and then generally left it without +thinking to inquire what its name was. At one time and another +we had sent out topographical expeditions to survey and map the +kingdom, but the priests had always interfered and raised trouble. +So we had given the thing up, for the present; it would be poor +wisdom to antagonize the Church. + +As for the general condition of the country, it was as it had been +when I arrived in it, to all intents and purposes. I had made +changes, but they were necessarily slight, and they were not +noticeable. Thus far, I had not even meddled with taxation, +outside of the taxes which provided the royal revenues. I had +systematized those, and put the service on an effective and +righteous basis. As a result, these revenues were already quadrupled, +and yet the burden was so much more equably distributed than +before, that all the kingdom felt a sense of relief, and the praises +of my administration were hearty and general. + +Personally, I struck an interruption, now, but I did not mind it, +it could not have happened at a better time. Earlier it could +have annoyed me, but now everything was in good hands and swimming +right along. The king had reminded me several times, of late, that +the postponement I had asked for, four years before, had about +run out now. It was a hint that I ought to be starting out to seek +adventures and get up a reputation of a size to make me worthy +of the honor of breaking a lance with Sir Sagramor, who was still +out grailing, but was being hunted for by various relief expeditions, +and might be found any year, now. So you see I was expecting +this interruption; it did not take me by surprise. + + + +CHAPTER XI + +THE YANKEE IN SEARCH OF ADVENTURES + +There never was such a country for wandering liars; and they were +of both sexes. Hardly a month went by without one of these tramps +arriving; and generally loaded with a tale about some princess or +other wanting help to get her out of some far-away castle where +she was held in captivity by a lawless scoundrel, usually a giant. +Now you would think that the first thing the king would do after +listening to such a novelette from an entire stranger, would be +to ask for credentials--yes, and a pointer or two as to locality +of castle, best route to it, and so on. But nobody ever thought +of so simple and common-sense a thing at that. No, everybody +swallowed these people's lies whole, and never asked a question +of any sort or about anything. Well, one day when I was not +around, one of these people came along--it was a she one, this +time--and told a tale of the usual pattern. Her mistress was +a captive in a vast and gloomy castle, along with forty-four other +young and beautiful girls, pretty much all of them princesses; +they had been languishing in that cruel captivity for twenty-six +years; the masters of the castle were three stupendous brothers, +each with four arms and one eye--the eye in the center of the +forehead, and as big as a fruit. Sort of fruit not mentioned; +their usual slovenliness in statistics. + +Would you believe it? The king and the whole Round Table were +in raptures over this preposterous opportunity for adventure. +Every knight of the Table jumped for the chance, and begged for it; +but to their vexation and chagrin the king conferred it upon me, +who had not asked for it at all. + +By an effort, I contained my joy when Clarence brought me the news. +But he--he could not contain his. His mouth gushed delight and +gratitude in a steady discharge--delight in my good fortune, +gratitude to the king for this splendid mark of his favor for me. +He could keep neither his legs nor his body still, but pirouetted +about the place in an airy ecstasy of happiness. + +On my side, I could have cursed the kindness that conferred upon +me this benefaction, but I kept my vexation under the surface +for policy's sake, and did what I could to let on to be glad. +Indeed, I _said_ I was glad. And in a way it was true; I was as +glad as a person is when he is scalped. + +Well, one must make the best of things, and not waste time with +useless fretting, but get down to business and see what can be +done. In all lies there is wheat among the chaff; I must get at +the wheat in this case: so I sent for the girl and she came. She +was a comely enough creature, and soft and modest, but, if signs +went for anything, she didn't know as much as a lady's watch. I said: + +"My dear, have you been questioned as to particulars?" + +She said she hadn't. + +"Well, I didn't expect you had, but I thought I would ask, to make +sure; it's the way I've been raised. Now you mustn't take it +unkindly if I remind you that as we don't know you, we must go +a little slow. You may be all right, of course, and we'll hope +that you are; but to take it for granted isn't business. _You_ +understand that. I'm obliged to ask you a few questions; just +answer up fair and square, and don't be afraid. Where do you +live, when you are at home?" + +"In the land of Moder, fair sir." + +"Land of Moder. I don't remember hearing of it before. +Parents living?" + +"As to that, I know not if they be yet on live, sith it is many +years that I have lain shut up in the castle." + +"Your name, please?" + +"I hight the Demoiselle Alisande la Carteloise, an it please you." + +"Do you know anybody here who can identify you?" + +"That were not likely, fair lord, I being come hither now for +the first time." + +"Have you brought any letters--any documents--any proofs that +you are trustworthy and truthful?" + +"Of a surety, no; and wherefore should I? Have I not a tongue, +and cannot I say all that myself?" + +"But _your_ saying it, you know, and somebody else's saying it, +is different." + +"Different? How might that be? I fear me I do not understand." + +"Don't _understand_? Land of--why, you see--you see--why, great Scott, +can't you understand a little thing like that? Can't you understand +the difference between your--_why_ do you look so innocent and idiotic!" + +"I? In truth I know not, but an it were the will of God." + +"Yes, yes, I reckon that's about the size of it. Don't mind my +seeming excited; I'm not. Let us change the subject. Now as +to this castle, with forty-five princesses in it, and three ogres +at the head of it, tell me--where is this harem?" + +"Harem?" + +"The _castle_, you understand; where is the castle?" + +"Oh, as to that, it is great, and strong, and well beseen, and +lieth in a far country. Yes, it is many leagues." + +"_How_ many?" + +"Ah, fair sir, it were woundily hard to tell, they are so many, +and do so lap the one upon the other, and being made all in the +same image and tincted with the same color, one may not know +the one league from its fellow, nor how to count them except +they be taken apart, and ye wit well it were God's work to do +that, being not within man's capacity; for ye will note--" + +"Hold on, hold on, never mind about the distance; _whereabouts_ +does the castle lie? What's the direction from here?" + +"Ah, please you sir, it hath no direction from here; by reason +that the road lieth not straight, but turneth evermore; wherefore +the direction of its place abideth not, but is some time under +the one sky and anon under another, whereso if ye be minded that +it is in the east, and wend thitherward, ye shall observe that +the way of the road doth yet again turn upon itself by the space +of half a circle, and this marvel happing again and yet again and +still again, it will grieve you that you had thought by vanities +of the mind to thwart and bring to naught the will of Him that +giveth not a castle a direction from a place except it pleaseth +Him, and if it please Him not, will the rather that even all castles +and all directions thereunto vanish out of the earth, leaving the +places wherein they tarried desolate and vacant, so warning His +creatures that where He will He will, and where He will not He--" + +"Oh, that's all right, that's all right, give us a rest; never mind +about the direction, _hang_ the direction--I beg pardon, I beg +a thousand pardons, I am not well to-day; pay no attention when +I soliloquize, it is an old habit, an old, bad habit, and hard +to get rid of when one's digestion is all disordered with eating +food that was raised forever and ever before he was born; good +land! a man can't keep his functions regular on spring chickens +thirteen hundred years old. But come--never mind about that; +let's--have you got such a thing as a map of that region about +you? Now a good map--" + +"Is it peradventure that manner of thing which of late the unbelievers +have brought from over the great seas, which, being boiled in oil, +and an onion and salt added thereto, doth--" + +"What, a map? What are you talking about? Don't you know what +a map is? There, there, never mind, don't explain, I hate +explanations; they fog a thing up so that you can't tell anything +about it. Run along, dear; good-day; show her the way, Clarence." + +Oh, well, it was reasonably plain, now, why these donkeys didn't +prospect these liars for details. It may be that this girl had +a fact in her somewhere, but I don't believe you could have sluiced +it out with a hydraulic; nor got it with the earlier forms of +blasting, even; it was a case for dynamite. Why, she was a perfect +ass; and yet the king and his knights had listened to her as if +she had been a leaf out of the gospel. It kind of sizes up the +whole party. And think of the simple ways of this court: this +wandering wench hadn't any more trouble to get access to the king +in his palace than she would have had to get into the poorhouse +in my day and country. In fact, he was glad to see her, glad +to hear her tale; with that adventure of hers to offer, she was +as welcome as a corpse is to a coroner. + +Just as I was ending-up these reflections, Clarence came back. +I remarked upon the barren result of my efforts with the girl; +hadn't got hold of a single point that could help me to find +the castle. The youth looked a little surprised, or puzzled, +or something, and intimated that he had been wondering to himself +what I had wanted to ask the girl all those questions for. + +"Why, great guns," I said, "don't I want to find the castle? And +how else would I go about it?" + +"La, sweet your worship, one may lightly answer that, I ween. +She will go with thee. They always do. She will ride with thee." + +"Ride with me? Nonsense!" + +"But of a truth she will. She will ride with thee. Thou shalt see." + +"What? She browse around the hills and scour the woods with me +--alone--and I as good as engaged to be married? Why, it's scandalous. +Think how it would look." + +My, the dear face that rose before me! The boy was eager to know +all about this tender matter. I swore him to secrecy and then +whispered her name--"Puss Flanagan." He looked disappointed, +and said he didn't remember the countess. How natural it was for +the little courtier to give her a rank. He asked me where she lived. + +"In East Har--" I came to myself and stopped, a little confused; +then I said, "Never mind, now; I'll tell you some time." + +And might he see her? Would I let him see her some day? + +It was but a little thing to promise--thirteen hundred years +or so--and he so eager; so I said Yes. But I sighed; I couldn't +help it. And yet there was no sense in sighing, for she wasn't +born yet. But that is the way we are made: we don't reason, +where we feel; we just feel. + +My expedition was all the talk that day and that night, and the +boys were very good to me, and made much of me, and seemed to have +forgotten their vexation and disappointment, and come to be as +anxious for me to hive those ogres and set those ripe old virgins +loose as if it were themselves that had the contract. Well, they +_were_ good children--but just children, that is all. And they +gave me no end of points about how to scout for giants, and how +to scoop them in; and they told me all sorts of charms against +enchantments, and gave me salves and other rubbish to put on my +wounds. But it never occurred to one of them to reflect that if +I was such a wonderful necromancer as I was pretending to be, +I ought not to need salves or instructions, or charms against +enchantments, and, least of all, arms and armor, on a foray of any +kind--even against fire-spouting dragons, and devils hot from +perdition, let alone such poor adversaries as these I was after, +these commonplace ogres of the back settlements. + +I was to have an early breakfast, and start at dawn, for that was +the usual way; but I had the demon's own time with my armor, +and this delayed me a little. It is troublesome to get into, and +there is so much detail. First you wrap a layer or two of blanket +around your body, for a sort of cushion and to keep off the cold +iron; then you put on your sleeves and shirt of chain mail--these +are made of small steel links woven together, and they form a fabric +so flexible that if you toss your shirt onto the floor, it slumps +into a pile like a peck of wet fish-net; it is very heavy and +is nearly the uncomfortablest material in the world for a night +shirt, yet plenty used it for that--tax collectors, and reformers, +and one-horse kings with a defective title, and those sorts of +people; then you put on your shoes--flat-boats roofed over with +interleaving bands of steel--and screw your clumsy spurs into +the heels. Next you buckle your greaves on your legs, and your +cuisses on your thighs; then come your backplate and your breastplate, +and you begin to feel crowded; then you hitch onto the breastplate +the half-petticoat of broad overlapping bands of steel which hangs +down in front but is scolloped out behind so you can sit down, +and isn't any real improvement on an inverted coal scuttle, either +for looks or for wear, or to wipe your hands on; next you belt +on your sword; then you put your stove-pipe joints onto your arms, +your iron gauntlets onto your hands, your iron rat-trap onto your +head, with a rag of steel web hitched onto it to hang over the back +of your neck--and there you are, snug as a candle in a candle-mould. +This is no time to dance. Well, a man that is packed away like +that is a nut that isn't worth the cracking, there is so little of +the meat, when you get down to it, by comparison with the shell. + +The boys helped me, or I never could have got in. Just as we +finished, Sir Bedivere happened in, and I saw that as like as not +I hadn't chosen the most convenient outfit for a long trip. How +stately he looked; and tall and broad and grand. He had on his +head a conical steel casque that only came down to his ears, and +for visor had only a narrow steel bar that extended down to his +upper lip and protected his nose; and all the rest of him, from +neck to heel, was flexible chain mail, trousers and all. But +pretty much all of him was hidden under his outside garment, which +of course was of chain mail, as I said, and hung straight from his +shoulders to his ankles; and from his middle to the bottom, both +before and behind, was divided, so that he could ride and let the +skirts hang down on each side. He was going grailing, and it was +just the outfit for it, too. I would have given a good deal for +that ulster, but it was too late now to be fooling around. The sun +was just up, the king and the court were all on hand to see me off +and wish me luck; so it wouldn't be etiquette for me to tarry. +You don't get on your horse yourself; no, if you tried it you +would get disappointed. They carry you out, just as they carry +a sun-struck man to the drug store, and put you on, and help get +you to rights, and fix your feet in the stirrups; and all the while +you do feel so strange and stuffy and like somebody else--like +somebody that has been married on a sudden, or struck by lightning, +or something like that, and hasn't quite fetched around yet, and +is sort of numb, and can't just get his bearings. Then they +stood up the mast they called a spear, in its socket by my left +foot, and I gripped it with my hand; lastly they hung my shield +around my neck, and I was all complete and ready to up anchor +and get to sea. Everybody was as good to me as they could be, +and a maid of honor gave me the stirrup-cup her own self. There was +nothing more to do now, but for that damsel to get up behind me on +a pillion, which she did, and put an arm or so around me to hold on. + +And so we started, and everybody gave us a goodbye and waved their +handkerchiefs or helmets. And everybody we met, going down the hill +and through the village was respectful to us, except some shabby +little boys on the outskirts. They said: + +"Oh, what a guy!" And hove clods at us. + +In my experience boys are the same in all ages. They don't respect +anything, they don't care for anything or anybody. They say +"Go up, baldhead" to the prophet going his unoffending way in +the gray of antiquity; they sass me in the holy gloom of the +Middle Ages; and I had seen them act the same way in Buchanan's +administration; I remember, because I was there and helped. The +prophet had his bears and settled with his boys; and I wanted +to get down and settle with mine, but it wouldn't answer, because +I couldn't have got up again. I hate a country without a derrick. + + + +CHAPTER XII + +SLOW TORTURE + +Straight off, we were in the country. It was most lovely and +pleasant in those sylvan solitudes in the early cool morning +in the first freshness of autumn. From hilltops we saw fair +green valleys lying spread out below, with streams winding through +them, and island groves of trees here and there, and huge lonely +oaks scattered about and casting black blots of shade; and beyond +the valleys we saw the ranges of hills, blue with haze, stretching +away in billowy perspective to the horizon, with at wide intervals +a dim fleck of white or gray on a wave-summit, which we knew was +a castle. We crossed broad natural lawns sparkling with dew, +and we moved like spirits, the cushioned turf giving out no sound +of footfall; we dreamed along through glades in a mist of green +light that got its tint from the sun-drenched roof of leaves +overhead, and by our feet the clearest and coldest of runlets +went frisking and gossiping over its reefs and making a sort of +whispering music, comfortable to hear; and at times we left the +world behind and entered into the solemn great deeps and rich +gloom of the forest, where furtive wild things whisked and scurried +by and were gone before you could even get your eye on the place +where the noise was; and where only the earliest birds were turning +out and getting to business with a song here and a quarrel yonder +and a mysterious far-off hammering and drumming for worms on +a tree trunk away somewhere in the impenetrable remotenesses of +the woods. And by and by out we would swing again into the glare. + +About the third or fourth or fifth time that we swung out into +the glare--it was along there somewhere, a couple of hours or so +after sun-up--it wasn't as pleasant as it had been. It was +beginning to get hot. This was quite noticeable. We had a very +long pull, after that, without any shade. Now it is curious how +progressively little frets grow and multiply after they once get +a start. Things which I didn't mind at all, at first, I began +to mind now--and more and more, too, all the time. The first +ten or fifteen times I wanted my handkerchief I didn't seem to care; +I got along, and said never mind, it isn't any matter, and dropped +it out of my mind. But now it was different; I wanted it all +the time; it was nag, nag, nag, right along, and no rest; I couldn't +get it out of my mind; and so at last I lost my temper and said +hang a man that would make a suit of armor without any pockets +in it. You see I had my handkerchief in my helmet; and some other +things; but it was that kind of a helmet that you can't take off +by yourself. That hadn't occurred to me when I put it there; +and in fact I didn't know it. I supposed it would be particularly +convenient there. And so now, the thought of its being there, +so handy and close by, and yet not get-at-able, made it all the +worse and the harder to bear. Yes, the thing that you can't get +is the thing that you want, mainly; every one has noticed that. +Well, it took my mind off from everything else; took it clear off, +and centered it in my helmet; and mile after mile, there it stayed, +imagining the handkerchief, picturing the handkerchief; and it +was bitter and aggravating to have the salt sweat keep trickling +down into my eyes, and I couldn't get at it. It seems like a little +thing, on paper, but it was not a little thing at all; it was +the most real kind of misery. I would not say it if it was not so. +I made up my mind that I would carry along a reticule next time, +let it look how it might, and people say what they would. Of course +these iron dudes of the Round Table would think it was scandalous, +and maybe raise Sheol about it, but as for me, give me comfort +first, and style afterwards. So we jogged along, and now and then +we struck a stretch of dust, and it would tumble up in clouds and +get into my nose and make me sneeze and cry; and of course I said +things I oughtn't to have said, I don't deny that. I am not +better than others. + +We couldn't seem to meet anybody in this lonesome Britain, not +even an ogre; and, in the mood I was in then, it was well for +the ogre; that is, an ogre with a handkerchief. Most knights +would have thought of nothing but getting his armor; but so I got +his bandanna, he could keep his hardware, for all of me. + +Meantime, it was getting hotter and hotter in there. You see, +the sun was beating down and warming up the iron more and more +all the time. Well, when you are hot, that way, every little thing +irritates you. When I trotted, I rattled like a crate of dishes, +and that annoyed me; and moreover I couldn't seem to stand that +shield slatting and banging, now about my breast, now around my +back; and if I dropped into a walk my joints creaked and screeched +in that wearisome way that a wheelbarrow does, and as we didn't +create any breeze at that gait, I was like to get fried in that +stove; and besides, the quieter you went the heavier the iron +settled down on you and the more and more tons you seemed to weigh +every minute. And you had to be always changing hands, and passing +your spear over to the other foot, it got so irksome for one hand +to hold it long at a time. + +Well, you know, when you perspire that way, in rivers, there comes +a time when you--when you--well, when you itch. You are inside, +your hands are outside; so there you are; nothing but iron between. +It is not a light thing, let it sound as it may. First it is one +place; then another; then some more; and it goes on spreading and +spreading, and at last the territory is all occupied, and nobody +can imagine what you feel like, nor how unpleasant it is. And +when it had got to the worst, and it seemed to me that I could +not stand anything more, a fly got in through the bars and settled +on my nose, and the bars were stuck and wouldn't work, and I +couldn't get the visor up; and I could only shake my head, which +was baking hot by this time, and the fly--well, you know how a fly +acts when he has got a certainty--he only minded the shaking enough +to change from nose to lip, and lip to ear, and buzz and buzz +all around in there, and keep on lighting and biting, in a way +that a person, already so distressed as I was, simply could not +stand. So I gave in, and got Alisande to unship the helmet and +relieve me of it. Then she emptied the conveniences out of it +and fetched it full of water, and I drank and then stood up, and +she poured the rest down inside the armor. One cannot think how +refreshing it was. She continued to fetch and pour until I was +well soaked and thoroughly comfortable. + +It was good to have a rest--and peace. But nothing is quite +perfect in this life, at any time. I had made a pipe a while back, +and also some pretty fair tobacco; not the real thing, but what +some of the Indians use: the inside bark of the willow, dried. +These comforts had been in the helmet, and now I had them again, +but no matches. + +Gradually, as the time wore along, one annoying fact was borne in +upon my understanding--that we were weather-bound. An armed novice +cannot mount his horse without help and plenty of it. Sandy was +not enough; not enough for me, anyway. We had to wait until +somebody should come along. Waiting, in silence, would have been +agreeable enough, for I was full of matter for reflection, and +wanted to give it a chance to work. I wanted to try and think out +how it was that rational or even half-rational men could ever +have learned to wear armor, considering its inconveniences; and +how they had managed to keep up such a fashion for generations +when it was plain that what I had suffered to-day they had had +to suffer all the days of their lives. I wanted to think that out; +and moreover I wanted to think out some way to reform this evil +and persuade the people to let the foolish fashion die out; but +thinking was out of the question in the circumstances. You couldn't +think, where Sandy was. + +She was a quite biddable creature and good-hearted, but she had +a flow of talk that was as steady as a mill, and made your head +sore like the drays and wagons in a city. If she had had a cork +she would have been a comfort. But you can't cork that kind; +they would die. Her clack was going all day, and you would think +something would surely happen to her works, by and by; but no, +they never got out of order; and she never had to slack up for +words. She could grind, and pump, and churn, and buzz by the week, +and never stop to oil up or blow out. And yet the result was just +nothing but wind. She never had any ideas, any more than a fog +has. She was a perfect blatherskite; I mean for jaw, jaw, jaw, +talk, talk, talk, jabber, jabber, jabber; but just as good as she +could be. I hadn't minded her mill that morning, on account of +having that hornets' nest of other troubles; but more than once +in the afternoon I had to say: + +"Take a rest, child; the way you are using up all the domestic air, +the kingdom will have to go to importing it by to-morrow, and it's +a low enough treasury without that." + + + +CHAPTER XIII + +FREEMEN + +Yes, it is strange how little a while at a time a person can be +contented. Only a little while back, when I was riding and +suffering, what a heaven this peace, this rest, this sweet serenity +in this secluded shady nook by this purling stream would have +seemed, where I could keep perfectly comfortable all the time +by pouring a dipper of water into my armor now and then; yet +already I was getting dissatisfied; partly because I could not +light my pipe--for, although I had long ago started a match factory, +I had forgotten to bring matches with me--and partly because we +had nothing to eat. Here was another illustration of the childlike +improvidence of this age and people. A man in armor always trusted +to chance for his food on a journey, and would have been scandalized +at the idea of hanging a basket of sandwiches on his spear. There +was probably not a knight of all the Round Table combination who +would not rather have died than been caught carrying such a thing +as that on his flagstaff. And yet there could not be anything more +sensible. It had been my intention to smuggle a couple of sandwiches +into my helmet, but I was interrupted in the act, and had to make +an excuse and lay them aside, and a dog got them. + +Night approached, and with it a storm. The darkness came on fast. +We must camp, of course. I found a good shelter for the demoiselle +under a rock, and went off and found another for myself. But +I was obliged to remain in my armor, because I could not get it off +by myself and yet could not allow Alisande to help, because it +would have seemed so like undressing before folk. It would not +have amounted to that in reality, because I had clothes on +underneath; but the prejudices of one's breeding are not gotten +rid of just at a jump, and I knew that when it came to stripping +off that bob-tailed iron petticoat I should be embarrassed. + +With the storm came a change of weather; and the stronger the wind +blew, and the wilder the rain lashed around, the colder and colder +it got. Pretty soon, various kinds of bugs and ants and worms +and things began to flock in out of the wet and crawl down inside +my armor to get warm; and while some of them behaved well enough, +and snuggled up amongst my clothes and got quiet, the majority +were of a restless, uncomfortable sort, and never stayed still, +but went on prowling and hunting for they did not know what; +especially the ants, which went tickling along in wearisome +procession from one end of me to the other by the hour, and are +a kind of creatures which I never wish to sleep with again. +It would be my advice to persons situated in this way, to not roll +or thrash around, because this excites the interest of all the +different sorts of animals and makes every last one of them want +to turn out and see what is going on, and this makes things worse +than they were before, and of course makes you objurgate harder, +too, if you can. Still, if one did not roll and thrash around +he would die; so perhaps it is as well to do one way as the other; +there is no real choice. Even after I was frozen solid I could +still distinguish that tickling, just as a corpse does when he is +taking electric treatment. I said I would never wear armor +after this trip. + +All those trying hours whilst I was frozen and yet was in a living +fire, as you may say, on account of that swarm of crawlers, that +same unanswerable question kept circling and circling through my +tired head: How do people stand this miserable armor? How have +they managed to stand it all these generations? How can they sleep +at night for dreading the tortures of next day? + +When the morning came at last, I was in a bad enough plight: seedy, +drowsy, fagged, from want of sleep; weary from thrashing around, +famished from long fasting; pining for a bath, and to get rid of +the animals; and crippled with rheumatism. And how had it fared +with the nobly born, the titled aristocrat, the Demoiselle Alisande +la Carteloise? Why, she was as fresh as a squirrel; she had slept +like the dead; and as for a bath, probably neither she nor any +other noble in the land had ever had one, and so she was not +missing it. Measured by modern standards, they were merely modified +savages, those people. This noble lady showed no impatience to get +to breakfast--and that smacks of the savage, too. On their journeys +those Britons were used to long fasts, and knew how to bear them; +and also how to freight up against probable fasts before starting, +after the style of the Indian and the anaconda. As like as not, +Sandy was loaded for a three-day stretch. + +We were off before sunrise, Sandy riding and I limping along +behind. In half an hour we came upon a group of ragged poor +creatures who had assembled to mend the thing which was regarded +as a road. They were as humble as animals to me; and when I +proposed to breakfast with them, they were so flattered, so +overwhelmed by this extraordinary condescension of mine that +at first they were not able to believe that I was in earnest. +My lady put up her scornful lip and withdrew to one side; she said +in their hearing that she would as soon think of eating with the +other cattle--a remark which embarrassed these poor devils merely +because it referred to them, and not because it insulted or offended +them, for it didn't. And yet they were not slaves, not chattels. +By a sarcasm of law and phrase they were freemen. Seven-tenths +of the free population of the country were of just their class and +degree: small "independent" farmers, artisans, etc.; which is +to say, they were the nation, the actual Nation; they were about +all of it that was useful, or worth saving, or really respect-worthy, +and to subtract them would have been to subtract the Nation and +leave behind some dregs, some refuse, in the shape of a king, +nobility and gentry, idle, unproductive, acquainted mainly with +the arts of wasting and destroying, and of no sort of use or value +in any rationally constructed world. And yet, by ingenious +contrivance, this gilded minority, instead of being in the tail +of the procession where it belonged, was marching head up and +banners flying, at the other end of it; had elected itself to be +the Nation, and these innumerable clams had permitted it so long +that they had come at last to accept it as a truth; and not only +that, but to believe it right and as it should be. The priests +had told their fathers and themselves that this ironical state +of things was ordained of God; and so, not reflecting upon how +unlike God it would be to amuse himself with sarcasms, and especially +such poor transparent ones as this, they had dropped the matter +there and become respectfully quiet. + +The talk of these meek people had a strange enough sound in +a formerly American ear. They were freemen, but they could not +leave the estates of their lord or their bishop without his +permission; they could not prepare their own bread, but must have +their corn ground and their bread baked at his mill and his bakery, +and pay roundly for the same; they could not sell a piece of their +own property without paying him a handsome percentage of the +proceeds, nor buy a piece of somebody else's without remembering +him in cash for the privilege; they had to harvest his grain for him +gratis, and be ready to come at a moment's notice, leaving their +own crop to destruction by the threatened storm; they had to let +him plant fruit trees in their fields, and then keep their indignation +to themselves when his heedless fruit-gatherers trampled the grain +around the trees; they had to smother their anger when his hunting +parties galloped through their fields laying waste the result of +their patient toil; they were not allowed to keep doves themselves, +and when the swarms from my lord's dovecote settled on their crops +they must not lose their temper and kill a bird, for awful would +the penalty be; when the harvest was at last gathered, then came +the procession of robbers to levy their blackmail upon it: first +the Church carted off its fat tenth, then the king's commissioner +took his twentieth, then my lord's people made a mighty inroad +upon the remainder; after which, the skinned freeman had liberty +to bestow the remnant in his barn, in case it was worth the trouble; +there were taxes, and taxes, and taxes, and more taxes, and taxes +again, and yet other taxes--upon this free and independent pauper, +but none upon his lord the baron or the bishop, none upon the +wasteful nobility or the all-devouring Church; if the baron would +sleep unvexed, the freeman must sit up all night after his day's +work and whip the ponds to keep the frogs quiet; if the freeman's +daughter--but no, that last infamy of monarchical government is +unprintable; and finally, if the freeman, grown desperate with his +tortures, found his life unendurable under such conditions, and +sacrificed it and fled to death for mercy and refuge, the gentle +Church condemned him to eternal fire, the gentle law buried him +at midnight at the cross-roads with a stake through his back, +and his master the baron or the bishop confiscated all his property +and turned his widow and his orphans out of doors. + +And here were these freemen assembled in the early morning to work +on their lord the bishop's road three days each--gratis; every +head of a family, and every son of a family, three days each, +gratis, and a day or so added for their servants. Why, it was +like reading about France and the French, before the ever memorable +and blessed Revolution, which swept a thousand years of such +villany away in one swift tidal-wave of blood--one: a settlement +of that hoary debt in the proportion of half a drop of blood for +each hogshead of it that had been pressed by slow tortures out of +that people in the weary stretch of ten centuries of wrong and +shame and misery the like of which was not to be mated but in hell. +There were two "Reigns of Terror," if we would but remember it +and consider it; the one wrought murder in hot passion, the other +in heartless cold blood; the one lasted mere months, the other had +lasted a thousand years; the one inflicted death upon ten thousand +persons, the other upon a hundred millions; but our shudders are +all for the "horrors" of the minor Terror, the momentary Terror, +so to speak; whereas, what is the horror of swift death by the axe, +compared with lifelong death from hunger, cold, insult, cruelty, +and heart-break? What is swift death by lightning compared with +death by slow fire at the stake? A city cemetery could contain the +coffins filled by that brief Terror which we have all been so +diligently taught to shiver at and mourn over; but all France could +hardly contain the coffins filled by that older and real Terror +--that unspeakably bitter and awful Terror which none of us has +been taught to see in its vastness or pity as it deserves. + +These poor ostensible freemen who were sharing their breakfast +and their talk with me, were as full of humble reverence for their +king and Church and nobility as their worst enemy could desire. +There was something pitifully ludicrous about it. I asked them +if they supposed a nation of people ever existed, who, with a free +vote in every man's hand, would elect that a single family and its +descendants should reign over it forever, whether gifted or boobies, +to the exclusion of all other families--including the voter's; and +would also elect that a certain hundred families should be raised +to dizzy summits of rank, and clothed on with offensive transmissible +glories and privileges to the exclusion of the rest of the nation's +families--_including his own_. + +They all looked unhit, and said they didn't know; that they had +never thought about it before, and it hadn't ever occurred to them +that a nation could be so situated that every man _could_ have +a say in the government. I said I had seen one--and that it would +last until it had an Established Church. Again they were all +unhit--at first. But presently one man looked up and asked me +to state that proposition again; and state it slowly, so it could +soak into his understanding. I did it; and after a little he had +the idea, and he brought his fist down and said _he_ didn't believe +a nation where every man had a vote would voluntarily get down +in the mud and dirt in any such way; and that to steal from a nation +its will and preference must be a crime and the first of all crimes. +I said to myself: + +"This one's a man. If I were backed by enough of his sort, I would +make a strike for the welfare of this country, and try to prove +myself its loyalest citizen by making a wholesome change in its +system of government." + +You see my kind of loyalty was loyalty to one's country, not to +its institutions or its office-holders. The country is the real +thing, the substantial thing, the eternal thing; it is the thing +to watch over, and care for, and be loyal to; institutions are +extraneous, they are its mere clothing, and clothing can wear out, +become ragged, cease to be comfortable, cease to protect the body +from winter, disease, and death. To be loyal to rags, to shout +for rags, to worship rags, to die for rags--that is a loyalty +of unreason, it is pure animal; it belongs to monarchy, was invented +by monarchy; let monarchy keep it. I was from Connecticut, whose +Constitution declares "that all political power is inherent in +the people, and all free governments are founded on their authority +and instituted for their benefit; and that they have _at all times_ +an undeniable and indefeasible right to _alter their form of +government_ in such a manner as they may think expedient." + +Under that gospel, the citizen who thinks he sees that the +commonwealth's political clothes are worn out, and yet holds his +peace and does not agitate for a new suit, is disloyal; he is +a traitor. That he may be the only one who thinks he sees this +decay, does not excuse him; it is his duty to agitate anyway, and +it is the duty of the others to vote him down if they do not see +the matter as he does. + +And now here I was, in a country where a right to say how the +country should be governed was restricted to six persons in each +thousand of its population. For the nine hundred and ninety-four +to express dissatisfaction with the regnant system and propose +to change it, would have made the whole six shudder as one man, +it would have been so disloyal, so dishonorable, such putrid black +treason. So to speak, I was become a stockholder in a corporation +where nine hundred and ninety-four of the members furnished all +the money and did all the work, and the other six elected themselves +a permanent board of direction and took all the dividends. It seemed +to me that what the nine hundred and ninety-four dupes needed was +a new deal. The thing that would have best suited the circus side +of my nature would have been to resign the Boss-ship and get up +an insurrection and turn it into a revolution; but I knew that the +Jack Cade or the Wat Tyler who tries such a thing without first +educating his materials up to revolution grade is almost absolutely +certain to get left. I had never been accustomed to getting left, +even if I do say it myself. Wherefore, the "deal" which had been +for some time working into shape in my mind was of a quite different +pattern from the Cade-Tyler sort. + +So I did not talk blood and insurrection to that man there who sat +munching black bread with that abused and mistaught herd of human +sheep, but took him aside and talked matter of another sort to him. +After I had finished, I got him to lend me a little ink from his +veins; and with this and a sliver I wrote on a piece of bark-- + + Put him in the Man-factory-- + +and gave it to him, and said: + +"Take it to the palace at Camelot and give it into the hands of +Amyas le Poulet, whom I call Clarence, and he will understand." + +"He is a priest, then," said the man, and some of the enthusiasm +went out of his face. + +"How--a priest? Didn't I tell you that no chattel of the Church, +no bond-slave of pope or bishop can enter my Man-Factory? Didn't +I tell you that _you_ couldn't enter unless your religion, whatever +it might be, was your own free property?" + +"Marry, it is so, and for that I was glad; wherefore it liked me not, +and bred in me a cold doubt, to hear of this priest being there." + +"But he isn't a priest, I tell you." + +The man looked far from satisfied. He said: + +"He is not a priest, and yet can read?" + +"He is not a priest and yet can read--yes, and write, too, for that +matter. I taught him myself." The man's face cleared. "And it is +the first thing that you yourself will be taught in that Factory--" + +"I? I would give blood out of my heart to know that art. Why, +I will be your slave, your--" + +"No you won't, you won't be anybody's slave. Take your family +and go along. Your lord the bishop will confiscate your small +property, but no matter. Clarence will fix you all right." + + + +CHAPTER XIV + +"DEFEND THEE, LORD" + +I paid three pennies for my breakfast, and a most extravagant +price it was, too, seeing that one could have breakfasted a dozen +persons for that money; but I was feeling good by this time, and +I had always been a kind of spendthrift anyway; and then these +people had wanted to give me the food for nothing, scant as +their provision was, and so it was a grateful pleasure to emphasize +my appreciation and sincere thankfulness with a good big financial +lift where the money would do so much more good than it would +in my helmet, where, these pennies being made of iron and not +stinted in weight, my half-dollar's worth was a good deal of a +burden to me. I spent money rather too freely in those days, +it is true; but one reason for it was that I hadn't got the +proportions of things entirely adjusted, even yet, after so long +a sojourn in Britain--hadn't got along to where I was able to +absolutely realize that a penny in Arthur's land and a couple of +dollars in Connecticut were about one and the same thing: just +twins, as you may say, in purchasing power. If my start from +Camelot could have been delayed a very few days I could have paid +these people in beautiful new coins from our own mint, and that +would have pleased me; and them, too, not less. I had adopted +the American values exclusively. In a week or two now, cents, +nickels, dimes, quarters, and half-dollars, and also a trifle of +gold, would be trickling in thin but steady streams all through +the commercial veins of the kingdom, and I looked to see this +new blood freshen up its life. + +The farmers were bound to throw in something, to sort of offset +my liberality, whether I would or no; so I let them give me a flint +and steel; and as soon as they had comfortably bestowed Sandy +and me on our horse, I lit my pipe. When the first blast of smoke +shot out through the bars of my helmet, all those people broke +for the woods, and Sandy went over backwards and struck the ground +with a dull thud. They thought I was one of those fire-belching +dragons they had heard so much about from knights and other +professional liars. I had infinite trouble to persuade those people +to venture back within explaining distance. Then I told them that +this was only a bit of enchantment which would work harm to none +but my enemies. And I promised, with my hand on my heart, that +if all who felt no enmity toward me would come forward and pass +before me they should see that only those who remained behind would +be struck dead. The procession moved with a good deal of promptness. +There were no casualties to report, for nobody had curiosity enough +to remain behind to see what would happen. + +I lost some time, now, for these big children, their fears gone, +became so ravished with wonder over my awe-compelling fireworks +that I had to stay there and smoke a couple of pipes out before +they would let me go. Still the delay was not wholly unproductive, +for it took all that time to get Sandy thoroughly wonted to the new +thing, she being so close to it, you know. It plugged up her +conversation mill, too, for a considerable while, and that was +a gain. But above all other benefits accruing, I had learned +something. I was ready for any giant or any ogre that might come +along, now. + +We tarried with a holy hermit, that night, and my opportunity +came about the middle of the next afternoon. We were crossing +a vast meadow by way of short-cut, and I was musing absently, +hearing nothing, seeing nothing, when Sandy suddenly interrupted +a remark which she had begun that morning, with the cry: + +"Defend thee, lord!--peril of life is toward!" + +And she slipped down from the horse and ran a little way and stood. +I looked up and saw, far off in the shade of a tree, half a dozen +armed knights and their squires; and straightway there was bustle +among them and tightening of saddle-girths for the mount. My pipe +was ready and would have been lit, if I had not been lost in +thinking about how to banish oppression from this land and restore +to all its people their stolen rights and manhood without disobliging +anybody. I lit up at once, and by the time I had got a good head +of reserved steam on, here they came. All together, too; none of +those chivalrous magnanimities which one reads so much about +--one courtly rascal at a time, and the rest standing by to see fair +play. No, they came in a body, they came with a whirr and a rush, +they came like a volley from a battery; came with heads low down, +plumes streaming out behind, lances advanced at a level. It was +a handsome sight, a beautiful sight--for a man up a tree. I laid +my lance in rest and waited, with my heart beating, till the iron +wave was just ready to break over me, then spouted a column of +white smoke through the bars of my helmet. You should have seen +the wave go to pieces and scatter! This was a finer sight than +the other one. + +But these people stopped, two or three hundred yards away, and +this troubled me. My satisfaction collapsed, and fear came; +I judged I was a lost man. But Sandy was radiant; and was going +to be eloquent--but I stopped her, and told her my magic had +miscarried, somehow or other, and she must mount, with all despatch, +and we must ride for life. No, she wouldn't. She said that my +enchantment had disabled those knights; they were not riding on, +because they couldn't; wait, they would drop out of their saddles +presently, and we would get their horses and harness. I could not +deceive such trusting simplicity, so I said it was a mistake; that +when my fireworks killed at all, they killed instantly; no, the men +would not die, there was something wrong about my apparatus, +I couldn't tell what; but we must hurry and get away, for those +people would attack us again, in a minute. Sandy laughed, and said: + +"Lack-a-day, sir, they be not of that breed! Sir Launcelot will +give battle to dragons, and will abide by them, and will assail +them again, and yet again, and still again, until he do conquer +and destroy them; and so likewise will Sir Pellinore and Sir Aglovale +and Sir Carados, and mayhap others, but there be none else that +will venture it, let the idle say what the idle will. And, la, +as to yonder base rufflers, think ye they have not their fill, +but yet desire more?" + +"Well, then, what are they waiting for? Why don't they leave? +Nobody's hindering. Good land, I'm willing to let bygones be +bygones, I'm sure." + +"Leave, is it? Oh, give thyself easement as to that. They dream +not of it, no, not they. They wait to yield them." + +"Come--really, is that 'sooth'--as you people say? If they want to, +why don't they?" + +"It would like them much; but an ye wot how dragons are esteemed, +ye would not hold them blamable. They fear to come." + +"Well, then, suppose I go to them instead, and--" + +"Ah, wit ye well they would not abide your coming. I will go." + +And she did. She was a handy person to have along on a raid. +I would have considered this a doubtful errand, myself. I presently +saw the knights riding away, and Sandy coming back. That was +a relief. I judged she had somehow failed to get the first innings +--I mean in the conversation; otherwise the interview wouldn't have +been so short. But it turned out that she had managed the business +well; in fact, admirably. She said that when she told those people +I was The Boss, it hit them where they lived: "smote them sore +with fear and dread" was her word; and then they were ready to +put up with anything she might require. So she swore them to appear +at Arthur's court within two days and yield them, with horse and +harness, and be my knights henceforth, and subject to my command. +How much better she managed that thing than I should have done +it myself! She was a daisy. + + + +CHAPTER XV + +SANDY'S TALE + +"And so I'm proprietor of some knights," said I, as we rode off. +"Who would ever have supposed that I should live to list up assets +of that sort. I shan't know what to do with them; unless I raffle +them off. How many of them are there, Sandy?" + +"Seven, please you, sir, and their squires." + +"It is a good haul. Who are they? Where do they hang out?" + +"Where do they hang out?" + +"Yes, where do they live?" + +"Ah, I understood thee not. That will I tell eftsoons." Then she +said musingly, and softly, turning the words daintily over her +tongue: "Hang they out--hang they out--where hang--where do they +hang out; eh, right so; where do they hang out. Of a truth the +phrase hath a fair and winsome grace, and is prettily worded +withal. I will repeat it anon and anon in mine idlesse, whereby +I may peradventure learn it. Where do they hang out. Even so! +already it falleth trippingly from my tongue, and forasmuch as--" + +"Don't forget the cowboys, Sandy." + +"Cowboys?" + +"Yes; the knights, you know: You were going to tell me about them. +A while back, you remember. Figuratively speaking, game's called." + +"Game--" + +"Yes, yes, yes! Go to the bat. I mean, get to work on your +statistics, and don't burn so much kindling getting your fire +started. Tell me about the knights." + +"I will well, and lightly will begin. So they two departed and +rode into a great forest. And--" + +"Great Scott!" + +You see, I recognized my mistake at once. I had set her works +a-going; it was my own fault; she would be thirty days getting down +to those facts. And she generally began without a preface and +finished without a result. If you interrupted her she would either +go right along without noticing, or answer with a couple of words, +and go back and say the sentence over again. So, interruptions +only did harm; and yet I had to interrupt, and interrupt pretty +frequently, too, in order to save my life; a person would die if +he let her monotony drip on him right along all day. + +"Great Scott!" I said in my distress. She went right back and +began over again: + +"So they two departed and rode into a great forest. And--" + +"_Which_ two?" + +"Sir Gawaine and Sir Uwaine. And so they came to an abbey of monks, +and there were well lodged. So on the morn they heard their masses +in the abbey, and so they rode forth till they came to a great +forest; then was Sir Gawaine ware in a valley by a turret, of +twelve fair damsels, and two knights armed on great horses, and +the damsels went to and fro by a tree. And then was Sir Gawaine +ware how there hung a white shield on that tree, and ever as the +damsels came by it they spit upon it, and some threw mire upon +the shield--" + +"Now, if I hadn't seen the like myself in this country, Sandy, +I wouldn't believe it. But I've seen it, and I can just see those +creatures now, parading before that shield and acting like that. +The women here do certainly act like all possessed. Yes, and +I mean your best, too, society's very choicest brands. The humblest +hello-girl along ten thousand miles of wire could teach gentleness, +patience, modesty, manners, to the highest duchess in Arthur's land." + +"Hello-girl?" + +"Yes, but don't you ask me to explain; it's a new kind of a girl; +they don't have them here; one often speaks sharply to them when +they are not the least in fault, and he can't get over feeling +sorry for it and ashamed of himself in thirteen hundred years, +it's such shabby mean conduct and so unprovoked; the fact is, +no gentleman ever does it--though I--well, I myself, if I've got +to confess--" + +"Peradventure she--" + +"Never mind her; never mind her; I tell you I couldn't ever explain +her so you would understand." + +"Even so be it, sith ye are so minded. Then Sir Gawaine and +Sir Uwaine went and saluted them, and asked them why they did that +despite to the shield. Sirs, said the damsels, we shall tell you. +There is a knight in this country that owneth this white shield, +and he is a passing good man of his hands, but he hateth all +ladies and gentlewomen, and therefore we do all this despite to +the shield. I will say you, said Sir Gawaine, it beseemeth evil +a good knight to despise all ladies and gentlewomen, and peradventure +though he hate you he hath some cause, and peradventure he loveth +in some other places ladies and gentlewomen, and to be loved again, +and he such a man of prowess as ye speak of--" + +"Man of prowess--yes, that is the man to please them, Sandy. +Man of brains--that is a thing they never think of. Tom Sayers +--John Heenan--John L. Sullivan--pity but you could be here. You +would have your legs under the Round Table and a 'Sir' in front +of your names within the twenty-four hours; and you could bring +about a new distribution of the married princesses and duchesses +of the Court in another twenty-four. The fact is, it is just +a sort of polished-up court of Comanches, and there isn't a squaw +in it who doesn't stand ready at the dropping of a hat to desert +to the buck with the biggest string of scalps at his belt." + +"--and he be such a man of prowess as ye speak of, said Sir Gawaine. +Now, what is his name? Sir, said they, his name is Marhaus the +king's son of Ireland." + +"Son of the king of Ireland, you mean; the other form doesn't mean +anything. And look out and hold on tight, now, we must jump +this gully.... There, we are all right now. This horse belongs in +the circus; he is born before his time." + +"I know him well, said Sir Uwaine, he is a passing good knight as +any is on live." + +"_On live_. If you've got a fault in the world, Sandy, it is that +you are a shade too archaic. But it isn't any matter." + +"--for I saw him once proved at a justs where many knights were +gathered, and that time there might no man withstand him. Ah, said +Sir Gawaine, damsels, methinketh ye are to blame, for it is to +suppose he that hung that shield there will not be long therefrom, +and then may those knights match him on horseback, and that is +more your worship than thus; for I will abide no longer to see +a knight's shield dishonored. And therewith Sir Uwaine and +Sir Gawaine departed a little from them, and then were they ware +where Sir Marhaus came riding on a great horse straight toward +them. And when the twelve damsels saw Sir Marhaus they fled into +the turret as they were wild, so that some of them fell by the way. +Then the one of the knights of the tower dressed his shield, and +said on high, Sir Marhaus defend thee. And so they ran together +that the knight brake his spear on Marhaus, and Sir Marhaus smote +him so hard that he brake his neck and the horse's back--" + +"Well, that is just the trouble about this state of things, +it ruins so many horses." + +"That saw the other knight of the turret, and dressed him toward +Marhaus, and they went so eagerly together, that the knight of +the turret was soon smitten down, horse and man, stark dead--" + +"_Another_ horse gone; I tell you it is a custom that ought to be +broken up. I don't see how people with any feeling can applaud +and support it." + + . . . . + +"So these two knights came together with great random--" + +I saw that I had been asleep and missed a chapter, but I didn't +say anything. I judged that the Irish knight was in trouble with +the visitors by this time, and this turned out to be the case. + +"--that Sir Uwaine smote Sir Marhaus that his spear brast in pieces +on the shield, and Sir Marhaus smote him so sore that horse and +man he bare to the earth, and hurt Sir Uwaine on the left side--" + +"The truth is, Alisande, these archaics are a little _too_ simple; +the vocabulary is too limited, and so, by consequence, descriptions +suffer in the matter of variety; they run too much to level Saharas +of fact, and not enough to picturesque detail; this throws about +them a certain air of the monotonous; in fact the fights are all +alike: a couple of people come together with great random +--random is a good word, and so is exegesis, for that matter, and +so is holocaust, and defalcation, and usufruct and a hundred others, +but land! a body ought to discriminate--they come together with +great random, and a spear is brast, and one party brake his shield +and the other one goes down, horse and man, over his horse-tail +and brake his neck, and then the next candidate comes randoming in, +and brast _his_ spear, and the other man brast his shield, and down +_he_ goes, horse and man, over his horse-tail, and brake _his_ neck, +and then there's another elected, and another and another and still +another, till the material is all used up; and when you come to +figure up results, you can't tell one fight from another, nor who +whipped; and as a _picture_, of living, raging, roaring battle, +sho! why, it's pale and noiseless--just ghosts scuffling in a fog. +Dear me, what would this barren vocabulary get out of the mightiest +spectacle?--the burning of Rome in Nero's time, for instance? +Why, it would merely say, 'Town burned down; no insurance; boy +brast a window, fireman brake his neck!' Why, _that_ ain't a picture!" + +It was a good deal of a lecture, I thought, but it didn't disturb +Sandy, didn't turn a feather; her steam soared steadily up again, +the minute I took off the lid: + +"Then Sir Marhaus turned his horse and rode toward Gawaine with +his spear. And when Sir Gawaine saw that, he dressed his shield, +and they aventred their spears, and they came together with all +the might of their horses, that either knight smote other so hard +in the midst of their shields, but Sir Gawaine's spear brake--" + +"I knew it would." + +--"but Sir Marhaus's spear held; and therewith Sir Gawaine and +his horse rushed down to the earth--" + +"Just so--and brake his back." + +--"and lightly Sir Gawaine rose upon his feet and pulled out +his sword, and dressed him toward Sir Marhaus on foot, and therewith +either came unto other eagerly, and smote together with their +swords, that their shields flew in cantels, and they bruised their +helms and their hauberks, and wounded either other. But Sir Gawaine, +fro it passed nine of the clock, waxed by the space of three hours +ever stronger and stronger and thrice his might was increased. +All this espied Sir Marhaus, and had great wonder how his might +increased, and so they wounded other passing sore; and then when +it was come noon--" + +The pelting sing-song of it carried me forward to scenes and +sounds of my boyhood days: + +"N-e-e-ew Haven! ten minutes for refreshments--knductr'll strike +the gong-bell two minutes before train leaves--passengers for +the Shore line please take seats in the rear k'yar, this k'yar +don't go no furder--_ahh_-pls, _aw_-rnjz, b'_nan_ners, +_s-a-n-d_'ches, p--_op_-corn!" + +--"and waxed past noon and drew toward evensong. Sir Gawaine's +strength feebled and waxed passing faint, that unnethes he might +dure any longer, and Sir Marhaus was then bigger and bigger--" + +"Which strained his armor, of course; and yet little would one +of these people mind a small thing like that." + +--"and so, Sir Knight, said Sir Marhaus, I have well felt that +ye are a passing good knight, and a marvelous man of might as ever +I felt any, while it lasteth, and our quarrels are not great, and +therefore it were a pity to do you hurt, for I feel you are passing +feeble. Ah, said Sir Gawaine, gentle knight, ye say the word +that I should say. And therewith they took off their helms and +either kissed other, and there they swore together either to love +other as brethren--" + +But I lost the thread there, and dozed off to slumber, thinking +about what a pity it was that men with such superb strength +--strength enabling them to stand up cased in cruelly burdensome +iron and drenched with perspiration, and hack and batter and bang +each other for six hours on a stretch--should not have been born +at a time when they could put it to some useful purpose. Take +a jackass, for instance: a jackass has that kind of strength, and +puts it to a useful purpose, and is valuable to this world because +he is a jackass; but a nobleman is not valuable because he is +a jackass. It is a mixture that is always ineffectual, and should +never have been attempted in the first place. And yet, once you +start a mistake, the trouble is done and you never know what is +going to come of it. + +When I came to myself again and began to listen, I perceived that +I had lost another chapter, and that Alisande had wandered a long +way off with her people. + +"And so they rode and came into a deep valley full of stones, +and thereby they saw a fair stream of water; above thereby was +the head of the stream, a fair fountain, and three damsels sitting +thereby. In this country, said Sir Marhaus, came never knight +since it was christened, but he found strange adventures--" + +"This is not good form, Alisande. Sir Marhaus the king's son of +Ireland talks like all the rest; you ought to give him a brogue, +or at least a characteristic expletive; by this means one would +recognize him as soon as he spoke, without his ever being named. +It is a common literary device with the great authors. You should +make him say, 'In this country, be jabers, came never knight since +it was christened, but he found strange adventures, be jabers.' +You see how much better that sounds." + +--"came never knight but he found strange adventures, be jabers. +Of a truth it doth indeed, fair lord, albeit 'tis passing hard +to say, though peradventure that will not tarry but better speed +with usage. And then they rode to the damsels, and either saluted +other, and the eldest had a garland of gold about her head, and +she was threescore winter of age or more--" + +"The _damsel_ was?" + +"Even so, dear lord--and her hair was white under the garland--" + +"Celluloid teeth, nine dollars a set, as like as not--the loose-fit +kind, that go up and down like a portcullis when you eat, and +fall out when you laugh." + +"The second damsel was of thirty winter of age, with a circlet of +gold about her head. The third damsel was but fifteen year of age--" + +Billows of thought came rolling over my soul, and the voice faded +out of my hearing! + +Fifteen! Break--my heart! oh, my lost darling! Just her age +who was so gentle, and lovely, and all the world to me, and whom +I shall never see again! How the thought of her carries me back +over wide seas of memory to a vague dim time, a happy time, so many, +many centuries hence, when I used to wake in the soft summer +mornings, out of sweet dreams of her, and say "Hello, Central!" +just to hear her dear voice come melting back to me with a +"Hello, Hank!" that was music of the spheres to my enchanted ear. +She got three dollars a week, but she was worth it. + +I could not follow Alisande's further explanation of who our +captured knights were, now--I mean in case she should ever get +to explaining who they were. My interest was gone, my thoughts +were far away, and sad. By fitful glimpses of the drifting tale, +caught here and there and now and then, I merely noted in a vague +way that each of these three knights took one of these three damsels +up behind him on his horse, and one rode north, another east, +the other south, to seek adventures, and meet again and lie, after +year and day. Year and day--and without baggage. It was of +a piece with the general simplicity of the country. + +The sun was now setting. It was about three in the afternoon when +Alisande had begun to tell me who the cowboys were; so she had made +pretty good progress with it--for her. She would arrive some time +or other, no doubt, but she was not a person who could be hurried. + +We were approaching a castle which stood on high ground; a huge, +strong, venerable structure, whose gray towers and battlements were +charmingly draped with ivy, and whose whole majestic mass was +drenched with splendors flung from the sinking sun. It was the +largest castle we had seen, and so I thought it might be the one +we were after, but Sandy said no. She did not know who owned it; +she said she had passed it without calling, when she went down +to Camelot. + + + +CHAPTER XVI + +MORGAN LE FAY + +If knights errant were to be believed, not all castles were desirable +places to seek hospitality in. As a matter of fact, knights errant +were _not_ persons to be believed--that is, measured by modern +standards of veracity; yet, measured by the standards of their own +time, and scaled accordingly, you got the truth. It was very +simple: you discounted a statement ninety-seven per cent; the rest +was fact. Now after making this allowance, the truth remained +that if I could find out something about a castle before ringing +the door-bell--I mean hailing the warders--it was the sensible +thing to do. So I was pleased when I saw in the distance a horseman +making the bottom turn of the road that wound down from this castle. + +As we approached each other, I saw that he wore a plumed helmet, +and seemed to be otherwise clothed in steel, but bore a curious +addition also--a stiff square garment like a herald's tabard. +However, I had to smile at my own forgetfulness when I got nearer +and read this sign on his tabard: + + "Persimmon's Soap -- All the Prime-Donna Use It." + +That was a little idea of my own, and had several wholesome purposes +in view toward the civilizing and uplifting of this nation. In the +first place, it was a furtive, underhand blow at this nonsense +of knight errantry, though nobody suspected that but me. I had +started a number of these people out--the bravest knights I could +get--each sandwiched between bulletin-boards bearing one device +or another, and I judged that by and by when they got to be numerous +enough they would begin to look ridiculous; and then, even the +steel-clad ass that _hadn't_ any board would himself begin to look +ridiculous because he was out of the fashion. + +Secondly, these missionaries would gradually, and without creating +suspicion or exciting alarm, introduce a rudimentary cleanliness +among the nobility, and from them it would work down to the people, +if the priests could be kept quiet. This would undermine the Church. +I mean would be a step toward that. Next, education--next, freedom +--and then she would begin to crumble. It being my conviction that +any Established Church is an established crime, an established +slave-pen, I had no scruples, but was willing to assail it in +any way or with any weapon that promised to hurt it. Why, in my +own former day--in remote centuries not yet stirring in the womb +of time--there were old Englishmen who imagined that they had been +born in a free country: a "free" country with the Corporation Act +and the Test still in force in it--timbers propped against men's +liberties and dishonored consciences to shore up an Established +Anachronism with. + +My missionaries were taught to spell out the gilt signs on their +tabards--the showy gilding was a neat idea, I could have got the +king to wear a bulletin-board for the sake of that barbaric +splendor--they were to spell out these signs and then explain to +the lords and ladies what soap was; and if the lords and ladies +were afraid of it, get them to try it on a dog. The missionary's +next move was to get the family together and try it on himself; +he was to stop at no experiment, however desperate, that could +convince the nobility that soap was harmless; if any final doubt +remained, he must catch a hermit--the woods were full of them; +saints they called themselves, and saints they were believed to be. +They were unspeakably holy, and worked miracles, and everybody +stood in awe of them. If a hermit could survive a wash, and that +failed to convince a duke, give him up, let him alone. + +Whenever my missionaries overcame a knight errant on the road +they washed him, and when he got well they swore him to go and +get a bulletin-board and disseminate soap and civilization the rest +of his days. As a consequence the workers in the field were +increasing by degrees, and the reform was steadily spreading. +My soap factory felt the strain early. At first I had only two +hands; but before I had left home I was already employing fifteen, +and running night and day; and the atmospheric result was getting +so pronounced that the king went sort of fainting and gasping +around and said he did not believe he could stand it much longer, +and Sir Launcelot got so that he did hardly anything but walk up +and down the roof and swear, although I told him it was worse up +there than anywhere else, but he said he wanted plenty of air; and +he was always complaining that a palace was no place for a soap +factory anyway, and said if a man was to start one in his house +he would be damned if he wouldn't strangle him. There were ladies +present, too, but much these people ever cared for that; they would +swear before children, if the wind was their way when the factory +was going. + +This missionary knight's name was La Cote Male Taile, and he said +that this castle was the abode of Morgan le Fay, sister of +King Arthur, and wife of King Uriens, monarch of a realm about +as big as the District of Columbia--you could stand in the middle +of it and throw bricks into the next kingdom. "Kings" and "Kingdoms" +were as thick in Britain as they had been in little Palestine in +Joshua's time, when people had to sleep with their knees pulled up +because they couldn't stretch out without a passport. + +La Cote was much depressed, for he had scored here the worst +failure of his campaign. He had not worked off a cake; yet he had +tried all the tricks of the trade, even to the washing of a hermit; +but the hermit died. This was, indeed, a bad failure, for this +animal would now be dubbed a martyr, and would take his place +among the saints of the Roman calendar. Thus made he his moan, +this poor Sir La Cote Male Taile, and sorrowed passing sore. And +so my heart bled for him, and I was moved to comfort and stay him. +Wherefore I said: + +"Forbear to grieve, fair knight, for this is not a defeat. We have +brains, you and I; and for such as have brains there are no defeats, +but only victories. Observe how we will turn this seeming disaster +into an advertisement; an advertisement for our soap; and the +biggest one, to draw, that was ever thought of; an advertisement +that will transform that Mount Washington defeat into a Matterhorn +victory. We will put on your bulletin-board, '_Patronized by the +elect_.' How does that strike you?" + +"Verily, it is wonderly bethought!" + +"Well, a body is bound to admit that for just a modest little +one-line ad, it's a corker." + +So the poor colporteur's griefs vanished away. He was a brave +fellow, and had done mighty feats of arms in his time. His chief +celebrity rested upon the events of an excursion like this one +of mine, which he had once made with a damsel named Maledisant, +who was as handy with her tongue as was Sandy, though in a different +way, for her tongue churned forth only railings and insult, whereas +Sandy's music was of a kindlier sort. I knew his story well, and so +I knew how to interpret the compassion that was in his face when he +bade me farewell. He supposed I was having a bitter hard time of it. + +Sandy and I discussed his story, as we rode along, and she said +that La Cote's bad luck had begun with the very beginning of that +trip; for the king's fool had overthrown him on the first day, +and in such cases it was customary for the girl to desert to the +conqueror, but Maledisant didn't do it; and also persisted afterward +in sticking to him, after all his defeats. But, said I, suppose +the victor should decline to accept his spoil? She said that that +wouldn't answer--he must. He couldn't decline; it wouldn't be +regular. I made a note of that. If Sandy's music got to be too +burdensome, some time, I would let a knight defeat me, on the chance +that she would desert to him. + +In due time we were challenged by the warders, from the castle +walls, and after a parley admitted. I have nothing pleasant to +tell about that visit. But it was not a disappointment, for I knew +Mrs. le Fay by reputation, and was not expecting anything pleasant. +She was held in awe by the whole realm, for she had made everybody +believe she was a great sorceress. All her ways were wicked, all +her instincts devilish. She was loaded to the eyelids with cold +malice. All her history was black with crime; and among her crimes +murder was common. I was most curious to see her; as curious as +I could have been to see Satan. To my surprise she was beautiful; +black thoughts had failed to make her expression repulsive, age +had failed to wrinkle her satin skin or mar its bloomy freshness. +She could have passed for old Uriens' granddaughter, she could +have been mistaken for sister to her own son. + +As soon as we were fairly within the castle gates we were ordered +into her presence. King Uriens was there, a kind-faced old man +with a subdued look; and also the son, Sir Uwaine le Blanchemains, +in whom I was, of course, interested on account of the tradition +that he had once done battle with thirty knights, and also on +account of his trip with Sir Gawaine and Sir Marhaus, which Sandy +had been aging me with. But Morgan was the main attraction, the +conspicuous personality here; she was head chief of this household, +that was plain. She caused us to be seated, and then she began, +with all manner of pretty graces and graciousnesses, to ask me +questions. Dear me, it was like a bird or a flute, or something, +talking. I felt persuaded that this woman must have been +misrepresented, lied about. She trilled along, and trilled along, +and presently a handsome young page, clothed like the rainbow, and +as easy and undulatory of movement as a wave, came with something +on a golden salver, and, kneeling to present it to her, overdid +his graces and lost his balance, and so fell lightly against her +knee. She slipped a dirk into him in as matter-of-course a way as +another person would have harpooned a rat! + +Poor child! he slumped to the floor, twisted his silken limbs in +one great straining contortion of pain, and was dead. Out of the +old king was wrung an involuntary "O-h!" of compassion. The look +he got, made him cut it suddenly short and not put any more hyphens +in it. Sir Uwaine, at a sign from his mother, went to the anteroom +and called some servants, and meanwhile madame went rippling sweetly +along with her talk. + +I saw that she was a good housekeeper, for while she talked she +kept a corner of her eye on the servants to see that they made +no balks in handling the body and getting it out; when they came +with fresh clean towels, she sent back for the other kind; and +when they had finished wiping the floor and were going, she indicated +a crimson fleck the size of a tear which their duller eyes had +overlooked. It was plain to me that La Cote Male Taile had failed +to see the mistress of the house. Often, how louder and clearer +than any tongue, does dumb circumstantial evidence speak. + +Morgan le Fay rippled along as musically as ever. Marvelous woman. +And what a glance she had: when it fell in reproof upon those +servants, they shrunk and quailed as timid people do when the +lightning flashes out of a cloud. I could have got the habit +myself. It was the same with that poor old Brer Uriens; he was +always on the ragged edge of apprehension; she could not even turn +toward him but he winced. + +In the midst of the talk I let drop a complimentary word about +King Arthur, forgetting for the moment how this woman hated her +brother. That one little compliment was enough. She clouded up +like storm; she called for her guards, and said: + +"Hale me these varlets to the dungeons." + +That struck cold on my ears, for her dungeons had a reputation. +Nothing occurred to me to say--or do. But not so with Sandy. +As the guard laid a hand upon me, she piped up with the tranquilest +confidence, and said: + +"God's wounds, dost thou covet destruction, thou maniac? It is +The Boss!" + +Now what a happy idea that was!--and so simple; yet it would never +have occurred to me. I was born modest; not all over, but in spots; +and this was one of the spots. + +The effect upon madame was electrical. It cleared her countenance +and brought back her smiles and all her persuasive graces and +blandishments; but nevertheless she was not able to entirely cover up +with them the fact that she was in a ghastly fright. She said: + +"La, but do list to thine handmaid! as if one gifted with powers +like to mine might say the thing which I have said unto one who +has vanquished Merlin, and not be jesting. By mine enchantments +I foresaw your coming, and by them I knew you when you entered +here. I did but play this little jest with hope to surprise you +into some display of your art, as not doubting you would blast +the guards with occult fires, consuming them to ashes on the spot, +a marvel much beyond mine own ability, yet one which I have long +been childishly curious to see." + +The guards were less curious, and got out as soon as they got permission. + + + +CHAPTER XVII + +A ROYAL BANQUET + +Madame, seeing me pacific and unresentful, no doubt judged that +I was deceived by her excuse; for her fright dissolved away, and +she was soon so importunate to have me give an exhibition and kill +somebody, that the thing grew to be embarrassing. However, to my +relief she was presently interrupted by the call to prayers. I will +say this much for the nobility: that, tyrannical, murderous, +rapacious, and morally rotten as they were, they were deeply and +enthusiastically religious. Nothing could divert them from the +regular and faithful performance of the pieties enjoined by the +Church. More than once I had seen a noble who had gotten his +enemy at a disadvantage, stop to pray before cutting his throat; +more than once I had seen a noble, after ambushing and despatching +his enemy, retire to the nearest wayside shrine and humbly give +thanks, without even waiting to rob the body. There was to be +nothing finer or sweeter in the life of even Benvenuto Cellini, +that rough-hewn saint, ten centuries later. All the nobles of +Britain, with their families, attended divine service morning and +night daily, in their private chapels, and even the worst of them +had family worship five or six times a day besides. The credit +of this belonged entirely to the Church. Although I was no friend +to that Catholic Church, I was obliged to admit this. And often, +in spite of me, I found myself saying, "What would this country +be without the Church?" + +After prayers we had dinner in a great banqueting hall which was +lighted by hundreds of grease-jets, and everything was as fine and +lavish and rudely splendid as might become the royal degree of the +hosts. At the head of the hall, on a dais, was the table of the +king, queen, and their son, Prince Uwaine. Stretching down the hall +from this, was the general table, on the floor. At this, above +the salt, sat the visiting nobles and the grown members of their +families, of both sexes,--the resident Court, in effect--sixty-one +persons; below the salt sat minor officers of the household, with +their principal subordinates: altogether a hundred and eighteen +persons sitting, and about as many liveried servants standing +behind their chairs, or serving in one capacity or another. It was +a very fine show. In a gallery a band with cymbals, horns, harps, +and other horrors, opened the proceedings with what seemed to be +the crude first-draft or original agony of the wail known to later +centuries as "In the Sweet Bye and Bye." It was new, and ought +to have been rehearsed a little more. For some reason or other +the queen had the composer hanged, after dinner. + +After this music, the priest who stood behind the royal table said +a noble long grace in ostensible Latin. Then the battalion of +waiters broke away from their posts, and darted, rushed, flew, +fetched and carried, and the mighty feeding began; no words +anywhere, but absorbing attention to business. The rows of chops +opened and shut in vast unison, and the sound of it was like to +the muffled burr of subterranean machinery. + +The havoc continued an hour and a half, and unimaginable was the +destruction of substantials. Of the chief feature of the feast +--the huge wild boar that lay stretched out so portly and imposing +at the start--nothing was left but the semblance of a hoop-skirt; +and he was but the type and symbol of what had happened to all +the other dishes. + +With the pastries and so on, the heavy drinking began--and the talk. +Gallon after gallon of wine and mead disappeared, and everybody +got comfortable, then happy, then sparklingly joyous--both sexes, +--and by and by pretty noisy. Men told anecdotes that were terrific +to hear, but nobody blushed; and when the nub was sprung, the +assemblage let go with a horse-laugh that shook the fortress. +Ladies answered back with historiettes that would almost have made +Queen Margaret of Navarre or even the great Elizabeth of England +hide behind a handkerchief, but nobody hid here, but only laughed +--howled, you may say. In pretty much all of these dreadful stories, +ecclesiastics were the hardy heroes, but that didn't worry the +chaplain any, he had his laugh with the rest; more than that, upon +invitation he roared out a song which was of as daring a sort as +any that was sung that night. + +By midnight everybody was fagged out, and sore with laughing; and, +as a rule, drunk: some weepingly, some affectionately, some +hilariously, some quarrelsomely, some dead and under the table. +Of the ladies, the worst spectacle was a lovely young duchess, whose +wedding-eve this was; and indeed she was a spectacle, sure enough. +Just as she was she could have sat in advance for the portrait of the +young daughter of the Regent d'Orleans, at the famous dinner whence +she was carried, foul-mouthed, intoxicated, and helpless, to her bed, +in the lost and lamented days of the Ancient Regime. + +Suddenly, even while the priest was lifting his hands, and all +conscious heads were bowed in reverent expectation of the coming +blessing, there appeared under the arch of the far-off door at +the bottom of the hall an old and bent and white-haired lady, +leaning upon a crutch-stick; and she lifted the stick and pointed it +toward the queen and cried out: + +"The wrath and curse of God fall upon you, woman without pity, +who have slain mine innocent grandchild and made desolate this +old heart that had nor chick, nor friend nor stay nor comfort in +all this world but him!" + +Everybody crossed himself in a grisly fright, for a curse was an +awful thing to those people; but the queen rose up majestic, with +the death-light in her eye, and flung back this ruthless command: + +"Lay hands on her! To the stake with her!" + +The guards left their posts to obey. It was a shame; it was a +cruel thing to see. What could be done? Sandy gave me a look; +I knew she had another inspiration. I said: + +"Do what you choose." + +She was up and facing toward the queen in a moment. She indicated +me, and said: + +"Madame, _he_ saith this may not be. Recall the commandment, or he +will dissolve the castle and it shall vanish away like the instable +fabric of a dream!" + +Confound it, what a crazy contract to pledge a person to! What if +the queen-- + +But my consternation subsided there, and my panic passed off; +for the queen, all in a collapse, made no show of resistance but +gave a countermanding sign and sunk into her seat. When she reached +it she was sober. So were many of the others. The assemblage rose, +whiffed ceremony to the winds, and rushed for the door like a mob; +overturning chairs, smashing crockery, tugging, struggling, +shouldering, crowding--anything to get out before I should change +my mind and puff the castle into the measureless dim vacancies of +space. Well, well, well, they _were_ a superstitious lot. It is +all a body can do to conceive of it. + +The poor queen was so scared and humbled that she was even afraid +to hang the composer without first consulting me. I was very sorry +for her--indeed, any one would have been, for she was really +suffering; so I was willing to do anything that was reasonable, and +had no desire to carry things to wanton extremities. I therefore +considered the matter thoughtfully, and ended by having the +musicians ordered into our presence to play that Sweet Bye and +Bye again, which they did. Then I saw that she was right, and +gave her permission to hang the whole band. This little relaxation +of sternness had a good effect upon the queen. A statesman gains +little by the arbitrary exercise of iron-clad authority upon all +occasions that offer, for this wounds the just pride of his +subordinates, and thus tends to undermine his strength. A little +concession, now and then, where it can do no harm, is the wiser policy. + +Now that the queen was at ease in her mind once more, and measurably +happy, her wine naturally began to assert itself again, and it got +a little the start of her. I mean it set her music going--her silver +bell of a tongue. Dear me, she was a master talker. It would not +become me to suggest that it was pretty late and that I was a tired +man and very sleepy. I wished I had gone off to bed when I had +the chance. Now I must stick it out; there was no other way. So +she tinkled along and along, in the otherwise profound and ghostly +hush of the sleeping castle, until by and by there came, as if +from deep down under us, a far-away sound, as of a muffled shriek +--with an expression of agony about it that made my flesh crawl. +The queen stopped, and her eyes lighted with pleasure; she tilted +her graceful head as a bird does when it listens. The sound bored +its way up through the stillness again. + +"What is it?" I said. + +"It is truly a stubborn soul, and endureth long. It is many hours now." + +"Endureth what?" + +"The rack. Come--ye shall see a blithe sight. An he yield not +his secret now, ye shall see him torn asunder." + +What a silky smooth hellion she was; and so composed and serene, +when the cords all down my legs were hurting in sympathy with that +man's pain. Conducted by mailed guards bearing flaring torches, +we tramped along echoing corridors, and down stone stairways dank +and dripping, and smelling of mould and ages of imprisoned night +--a chill, uncanny journey and a long one, and not made the shorter +or the cheerier by the sorceress's talk, which was about this +sufferer and his crime. He had been accused by an anonymous +informer, of having killed a stag in the royal preserves. I said: + +"Anonymous testimony isn't just the right thing, your Highness. +It were fairer to confront the accused with the accuser." + +"I had not thought of that, it being but of small consequence. +But an I would, I could not, for that the accuser came masked by +night, and told the forester, and straightway got him hence again, +and so the forester knoweth him not." + +"Then is this Unknown the only person who saw the stag killed?" + +"Marry, _no_ man _saw_ the killing, but this Unknown saw this hardy +wretch near to the spot where the stag lay, and came with right +loyal zeal and betrayed him to the forester." + +"So the Unknown was near the dead stag, too? Isn't it just possible +that he did the killing himself? His loyal zeal--in a mask--looks +just a shade suspicious. But what is your highness's idea for +racking the prisoner? Where is the profit?" + +"He will not confess, else; and then were his soul lost. For his +crime his life is forfeited by the law--and of a surety will I see +that he payeth it!--but it were peril to my own soul to let him +die unconfessed and unabsolved. Nay, I were a fool to fling me +into hell for _his_ accommodation." + +"But, your Highness, suppose he has nothing to confess?" + +"As to that, we shall see, anon. An I rack him to death and he +confess not, it will peradventure show that he had indeed naught +to confess--ye will grant that that is sooth? Then shall I not be +damned for an unconfessed man that had naught to confess +--wherefore, I shall be safe." + +It was the stubborn unreasoning of the time. It was useless to +argue with her. Arguments have no chance against petrified +training; they wear it as little as the waves wear a cliff. And +her training was everybody's. The brightest intellect in the land +would not have been able to see that her position was defective. + +As we entered the rack-cell I caught a picture that will not go +from me; I wish it would. A native young giant of thirty or +thereabouts lay stretched upon the frame on his back, with his +wrists and ankles tied to ropes which led over windlasses at either +end. There was no color in him; his features were contorted and +set, and sweat-drops stood upon his forehead. A priest bent over +him on each side; the executioner stood by; guards were on duty; +smoking torches stood in sockets along the walls; in a corner +crouched a poor young creature, her face drawn with anguish, +a half-wild and hunted look in her eyes, and in her lap lay a little +child asleep. Just as we stepped across the threshold the +executioner gave his machine a slight turn, which wrung a cry +from both the prisoner and the woman; but I shouted, and the +executioner released the strain without waiting to see who spoke. +I could not let this horror go on; it would have killed me to +see it. I asked the queen to let me clear the place and speak +to the prisoner privately; and when she was going to object I spoke +in a low voice and said I did not want to make a scene before +her servants, but I must have my way; for I was King Arthur's +representative, and was speaking in his name. She saw she had +to yield. I asked her to indorse me to these people, and then +leave me. It was not pleasant for her, but she took the pill; +and even went further than I was meaning to require. I only wanted +the backing of her own authority; but she said: + +"Ye will do in all things as this lord shall command. It is The Boss." + +It was certainly a good word to conjure with: you could see it +by the squirming of these rats. The queen's guards fell into line, +and she and they marched away, with their torch-bearers, and woke +the echoes of the cavernous tunnels with the measured beat of their +retreating footfalls. I had the prisoner taken from the rack and +placed upon his bed, and medicaments applied to his hurts, and +wine given him to drink. The woman crept near and looked on, +eagerly, lovingly, but timorously,--like one who fears a repulse; +indeed, she tried furtively to touch the man's forehead, and jumped +back, the picture of fright, when I turned unconsciously toward +her. It was pitiful to see. + +"Lord," I said, "stroke him, lass, if you want to. Do anything +you're a mind to; don't mind me." + +Why, her eyes were as grateful as an animal's, when you do it +a kindness that it understands. The baby was out of her way and +she had her cheek against the man's in a minute and her hands +fondling his hair, and her happy tears running down. The man +revived and caressed his wife with his eyes, which was all he +could do. I judged I might clear the den, now, and I did; cleared +it of all but the family and myself. Then I said: + +"Now, my friend, tell me your side of this matter; I know +the other side." + +The man moved his head in sign of refusal. But the woman looked +pleased--as it seemed to me--pleased with my suggestion. I went on-- + +"You know of me?" + +"Yes. All do, in Arthur's realms." + +"If my reputation has come to you right and straight, you should +not be afraid to speak." + +The woman broke in, eagerly: + +"Ah, fair my lord, do thou persuade him! Thou canst an thou wilt. +Ah, he suffereth so; and it is for me--for _me_! And how can I bear it? +I would I might see him die--a sweet, swift death; oh, my Hugo, +I cannot bear this one!" + +And she fell to sobbing and grovelling about my feet, and still +imploring. Imploring what? The man's death? I could not quite +get the bearings of the thing. But Hugo interrupted her and said: + +"Peace! Ye wit not what ye ask. Shall I starve whom I love, +to win a gentle death? I wend thou knewest me better." + +"Well," I said, "I can't quite make this out. It is a puzzle. Now--" + +"Ah, dear my lord, an ye will but persuade him! Consider how +these his tortures wound me! Oh, and he will not speak!--whereas, +the healing, the solace that lie in a blessed swift death--" + +"What _are_ you maundering about? He's going out from here a free +man and whole--he's not going to die." + +The man's white face lit up, and the woman flung herself at me +in a most surprising explosion of joy, and cried out: + +"He is saved!--for it is the king's word by the mouth of the king's +servant--Arthur, the king whose word is gold!" + +"Well, then you do believe I can be trusted, after all. Why +didn't you before?" + +"Who doubted? Not I, indeed; and not she." + +"Well, why wouldn't you tell me your story, then?" + +"Ye had made no promise; else had it been otherwise." + +"I see, I see.... And yet I believe I don't quite see, after all. +You stood the torture and refused to confess; which shows plain +enough to even the dullest understanding that you had nothing +to confess--" + +"I, my lord? How so? It was I that killed the deer!" + +"You _did_? Oh, dear, this is the most mixed-up business that ever--" + +"Dear lord, I begged him on my knees to confess, but--" + +"You _did_! It gets thicker and thicker. What did you want him +to do that for?" + +"Sith it would bring him a quick death and save him all this +cruel pain." + +"Well--yes, there is reason in that. But _he_ didn't want the +quick death." + +"He? Why, of a surety he _did_." + +"Well, then, why in the world _didn't_ he confess?" + +"Ah, sweet sir, and leave my wife and chick without bread and shelter?" + +"Oh, heart of gold, now I see it! The bitter law takes the convicted +man's estate and beggars his widow and his orphans. They could +torture you to death, but without conviction or confession they +could not rob your wife and baby. You stood by them like a man; +and _you_--true wife and the woman that you are--you would have +bought him release from torture at cost to yourself of slow +starvation and death--well, it humbles a body to think what your +sex can do when it comes to self-sacrifice. I'll book you both +for my colony; you'll like it there; it's a Factory where I'm going +to turn groping and grubbing automata into _men_." + + + +CHAPTER XVIII + +IN THE QUEEN'S DUNGEONS + +Well, I arranged all that; and I had the man sent to his home. +I had a great desire to rack the executioner; not because he was +a good, painstaking and paingiving official,--for surely it was +not to his discredit that he performed his functions well--but to +pay him back for wantonly cuffing and otherwise distressing that +young woman. The priests told me about this, and were generously +hot to have him punished. Something of this disagreeable sort +was turning up every now and then. I mean, episodes that showed +that not all priests were frauds and self-seekers, but that many, +even the great majority, of these that were down on the ground +among the common people, were sincere and right-hearted, and +devoted to the alleviation of human troubles and sufferings. +Well, it was a thing which could not be helped, so I seldom fretted +about it, and never many minutes at a time; it has never been my +way to bother much about things which you can't cure. But I did +not like it, for it was just the sort of thing to keep people +reconciled to an Established Church. We _must_ have a religion +--it goes without saying--but my idea is, to have it cut up into +forty free sects, so that they will police each other, as had been +the case in the United States in my time. Concentration of power +in a political machine is bad; and an Established Church is +only a political machine; it was invented for that; it is nursed, +cradled, preserved for that; it is an enemy to human liberty, and +does no good which it could not better do in a split-up and scattered +condition. That wasn't law; it wasn't gospel: it was only +an opinion--my opinion, and I was only a man, one man: so it wasn't +worth any more than the pope's--or any less, for that matter. + +Well, I couldn't rack the executioner, neither would I overlook +the just complaint of the priests. The man must be punished +somehow or other, so I degraded him from his office and made him +leader of the band--the new one that was to be started. He begged +hard, and said he couldn't play--a plausible excuse, but too thin; +there wasn't a musician in the country that could. + +The queen was a good deal outraged, next morning when she found +she was going to have neither Hugo's life nor his property. But +I told her she must bear this cross; that while by law and custom +she certainly was entitled to both the man's life and his property, +there were extenuating circumstances, and so in Arthur the king's +name I had pardoned him. The deer was ravaging the man's fields, +and he had killed it in sudden passion, and not for gain; and he +had carried it into the royal forest in the hope that that might make +detection of the misdoer impossible. Confound her, I couldn't +make her see that sudden passion is an extenuating circumstance +in the killing of venison--or of a person--so I gave it up and let +her sulk it out. I _did_ think I was going to make her see it by +remarking that her own sudden passion in the case of the page +modified that crime. + +"Crime!" she exclaimed. "How thou talkest! Crime, forsooth! +Man, I am going to _pay_ for him!" + +Oh, it was no use to waste sense on her. Training--training is +everything; training is all there is _to_ a person. We speak of +nature; it is folly; there is no such thing as nature; what we +call by that misleading name is merely heredity and training. +We have no thoughts of our own, no opinions of our own; they are +transmitted to us, trained into us. All that is original in us, +and therefore fairly creditable or discreditable to us, can be +covered up and hidden by the point of a cambric needle, all the +rest being atoms contributed by, and inherited from, a procession +of ancestors that stretches back a billion years to the Adam-clam +or grasshopper or monkey from whom our race has been so tediously +and ostentatiously and unprofitably developed. And as for me, +all that I think about in this plodding sad pilgrimage, this +pathetic drift between the eternities, is to look out and humbly +live a pure and high and blameless life, and save that one +microscopic atom in me that is truly _me_: the rest may land in +Sheol and welcome for all I care. + +No, confound her, her intellect was good, she had brains enough, +but her training made her an ass--that is, from a many-centuries-later +point of view. To kill the page was no crime--it was her right; +and upon her right she stood, serenely and unconscious of offense. +She was a result of generations of training in the unexamined and +unassailed belief that the law which permitted her to kill a subject +when she chose was a perfectly right and righteous one. + +Well, we must give even Satan his due. She deserved a compliment +for one thing; and I tried to pay it, but the words stuck in my +throat. She had a right to kill the boy, but she was in no wise +obliged to pay for him. That was law for some other people, but +not for her. She knew quite well that she was doing a large and +generous thing to pay for that lad, and that I ought in common +fairness to come out with something handsome about it, but I +couldn't--my mouth refused. I couldn't help seeing, in my fancy, +that poor old grandma with the broken heart, and that fair young +creature lying butchered, his little silken pomps and vanities +laced with his golden blood. How could she _pay_ for him! _Whom_ +could she pay? And so, well knowing that this woman, trained +as she had been, deserved praise, even adulation, I was yet not +able to utter it, trained as I had been. The best I could do was +to fish up a compliment from outside, so to speak--and the pity +of it was, that it was true: + +"Madame, your people will adore you for this." + +Quite true, but I meant to hang her for it some day if I lived. +Some of those laws were too bad, altogether too bad. A master +might kill his slave for nothing--for mere spite, malice, or +to pass the time--just as we have seen that the crowned head could +do it with _his_ slave, that is to say, anybody. A gentleman could +kill a free commoner, and pay for him--cash or garden-truck. +A noble could kill a noble without expense, as far as the law was +concerned, but reprisals in kind were to be expected. _Any_body +could kill _some_body, except the commoner and the slave; these had +no privileges. If they killed, it was murder, and the law wouldn't +stand murder. It made short work of the experimenter--and of +his family, too, if he murdered somebody who belonged up among +the ornamental ranks. If a commoner gave a noble even so much +as a Damiens-scratch which didn't kill or even hurt, he got Damiens' +dose for it just the same; they pulled him to rags and tatters +with horses, and all the world came to see the show, and crack +jokes, and have a good time; and some of the performances of the +best people present were as tough, and as properly unprintable, +as any that have been printed by the pleasant Casanova in his +chapter about the dismemberment of Louis XV's poor awkward enemy. + +I had had enough of this grisly place by this time, and wanted +to leave, but I couldn't, because I had something on my mind that +my conscience kept prodding me about, and wouldn't let me forget. +If I had the remaking of man, he wouldn't have any conscience. +It is one of the most disagreeable things connected with a person; +and although it certainly does a great deal of good, it cannot +be said to pay, in the long run; it would be much better to have +less good and more comfort. Still, this is only my opinion, and +I am only one man; others, with less experience, may think +differently. They have a right to their view. I only stand +to this: I have noticed my conscience for many years, and I know +it is more trouble and bother to me than anything else I started +with. I suppose that in the beginning I prized it, because we +prize anything that is ours; and yet how foolish it was to think so. +If we look at it in another way, we see how absurd it is: if I had +an anvil in me would I prize it? Of course not. And yet when you +come to think, there is no real difference between a conscience +and an anvil--I mean for comfort. I have noticed it a thousand +times. And you could dissolve an anvil with acids, when you +couldn't stand it any longer; but there isn't any way that you can +work off a conscience--at least so it will stay worked off; not +that I know of, anyway. + +There was something I wanted to do before leaving, but it was +a disagreeable matter, and I hated to go at it. Well, it bothered +me all the morning. I could have mentioned it to the old king, +but what would be the use?--he was but an extinct volcano; he had +been active in his time, but his fire was out, this good while, +he was only a stately ash-pile now; gentle enough, and kindly +enough for my purpose, without doubt, but not usable. He was +nothing, this so-called king: the queen was the only power there. +And she was a Vesuvius. As a favor, she might consent to warm +a flock of sparrows for you, but then she might take that very +opportunity to turn herself loose and bury a city. However, +I reflected that as often as any other way, when you are expecting +the worst, you get something that is not so bad, after all. + +So I braced up and placed my matter before her royal Highness. +I said I had been having a general jail-delivery at Camelot and +among neighboring castles, and with her permission I would like +to examine her collection, her bric-a-brac--that is to say, her +prisoners. She resisted; but I was expecting that. But she finally +consented. I was expecting that, too, but not so soon. That about +ended my discomfort. She called her guards and torches, and +we went down into the dungeons. These were down under the castle's +foundations, and mainly were small cells hollowed out of the living +rock. Some of these cells had no light at all. In one of them was +a woman, in foul rags, who sat on the ground, and would not answer +a question or speak a word, but only looked up at us once or twice, +through a cobweb of tangled hair, as if to see what casual thing +it might be that was disturbing with sound and light the meaningless +dull dream that was become her life; after that, she sat bowed, +with her dirt-caked fingers idly interlocked in her lap, and gave +no further sign. This poor rack of bones was a woman of middle +age, apparently; but only apparently; she had been there nine +years, and was eighteen when she entered. She was a commoner, +and had been sent here on her bridal night by Sir Breuse Sance Pite, +a neighboring lord whose vassal her father was, and to which said +lord she had refused what has since been called le droit du +seigneur, and, moreover, had opposed violence to violence and spilt +half a gill of his almost sacred blood. The young husband had +interfered at that point, believing the bride's life in danger, +and had flung the noble out into the midst of the humble and +trembling wedding guests, in the parlor, and left him there +astonished at this strange treatment, and implacably embittered +against both bride and groom. The said lord being cramped for +dungeon-room had asked the queen to accommodate his two criminals, +and here in her bastile they had been ever since; hither, indeed, +they had come before their crime was an hour old, and had never +seen each other since. Here they were, kenneled like toads in the +same rock; they had passed nine pitch dark years within fifty feet +of each other, yet neither knew whether the other was alive or not. +All the first years, their only question had been--asked with +beseechings and tears that might have moved stones, in time, +perhaps, but hearts are not stones: "Is he alive?" "Is she alive?" +But they had never got an answer; and at last that question was +not asked any more--or any other. + +I wanted to see the man, after hearing all this. He was thirty-four +years old, and looked sixty. He sat upon a squared block of +stone, with his head bent down, his forearms resting on his knees, +his long hair hanging like a fringe before his face, and he was +muttering to himself. He raised his chin and looked us slowly +over, in a listless dull way, blinking with the distress of the +torchlight, then dropped his head and fell to muttering again +and took no further notice of us. There were some pathetically +suggestive dumb witnesses present. On his wrists and ankles were +cicatrices, old smooth scars, and fastened to the stone on which +he sat was a chain with manacles and fetters attached; but this +apparatus lay idle on the ground, and was thick with rust. Chains +cease to be needed after the spirit has gone out of a prisoner. + +I could not rouse the man; so I said we would take him to her, +and see--to the bride who was the fairest thing in the earth to him, +once--roses, pearls, and dew made flesh, for him; a wonder-work, +the master-work of nature: with eyes like no other eyes, and voice +like no other voice, and a freshness, and lithe young grace, and +beauty, that belonged properly to the creatures of dreams--as he +thought--and to no other. The sight of her would set his stagnant +blood leaping; the sight of her-- + +But it was a disappointment. They sat together on the ground and +looked dimly wondering into each other's faces a while, with a +sort of weak animal curiosity; then forgot each other's presence, +and dropped their eyes, and you saw that they were away again and +wandering in some far land of dreams and shadows that we know +nothing about. + +I had them taken out and sent to their friends. The queen did not +like it much. Not that she felt any personal interest in the matter, +but she thought it disrespectful to Sir Breuse Sance Pite. However, +I assured her that if he found he couldn't stand it I would fix him +so that he could. + +I set forty-seven prisoners loose out of those awful rat-holes, +and left only one in captivity. He was a lord, and had killed +another lord, a sort of kinsman of the queen. That other lord +had ambushed him to assassinate him, but this fellow had got the +best of him and cut his throat. However, it was not for that that +I left him jailed, but for maliciously destroying the only public +well in one of his wretched villages. The queen was bound to hang +him for killing her kinsman, but I would not allow it: it was no +crime to kill an assassin. But I said I was willing to let her +hang him for destroying the well; so she concluded to put up with +that, as it was better than nothing. + +Dear me, for what trifling offenses the most of those forty-seven +men and women were shut up there! Indeed, some were there for +no distinct offense at all, but only to gratify somebody's spite; +and not always the queen's by any means, but a friend's. The newest +prisoner's crime was a mere remark which he had made. He said +he believed that men were about all alike, and one man as good +as another, barring clothes. He said he believed that if you were +to strip the nation naked and send a stranger through the crowd, he +couldn't tell the king from a quack doctor, nor a duke from a hotel +clerk. Apparently here was a man whose brains had not been reduced +to an ineffectual mush by idiotic training. I set him loose and +sent him to the Factory. + +Some of the cells carved in the living rock were just behind the +face of the precipice, and in each of these an arrow-slit had been +pierced outward to the daylight, and so the captive had a thin +ray from the blessed sun for his comfort. The case of one of +these poor fellows was particularly hard. From his dusky swallow's +hole high up in that vast wall of native rock he could peer out +through the arrow-slit and see his own home off yonder in the +valley; and for twenty-two years he had watched it, with heartache +and longing, through that crack. He could see the lights shine +there at night, and in the daytime he could see figures go in and +come out--his wife and children, some of them, no doubt, though +he could not make out at that distance. In the course of years +he noted festivities there, and tried to rejoice, and wondered +if they were weddings or what they might be. And he noted funerals; +and they wrung his heart. He could make out the coffin, but he +could not determine its size, and so could not tell whether it was +wife or child. He could see the procession form, with priests +and mourners, and move solemnly away, bearing the secret with +them. He had left behind him five children and a wife; and in +nineteen years he had seen five funerals issue, and none of them +humble enough in pomp to denote a servant. So he had lost five +of his treasures; there must still be one remaining--one now +infinitely, unspeakably precious,--but _which_ one? wife, or child? +That was the question that tortured him, by night and by day, +asleep and awake. Well, to have an interest, of some sort, and +half a ray of light, when you are in a dungeon, is a great support +to the body and preserver of the intellect. This man was in pretty +good condition yet. By the time he had finished telling me his +distressful tale, I was in the same state of mind that you would +have been in yourself, if you have got average human curiosity; +that is to say, I was as burning up as he was to find out which +member of the family it was that was left. So I took him over +home myself; and an amazing kind of a surprise party it was, too +--typhoons and cyclones of frantic joy, and whole Niagaras of happy +tears; and by George! we found the aforetime young matron graying +toward the imminent verge of her half century, and the babies all +men and women, and some of them married and experimenting familywise +themselves--for not a soul of the tribe was dead! Conceive of the +ingenious devilishness of that queen: she had a special hatred for +this prisoner, and she had _invented_ all those funerals herself, +to scorch his heart with; and the sublimest stroke of genius of +the whole thing was leaving the family-invoice a funeral _short_, +so as to let him wear his poor old soul out guessing. + +But for me, he never would have got out. Morgan le Fay hated him +with her whole heart, and she never would have softened toward him. +And yet his crime was committed more in thoughtlessness than +deliberate depravity. He had said she had red hair. Well, she +had; but that was no way to speak of it. When red-headed people +are above a certain social grade their hair is auburn. + +Consider it: among these forty-seven captives there were five +whose names, offenses, and dates of incarceration were no longer +known! One woman and four men--all bent, and wrinkled, and +mind-extinguished patriarchs. They themselves had long ago forgotten +these details; at any rate they had mere vague theories about them, +nothing definite and nothing that they repeated twice in the same +way. The succession of priests whose office it had been to pray +daily with the captives and remind them that God had put them +there, for some wise purpose or other, and teach them that patience, +humbleness, and submission to oppression was what He loved to see +in parties of a subordinate rank, had traditions about these poor +old human ruins, but nothing more. These traditions went but +little way, for they concerned the length of the incarceration only, +and not the names of the offenses. And even by the help of +tradition the only thing that could be proven was that none of +the five had seen daylight for thirty-five years: how much longer +this privation has lasted was not guessable. The king and the queen +knew nothing about these poor creatures, except that they were +heirlooms, assets inherited, along with the throne, from the former +firm. Nothing of their history had been transmitted with their +persons, and so the inheriting owners had considered them of no +value, and had felt no interest in them. I said to the queen: + +"Then why in the world didn't you set them free?" + +The question was a puzzler. She didn't know _why_ she hadn't, the +thing had never come up in her mind. So here she was, forecasting +the veritable history of future prisoners of the Castle d'If, +without knowing it. It seemed plain to me now, that with her +training, those inherited prisoners were merely property--nothing +more, nothing less. Well, when we inherit property, it does not +occur to us to throw it away, even when we do not value it. + +When I brought my procession of human bats up into the open world +and the glare of the afternoon sun--previously blindfolding them, +in charity for eyes so long untortured by light--they were a +spectacle to look at. Skeletons, scarecrows, goblins, pathetic +frights, every one; legitimatest possible children of Monarchy +by the Grace of God and the Established Church. I muttered absently: + +"I _wish_ I could photograph them!" + +You have seen that kind of people who will never let on that they +don't know the meaning of a new big word. The more ignorant they +are, the more pitifully certain they are to pretend you haven't +shot over their heads. The queen was just one of that sort, and +was always making the stupidest blunders by reason of it. She +hesitated a moment; then her face brightened up with sudden +comprehension, and she said she would do it for me. + +I thought to myself: She? why what can she know about photography? +But it was a poor time to be thinking. When I looked around, she +was moving on the procession with an axe! + +Well, she certainly was a curious one, was Morgan le Fay. I have +seen a good many kinds of women in my time, but she laid over them +all for variety. And how sharply characteristic of her this episode +was. She had no more idea than a horse of how to photograph +a procession; but being in doubt, it was just like her to try +to do it with an axe. + + + +CHAPTER XIX + +KNIGHT-ERRANTRY AS A TRADE + +Sandy and I were on the road again, next morning, bright and early. +It was so good to open up one's lungs and take in whole luscious +barrels-ful of the blessed God's untainted, dew-fashioned, +woodland-scented air once more, after suffocating body and mind for two +days and nights in the moral and physical stenches of that intolerable +old buzzard-roost! I mean, for me: of course the place was all +right and agreeable enough for Sandy, for she had been used to +high life all her days. + +Poor girl, her jaws had had a wearisome rest now for a while, +and I was expecting to get the consequences. I was right; but she +had stood by me most helpfully in the castle, and had mightily +supported and reinforced me with gigantic foolishnesses which were +worth more for the occasion than wisdoms double their size; so +I thought she had earned a right to work her mill for a while, +if she wanted to, and I felt not a pang when she started it up: + +"Now turn we unto Sir Marhaus that rode with the damsel of thirty +winter of age southward--" + +"Are you going to see if you can work up another half-stretch on +the trail of the cowboys, Sandy?" + +"Even so, fair my lord." + +"Go ahead, then. I won't interrupt this time, if I can help it. +Begin over again; start fair, and shake out all your reefs, and +I will load my pipe and give good attention." + +"Now turn we unto Sir Marhaus that rode with the damsel of thirty +winter of age southward. And so they came into a deep forest, +and by fortune they were nighted, and rode along in a deep way, +and at the last they came into a courtelage where abode the duke +of South Marches, and there they asked harbour. And on the morn +the duke sent unto Sir Marhaus, and bad him make him ready. And +so Sir Marhaus arose and armed him, and there was a mass sung +afore him, and he brake his fast, and so mounted on horseback in +the court of the castle, there they should do the battle. So there +was the duke already on horseback, clean armed, and his six sons +by him, and every each had a spear in his hand, and so they +encountered, whereas the duke and his two sons brake their spears +upon him, but Sir Marhaus held up his spear and touched none of +them. Then came the four sons by couples, and two of them brake +their spears, and so did the other two. And all this while +Sir Marhaus touched them not. Then Sir Marhaus ran to the duke, +and smote him with his spear that horse and man fell to the earth. +And so he served his sons. And then Sir Marhaus alight down, and +bad the duke yield him or else he would slay him. And then some +of his sons recovered, and would have set upon Sir Marhaus. Then +Sir Marhaus said to the duke, Cease thy sons, or else I will do +the uttermost to you all. When the duke saw he might not escape +the death, he cried to his sons, and charged them to yield them +to Sir Marhaus. And they kneeled all down and put the pommels +of their swords to the knight, and so he received them. And then +they holp up their father, and so by their common assent promised +unto Sir Marhaus never to be foes unto King Arthur, and thereupon +at Whitsuntide after, to come he and his sons, and put them in +the king's grace.* + +[*Footnote: The story is borrowed, language and all, from the +Morte d'Arthur.--M.T.] + +"Even so standeth the history, fair Sir Boss. Now ye shall wit +that that very duke and his six sons are they whom but few days +past you also did overcome and send to Arthur's court!" + +"Why, Sandy, you can't mean it!" + +"An I speak not sooth, let it be the worse for me." + +"Well, well, well,--now who would ever have thought it? One +whole duke and six dukelets; why, Sandy, it was an elegant haul. +Knight-errantry is a most chuckle-headed trade, and it is tedious +hard work, too, but I begin to see that there _is_ money in it, +after all, if you have luck. Not that I would ever engage in it +as a business, for I wouldn't. No sound and legitimate business +can be established on a basis of speculation. A successful whirl +in the knight-errantry line--now what is it when you blow away +the nonsense and come down to the cold facts? It's just a corner +in pork, that's all, and you can't make anything else out of it. +You're rich--yes,--suddenly rich--for about a day, maybe a week; +then somebody corners the market on _you_, and down goes your +bucket-shop; ain't that so, Sandy?" + +"Whethersoever it be that my mind miscarrieth, bewraying simple +language in such sort that the words do seem to come endlong +and overthwart--" + +"There's no use in beating about the bush and trying to get around +it that way, Sandy, it's _so_, just as I say. I _know_ it's so. And, +moreover, when you come right down to the bedrock, knight-errantry +is _worse_ than pork; for whatever happens, the pork's left, and +so somebody's benefited anyway; but when the market breaks, in a +knight-errantry whirl, and every knight in the pool passes in his +checks, what have you got for assets? Just a rubbish-pile of +battered corpses and a barrel or two of busted hardware. Can you +call _those_ assets? Give me pork, every time. Am I right?" + +"Ah, peradventure my head being distraught by the manifold matters +whereunto the confusions of these but late adventured haps and +fortunings whereby not I alone nor you alone, but every each of us, +meseemeth--" + +"No, it's not your head, Sandy. Your head's all right, as far as +it goes, but you don't know business; that's where the trouble +is. It unfits you to argue about business, and you're wrong +to be always trying. However, that aside, it was a good haul, +anyway, and will breed a handsome crop of reputation in Arthur's +court. And speaking of the cowboys, what a curious country this +is for women and men that never get old. Now there's Morgan le Fay, +as fresh and young as a Vassar pullet, to all appearances, and +here is this old duke of the South Marches still slashing away with +sword and lance at his time of life, after raising such a family +as he has raised. As I understand it, Sir Gawaine killed seven +of his sons, and still he had six left for Sir Marhaus and me to +take into camp. And then there was that damsel of sixty winter +of age still excursioning around in her frosty bloom--How old +are you, Sandy?" + +It was the first time I ever struck a still place in her. The mill +had shut down for repairs, or something. + + + +CHAPTER XX + +THE OGRE'S CASTLE + +Between six and nine we made ten miles, which was plenty for a +horse carrying triple--man, woman, and armor; then we stopped +for a long nooning under some trees by a limpid brook. + +Right so came by and by a knight riding; and as he drew near he +made dolorous moan, and by the words of it I perceived that he +was cursing and swearing; yet nevertheless was I glad of his +coming, for that I saw he bore a bulletin-board whereon in letters +all of shining gold was writ: + + "USE PETERSON'S PROPHYLACTIC TOOTH-BRUSH--ALL THE GO." + +I was glad of his coming, for even by this token I knew him for +knight of mine. It was Sir Madok de la Montaine, a burly great +fellow whose chief distinction was that he had come within an ace +of sending Sir Launcelot down over his horse-tail once. He was +never long in a stranger's presence without finding some pretext +or other to let out that great fact. But there was another fact +of nearly the same size, which he never pushed upon anybody unasked, +and yet never withheld when asked: that was, that the reason he +didn't quite succeed was, that he was interrupted and sent down +over horse-tail himself. This innocent vast lubber did not see +any particular difference between the two facts. I liked him, +for he was earnest in his work, and very valuable. And he was so +fine to look at, with his broad mailed shoulders, and the grand +leonine set of his plumed head, and his big shield with its quaint +device of a gauntleted hand clutching a prophylactic tooth-brush, +with motto: "Try Noyoudont." This was a tooth-wash that I was +introducing. + +He was aweary, he said, and indeed he looked it; but he would not +alight. He said he was after the stove-polish man; and with this +he broke out cursing and swearing anew. The bulletin-boarder +referred to was Sir Ossaise of Surluse, a brave knight, and of +considerable celebrity on account of his having tried conclusions +in a tournament once, with no less a Mogul than Sir Gaheris +himself--although not successfully. He was of a light and laughing +disposition, and to him nothing in this world was serious. It was +for this reason that I had chosen him to work up a stove-polish +sentiment. There were no stoves yet, and so there could be nothing +serious about stove-polish. All that the agent needed to do was +to deftly and by degrees prepare the public for the great change, +and have them established in predilections toward neatness against +the time when the stove should appear upon the stage. + +Sir Madok was very bitter, and brake out anew with cursings. He +said he had cursed his soul to rags; and yet he would not get down +from his horse, neither would he take any rest, or listen to any +comfort, until he should have found Sir Ossaise and settled this +account. It appeared, by what I could piece together of the +unprofane fragments of his statement, that he had chanced upon +Sir Ossaise at dawn of the morning, and been told that if he would +make a short cut across the fields and swamps and broken hills and +glades, he could head off a company of travelers who would be rare +customers for prophylactics and tooth-wash. With characteristic +zeal Sir Madok had plunged away at once upon this quest, and after +three hours of awful crosslot riding had overhauled his game. And +behold, it was the five patriarchs that had been released from the +dungeons the evening before! Poor old creatures, it was all of +twenty years since any one of them had known what it was to be +equipped with any remaining snag or remnant of a tooth. + +"Blank-blank-blank him," said Sir Madok, "an I do not stove-polish +him an I may find him, leave it to me; for never no knight that +hight Ossaise or aught else may do me this disservice and bide +on live, an I may find him, the which I have thereunto sworn a +great oath this day." + +And with these words and others, he lightly took his spear and +gat him thence. In the middle of the afternoon we came upon one +of those very patriarchs ourselves, in the edge of a poor village. +He was basking in the love of relatives and friends whom he had not +seen for fifty years; and about him and caressing him were also +descendants of his own body whom he had never seen at all till now; +but to him these were all strangers, his memory was gone, his mind +was stagnant. It seemed incredible that a man could outlast half +a century shut up in a dark hole like a rat, but here were his old +wife and some old comrades to testify to it. They could remember +him as he was in the freshness and strength of his young manhood, +when he kissed his child and delivered it to its mother's hands +and went away into that long oblivion. The people at the castle +could not tell within half a generation the length of time the man +had been shut up there for his unrecorded and forgotten offense; +but this old wife knew; and so did her old child, who stood there +among her married sons and daughters trying to realize a father +who had been to her a name, a thought, a formless image, a tradition, +all her life, and now was suddenly concreted into actual flesh +and blood and set before her face. + +It was a curious situation; yet it is not on that account that +I have made room for it here, but on account of a thing which +seemed to me still more curious. To wit, that this dreadful matter +brought from these downtrodden people no outburst of rage against +these oppressors. They had been heritors and subjects of cruelty +and outrage so long that nothing could have startled them but +a kindness. Yes, here was a curious revelation, indeed, of the +depth to which this people had been sunk in slavery. Their entire +being was reduced to a monotonous dead level of patience, resignation, +dumb uncomplaining acceptance of whatever might befall them in +this life. Their very imagination was dead. When you can say +that of a man, he has struck bottom, I reckon; there is no lower +deep for him. + +I rather wished I had gone some other road. This was not the sort +of experience for a statesman to encounter who was planning out +a peaceful revolution in his mind. For it could not help bringing +up the unget-aroundable fact that, all gentle cant and philosophizing +to the contrary notwithstanding, no people in the world ever did +achieve their freedom by goody-goody talk and moral suasion: +it being immutable law that all revolutions that will succeed must +_begin_ in blood, whatever may answer afterward. If history teaches +anything, it teaches that. What this folk needed, then, was a +Reign of Terror and a guillotine, and I was the wrong man for them. + +Two days later, toward noon, Sandy began to show signs of excitement +and feverish expectancy. She said we were approaching the ogre's +castle. I was surprised into an uncomfortable shock. The object +of our quest had gradually dropped out of my mind; this sudden +resurrection of it made it seem quite a real and startling thing +for a moment, and roused up in me a smart interest. Sandy's +excitement increased every moment; and so did mine, for that sort +of thing is catching. My heart got to thumping. You can't reason +with your heart; it has its own laws, and thumps about things which +the intellect scorns. Presently, when Sandy slid from the horse, +motioned me to stop, and went creeping stealthily, with her head +bent nearly to her knees, toward a row of bushes that bordered +a declivity, the thumpings grew stronger and quicker. And they +kept it up while she was gaining her ambush and getting her glimpse +over the declivity; and also while I was creeping to her side on +my knees. Her eyes were burning now, as she pointed with her +finger, and said in a panting whisper: + +"The castle! The castle! Lo, where it looms!" + +What a welcome disappointment I experienced! I said: + +"Castle? It is nothing but a pigsty; a pigsty with a wattled +fence around it." + +She looked surprised and distressed. The animation faded out of +her face; and during many moments she was lost in thought and +silent. Then: + +"It was not enchanted aforetime," she said in a musing fashion, +as if to herself. "And how strange is this marvel, and how awful +--that to the one perception it is enchanted and dight in a base +and shameful aspect; yet to the perception of the other it is not +enchanted, hath suffered no change, but stands firm and stately +still, girt with its moat and waving its banners in the blue air +from its towers. And God shield us, how it pricks the heart to +see again these gracious captives, and the sorrow deepened in their +sweet faces! We have tarried along, and are to blame." + +I saw my cue. The castle was enchanted to _me_, not to her. It would +be wasted time to try to argue her out of her delusion, it couldn't +be done; I must just humor it. So I said: + +"This is a common case--the enchanting of a thing to one eye and +leaving it in its proper form to another. You have heard of it +before, Sandy, though you haven't happened to experience it. +But no harm is done. In fact, it is lucky the way it is. If these +ladies were hogs to everybody and to themselves, it would be +necessary to break the enchantment, and that might be impossible +if one failed to find out the particular process of the enchantment. +And hazardous, too; for in attempting a disenchantment without the +true key, you are liable to err, and turn your hogs into dogs, +and the dogs into cats, the cats into rats, and so on, and end by +reducing your materials to nothing finally, or to an odorless gas +which you can't follow--which, of course, amounts to the same +thing. But here, by good luck, no one's eyes but mine are under +the enchantment, and so it is of no consequence to dissolve it. +These ladies remain ladies to you, and to themselves, and to +everybody else; and at the same time they will suffer in no way +from my delusion, for when I know that an ostensible hog is a +lady, that is enough for me, I know how to treat her." + +"Thanks, oh, sweet my lord, thou talkest like an angel. And I know +that thou wilt deliver them, for that thou art minded to great +deeds and art as strong a knight of your hands and as brave to will +and to do, as any that is on live." + +"I will not leave a princess in the sty, Sandy. Are those three +yonder that to my disordered eyes are starveling swine-herds--" + +"The ogres, Are _they_ changed also? It is most wonderful. Now +am I fearful; for how canst thou strike with sure aim when five of +their nine cubits of stature are to thee invisible? Ah, go warily, +fair sir; this is a mightier emprise than I wend." + +"You be easy, Sandy. All I need to know is, how _much_ of an ogre +is invisible; then I know how to locate his vitals. Don't you be +afraid, I will make short work of these bunco-steerers. Stay +where you are." + +I left Sandy kneeling there, corpse-faced but plucky and hopeful, +and rode down to the pigsty, and struck up a trade with the +swine-herds. I won their gratitude by buying out all the hogs +at the lump sum of sixteen pennies, which was rather above latest +quotations. I was just in time; for the Church, the lord of the +manor, and the rest of the tax-gatherers would have been along +next day and swept off pretty much all the stock, leaving the +swine-herds very short of hogs and Sandy out of princesses. But +now the tax people could be paid in cash, and there would be +a stake left besides. One of the men had ten children; and he +said that last year when a priest came and of his ten pigs took +the fattest one for tithes, the wife burst out upon him, and offered +him a child and said: + +"Thou beast without bowels of mercy, why leave me my child, yet +rob me of the wherewithal to feed it?" + +How curious. The same thing had happened in the Wales of my day, +under this same old Established Church, which was supposed by many +to have changed its nature when it changed its disguise. + +I sent the three men away, and then opened the sty gate and beckoned +Sandy to come--which she did; and not leisurely, but with the rush +of a prairie fire. And when I saw her fling herself upon those +hogs, with tears of joy running down her cheeks, and strain them +to her heart, and kiss them, and caress them, and call them +reverently by grand princely names, I was ashamed of her, ashamed +of the human race. + +We had to drive those hogs home--ten miles; and no ladies were +ever more fickle-minded or contrary. They would stay in no road, +no path; they broke out through the brush on all sides, and flowed +away in all directions, over rocks, and hills, and the roughest +places they could find. And they must not be struck, or roughly +accosted; Sandy could not bear to see them treated in ways unbecoming +their rank. The troublesomest old sow of the lot had to be called +my Lady, and your Highness, like the rest. It is annoying and +difficult to scour around after hogs, in armor. There was one +small countess, with an iron ring in her snout and hardly any hair +on her back, that was the devil for perversity. She gave me a race +of an hour, over all sorts of country, and then we were right where +we had started from, having made not a rod of real progress. +I seized her at last by the tail, and brought her along squealing. +When I overtook Sandy she was horrified, and said it was in the +last degree indelicate to drag a countess by her train. + +We got the hogs home just at dark--most of them. The princess +Nerovens de Morganore was missing, and two of her ladies in waiting: +namely, Miss Angela Bohun, and the Demoiselle Elaine Courtemains, +the former of these two being a young black sow with a white star +in her forehead, and the latter a brown one with thin legs and a +slight limp in the forward shank on the starboard side--a couple +of the tryingest blisters to drive that I ever saw. Also among +the missing were several mere baronesses--and I wanted them to +stay missing; but no, all that sausage-meat had to be found; so +servants were sent out with torches to scour the woods and hills +to that end. + +Of course, the whole drove was housed in the house, and, great +guns!--well, I never saw anything like it. Nor ever heard anything +like it. And never smelt anything like it. It was like an +insurrection in a gasometer. + + + +CHAPTER XXI + +THE PILGRIMS + +When I did get to bed at last I was unspeakably tired; the stretching +out, and the relaxing of the long-tense muscles, how luxurious, +how delicious! but that was as far as I could get--sleep was out of +the question for the present. The ripping and tearing and squealing +of the nobility up and down the halls and corridors was pandemonium +come again, and kept me broad awake. Being awake, my thoughts +were busy, of course; and mainly they busied themselves with Sandy's +curious delusion. Here she was, as sane a person as the kingdom +could produce; and yet, from my point of view she was acting like +a crazy woman. My land, the power of training! of influence! +of education! It can bring a body up to believe anything. I had +to put myself in Sandy's place to realize that she was not a +lunatic. Yes, and put her in mine, to demonstrate how easy it is +to seem a lunatic to a person who has not been taught as you have +been taught. If I had told Sandy I had seen a wagon, uninfluenced +by enchantment, spin along fifty miles an hour; had seen a man, +unequipped with magic powers, get into a basket and soar out of +sight among the clouds; and had listened, without any necromancer's +help, to the conversation of a person who was several hundred miles +away, Sandy would not merely have supposed me to be crazy, she +would have thought she knew it. Everybody around her believed in +enchantments; nobody had any doubts; to doubt that a castle could +be turned into a sty, and its occupants into hogs, would have been +the same as my doubting among Connecticut people the actuality +of the telephone and its wonders,--and in both cases would be +absolute proof of a diseased mind, an unsettled reason. Yes, Sandy +was sane; that must be admitted. If I also would be sane--to Sandy +--I must keep my superstitions about unenchanted and unmiraculous +locomotives, balloons, and telephones, to myself. Also, I believed +that the world was not flat, and hadn't pillars under it to support +it, nor a canopy over it to turn off a universe of water that +occupied all space above; but as I was the only person in the kingdom +afflicted with such impious and criminal opinions, I recognized +that it would be good wisdom to keep quiet about this matter, too, +if I did not wish to be suddenly shunned and forsaken by everybody +as a madman. + +The next morning Sandy assembled the swine in the dining-room and +gave them their breakfast, waiting upon them personally and +manifesting in every way the deep reverence which the natives of +her island, ancient and modern, have always felt for rank, let its +outward casket and the mental and moral contents be what they may. +I could have eaten with the hogs if I had had birth approaching my +lofty official rank; but I hadn't, and so accepted the unavoidable +slight and made no complaint. Sandy and I had our breakfast at +the second table. The family were not at home. I said: + +"How many are in the family, Sandy, and where do they keep themselves?" + +"Family?" + +"Yes." + +"Which family, good my lord?" + +"Why, this family; your own family." + +"Sooth to say, I understand you not. I have no family." + +"No family? Why, Sandy, isn't this your home?" + +"Now how indeed might that be? I have no home." + +"Well, then, whose house is this?" + +"Ah, wit you well I would tell you an I knew myself." + +"Come--you don't even know these people? Then who invited us here?" + +"None invited us. We but came; that is all." + +"Why, woman, this is a most extraordinary performance. The +effrontery of it is beyond admiration. We blandly march into +a man's house, and cram it full of the only really valuable nobility +the sun has yet discovered in the earth, and then it turns out +that we don't even know the man's name. How did you ever venture +to take this extravagant liberty? I supposed, of course, it was +your home. What will the man say?" + +"What will he say? Forsooth what can he say but give thanks?" + +"Thanks for what?" + +Her face was filled with a puzzled surprise: + +"Verily, thou troublest mine understanding with strange words. +Do ye dream that one of his estate is like to have the honor twice +in his life to entertain company such as we have brought to grace +his house withal?" + +"Well, no--when you come to that. No, it's an even bet that this +is the first time he has had a treat like this." + +"Then let him be thankful, and manifest the same by grateful speech +and due humility; he were a dog, else, and the heir and ancestor +of dogs." + +To my mind, the situation was uncomfortable. It might become more so. +It might be a good idea to muster the hogs and move on. So I said: + +"The day is wasting, Sandy. It is time to get the nobility together +and be moving." + +"Wherefore, fair sir and Boss?" + +"We want to take them to their home, don't we?" + +"La, but list to him! They be of all the regions of the earth! +Each must hie to her own home; wend you we might do all these +journeys in one so brief life as He hath appointed that created +life, and thereto death likewise with help of Adam, who by sin +done through persuasion of his helpmeet, she being wrought upon +and bewrayed by the beguilements of the great enemy of man, that +serpent hight Satan, aforetime consecrated and set apart unto that +evil work by overmastering spite and envy begotten in his heart +through fell ambitions that did blight and mildew a nature erst +so white and pure whenso it hove with the shining multitudes +its brethren-born in glade and shade of that fair heaven wherein +all such as native be to that rich estate and--" + +"Great Scott!" + +"My lord?" + +"Well, you know we haven't got time for this sort of thing. Don't +you see, we could distribute these people around the earth in less +time than it is going to take you to explain that we can't. We +mustn't talk now, we must act. You want to be careful; you mustn't +let your mill get the start of you that way, at a time like this. +To business now--and sharp's the word. Who is to take the +aristocracy home?" + +"Even their friends. These will come for them from the far parts +of the earth." + +This was lightning from a clear sky, for unexpectedness; and the +relief of it was like pardon to a prisoner. She would remain to +deliver the goods, of course. + +"Well, then, Sandy, as our enterprise is handsomely and successfully +ended, I will go home and report; and if ever another one--" + +"I also am ready; I will go with thee." + +This was recalling the pardon. + +"How? You will go with me? Why should you?" + +"Will I be traitor to my knight, dost think? That were dishonor. +I may not part from thee until in knightly encounter in the field +some overmatching champion shall fairly win and fairly wear me. +I were to blame an I thought that that might ever hap." + +"Elected for the long term," I sighed to myself. "I may as well +make the best of it." So then I spoke up and said: + +"All right; let us make a start." + +While she was gone to cry her farewells over the pork, I gave that +whole peerage away to the servants. And I asked them to take +a duster and dust around a little where the nobilities had mainly +lodged and promenaded; but they considered that that would be +hardly worth while, and would moreover be a rather grave departure +from custom, and therefore likely to make talk. A departure from +custom--that settled it; it was a nation capable of committing any +crime but that. The servants said they would follow the fashion, +a fashion grown sacred through immemorial observance; they would +scatter fresh rushes in all the rooms and halls, and then the +evidence of the aristocratic visitation would be no longer visible. +It was a kind of satire on Nature: it was the scientific method, +the geologic method; it deposited the history of the family in +a stratified record; and the antiquary could dig through it and +tell by the remains of each period what changes of diet the family +had introduced successively for a hundred years. + +The first thing we struck that day was a procession of pilgrims. +It was not going our way, but we joined it, nevertheless; for it +was hourly being borne in upon me now, that if I would govern +this country wisely, I must be posted in the details of its life, +and not at second hand, but by personal observation and scrutiny. + +This company of pilgrims resembled Chaucer's in this: that it +had in it a sample of about all the upper occupations and professions +the country could show, and a corresponding variety of costume. +There were young men and old men, young women and old women, +lively folk and grave folk. They rode upon mules and horses, and +there was not a side-saddle in the party; for this specialty was +to remain unknown in England for nine hundred years yet. + +It was a pleasant, friendly, sociable herd; pious, happy, merry and +full of unconscious coarsenesses and innocent indecencies. What +they regarded as the merry tale went the continual round and caused +no more embarrassment than it would have caused in the best English +society twelve centuries later. Practical jokes worthy of the +English wits of the first quarter of the far-off nineteenth century +were sprung here and there and yonder along the line, and compelled +the delightedest applause; and sometimes when a bright remark was +made at one end of the procession and started on its travels toward +the other, you could note its progress all the way by the sparkling +spray of laughter it threw off from its bows as it plowed along; +and also by the blushes of the mules in its wake. + +Sandy knew the goal and purpose of this pilgrimage, and she posted +me. She said: + +"They journey to the Valley of Holiness, for to be blessed of the +godly hermits and drink of the miraculous waters and be cleansed +from sin." + +"Where is this watering place?" + +"It lieth a two-day journey hence, by the borders of the land that +hight the Cuckoo Kingdom." + +"Tell me about it. Is it a celebrated place?" + +"Oh, of a truth, yes. There be none more so. Of old time there +lived there an abbot and his monks. Belike were none in the world +more holy than these; for they gave themselves to study of pious +books, and spoke not the one to the other, or indeed to any, and +ate decayed herbs and naught thereto, and slept hard, and prayed +much, and washed never; also they wore the same garment until it +fell from their bodies through age and decay. Right so came they +to be known of all the world by reason of these holy austerities, +and visited by rich and poor, and reverenced." + +"Proceed." + +"But always there was lack of water there. Whereas, upon a time, +the holy abbot prayed, and for answer a great stream of clear +water burst forth by miracle in a desert place. Now were the +fickle monks tempted of the Fiend, and they wrought with their +abbot unceasingly by beggings and beseechings that he would construct +a bath; and when he was become aweary and might not resist more, +he said have ye your will, then, and granted that they asked. +Now mark thou what 'tis to forsake the ways of purity the which +He loveth, and wanton with such as be worldly and an offense. +These monks did enter into the bath and come thence washed as +white as snow; and lo, in that moment His sign appeared, in +miraculous rebuke! for His insulted waters ceased to flow, and +utterly vanished away." + +"They fared mildly, Sandy, considering how that kind of crime +is regarded in this country." + +"Belike; but it was their first sin; and they had been of perfect +life for long, and differing in naught from the angels. Prayers, +tears, torturings of the flesh, all was vain to beguile that water +to flow again. Even processions; even burnt-offerings; even votive +candles to the Virgin, did fail every each of them; and all in +the land did marvel." + +"How odd to find that even this industry has its financial panics, +and at times sees its assignats and greenbacks languish to zero, +and everything come to a standstill. Go on, Sandy." + +"And so upon a time, after year and day, the good abbot made humble +surrender and destroyed the bath. And behold, His anger was in that +moment appeased, and the waters gushed richly forth again, and even +unto this day they have not ceased to flow in that generous measure." + +"Then I take it nobody has washed since." + +"He that would essay it could have his halter free; yes, and +swiftly would he need it, too." + +"The community has prospered since?" + +"Even from that very day. The fame of the miracle went abroad +into all lands. From every land came monks to join; they came +even as the fishes come, in shoals; and the monastery added building +to building, and yet others to these, and so spread wide its arms +and took them in. And nuns came, also; and more again, and yet +more; and built over against the monastery on the yon side of the +vale, and added building to building, until mighty was that nunnery. +And these were friendly unto those, and they joined their loving +labors together, and together they built a fair great foundling +asylum midway of the valley between." + +"You spoke of some hermits, Sandy." + +"These have gathered there from the ends of the earth. A hermit +thriveth best where there be multitudes of pilgrims. Ye shall not +find no hermit of no sort wanting. If any shall mention a hermit +of a kind he thinketh new and not to be found but in some far +strange land, let him but scratch among the holes and caves and +swamps that line that Valley of Holiness, and whatsoever be his +breed, it skills not, he shall find a sample of it there." + +I closed up alongside of a burly fellow with a fat good-humored +face, purposing to make myself agreeable and pick up some further +crumbs of fact; but I had hardly more than scraped acquaintance +with him when he began eagerly and awkwardly to lead up, in the +immemorial way, to that same old anecdote--the one Sir Dinadan +told me, what time I got into trouble with Sir Sagramor and was +challenged of him on account of it. I excused myself and dropped +to the rear of the procession, sad at heart, willing to go hence +from this troubled life, this vale of tears, this brief day of +broken rest, of cloud and storm, of weary struggle and monotonous +defeat; and yet shrinking from the change, as remembering how long +eternity is, and how many have wended thither who know that anecdote. + +Early in the afternoon we overtook another procession of pilgrims; +but in this one was no merriment, no jokes, no laughter, no playful +ways, nor any happy giddiness, whether of youth or age. Yet both +were here, both age and youth; gray old men and women, strong men +and women of middle age, young husbands, young wives, little boys +and girls, and three babies at the breast. Even the children were +smileless; there was not a face among all these half a hundred +people but was cast down, and bore that set expression of hopelessness +which is bred of long and hard trials and old acquaintance with +despair. They were slaves. Chains led from their fettered feet +and their manacled hands to a sole-leather belt about their waists; +and all except the children were also linked together in a file +six feet apart, by a single chain which led from collar to collar +all down the line. They were on foot, and had tramped three +hundred miles in eighteen days, upon the cheapest odds and ends +of food, and stingy rations of that. They had slept in these +chains every night, bundled together like swine. They had upon +their bodies some poor rags, but they could not be said to be +clothed. Their irons had chafed the skin from their ankles and +made sores which were ulcerated and wormy. Their naked feet were +torn, and none walked without a limp. Originally there had been a +hundred of these unfortunates, but about half had been sold on +the trip. The trader in charge of them rode a horse and carried +a whip with a short handle and a long heavy lash divided into +several knotted tails at the end. With this whip he cut the +shoulders of any that tottered from weariness and pain, and +straightened them up. He did not speak; the whip conveyed his +desire without that. None of these poor creatures looked up as +we rode along by; they showed no consciousness of our presence. +And they made no sound but one; that was the dull and awful clank +of their chains from end to end of the long file, as forty-three +burdened feet rose and fell in unison. The file moved in a cloud +of its own making. + +All these faces were gray with a coating of dust. One has seen +the like of this coating upon furniture in unoccupied houses, and +has written his idle thought in it with his finger. I was reminded +of this when I noticed the faces of some of those women, young +mothers carrying babes that were near to death and freedom, how +a something in their hearts was written in the dust upon their +faces, plain to see, and lord, how plain to read! for it was the +track of tears. One of these young mothers was but a girl, and +it hurt me to the heart to read that writing, and reflect that it +was come up out of the breast of such a child, a breast that ought +not to know trouble yet, but only the gladness of the morning of +life; and no doubt-- + +She reeled just then, giddy with fatigue, and down came the lash +and flicked a flake of skin from her naked shoulder. It stung me +as if I had been hit instead. The master halted the file and +jumped from his horse. He stormed and swore at this girl, and +said she had made annoyance enough with her laziness, and as this +was the last chance he should have, he would settle the account now. +She dropped on her knees and put up her hands and began to beg, +and cry, and implore, in a passion of terror, but the master gave +no attention. He snatched the child from her, and then made the +men-slaves who were chained before and behind her throw her on +the ground and hold her there and expose her body; and then he +laid on with his lash like a madman till her back was flayed, she +shrieking and struggling the while piteously. One of the men who +was holding her turned away his face, and for this humanity he was +reviled and flogged. + +All our pilgrims looked on and commented--on the expert way in +which the whip was handled. They were too much hardened by lifelong +everyday familiarity with slavery to notice that there was anything +else in the exhibition that invited comment. This was what slavery +could do, in the way of ossifying what one may call the superior +lobe of human feeling; for these pilgrims were kind-hearted people, +and they would not have allowed that man to treat a horse like that. + +I wanted to stop the whole thing and set the slaves free, but that +would not do. I must not interfere too much and get myself a name +for riding over the country's laws and the citizen's rights +roughshod. If I lived and prospered I would be the death of +slavery, that I was resolved upon; but I would try to fix it so +that when I became its executioner it should be by command of +the nation. + +Just here was the wayside shop of a smith; and now arrived a landed +proprietor who had bought this girl a few miles back, deliverable +here where her irons could be taken off. They were removed; then +there was a squabble between the gentleman and the dealer as to +which should pay the blacksmith. The moment the girl was delivered +from her irons, she flung herself, all tears and frantic sobbings, +into the arms of the slave who had turned away his face when she +was whipped. He strained her to his breast, and smothered her +face and the child's with kisses, and washed them with the rain +of his tears. I suspected. I inquired. Yes, I was right; it was +husband and wife. They had to be torn apart by force; the girl +had to be dragged away, and she struggled and fought and shrieked +like one gone mad till a turn of the road hid her from sight; and +even after that, we could still make out the fading plaint of those +receding shrieks. And the husband and father, with his wife and +child gone, never to be seen by him again in life?--well, the look +of him one might not bear at all, and so I turned away; but I knew +I should never get his picture out of my mind again, and there +it is to this day, to wring my heartstrings whenever I think of it. + +We put up at the inn in a village just at nightfall, and when +I rose next morning and looked abroad, I was ware where a knight +came riding in the golden glory of the new day, and recognized him +for knight of mine--Sir Ozana le Cure Hardy. He was in the +gentlemen's furnishing line, and his missionarying specialty was +plug hats. He was clothed all in steel, in the beautifulest armor +of the time--up to where his helmet ought to have been; but he +hadn't any helmet, he wore a shiny stove-pipe hat, and was ridiculous +a spectacle as one might want to see. It was another of my +surreptitious schemes for extinguishing knighthood by making it +grotesque and absurd. Sir Ozana's saddle was hung about with +leather hat boxes, and every time he overcame a wandering knight +he swore him into my service and fitted him with a plug and made +him wear it. I dressed and ran down to welcome Sir Ozana and +get his news. + +"How is trade?" I asked. + +"Ye will note that I have but these four left; yet were they sixteen +whenas I got me from Camelot." + +"Why, you have certainly done nobly, Sir Ozana. Where have you +been foraging of late?" + +"I am but now come from the Valley of Holiness, please you sir." + +"I am pointed for that place myself. Is there anything stirring +in the monkery, more than common?" + +"By the mass ye may not question it!.... Give him good feed, +boy, and stint it not, an thou valuest thy crown; so get ye lightly +to the stable and do even as I bid.... Sir, it is parlous news +I bring, and--be these pilgrims? Then ye may not do better, good +folk, than gather and hear the tale I have to tell, sith it +concerneth you, forasmuch as ye go to find that ye will not find, +and seek that ye will seek in vain, my life being hostage for my +word, and my word and message being these, namely: That a hap +has happened whereof the like has not been seen no more but once +this two hundred years, which was the first and last time that +that said misfortune strake the holy valley in that form by +commandment of the Most High whereto by reasons just and causes +thereunto contributing, wherein the matter--" + +"The miraculous fount hath ceased to flow!" This shout burst from +twenty pilgrim mouths at once. + +"Ye say well, good people. I was verging to it, even when ye spake." + +"Has somebody been washing again?" + +"Nay, it is suspected, but none believe it. It is thought to be +some other sin, but none wit what." + +"How are they feeling about the calamity?" + +"None may describe it in words. The fount is these nine days dry. +The prayers that did begin then, and the lamentations in sackcloth +and ashes, and the holy processions, none of these have ceased +nor night nor day; and so the monks and the nuns and the foundlings +be all exhausted, and do hang up prayers writ upon parchment, +sith that no strength is left in man to lift up voice. And at last +they sent for thee, Sir Boss, to try magic and enchantment; and +if you could not come, then was the messenger to fetch Merlin, +and he is there these three days now, and saith he will fetch that +water though he burst the globe and wreck its kingdoms to accomplish +it; and right bravely doth he work his magic and call upon his +hellions to hie them hither and help, but not a whiff of moisture +hath he started yet, even so much as might qualify as mist upon +a copper mirror an ye count not the barrel of sweat he sweateth +betwixt sun and sun over the dire labors of his task; and if ye--" + +Breakfast was ready. As soon as it was over I showed to Sir Ozana +these words which I had written on the inside of his hat: "Chemical +Department, Laboratory extension, Section G. Pxxp. Send two of +first size, two of No. 3, and six of No. 4, together with the proper +complementary details--and two of my trained assistants." And I said: + +"Now get you to Camelot as fast as you can fly, brave knight, and +show the writing to Clarence, and tell him to have these required +matters in the Valley of Holiness with all possible dispatch." + +"I will well, Sir Boss," and he was off. + + + +CHAPTER XXII + +THE HOLY FOUNTAIN + +The pilgrims were human beings. Otherwise they would have acted +differently. They had come a long and difficult journey, and now +when the journey was nearly finished, and they learned that the main +thing they had come for had ceased to exist, they didn't do as +horses or cats or angle-worms would probably have done--turn back +and get at something profitable--no, anxious as they had before +been to see the miraculous fountain, they were as much as forty +times as anxious now to see the place where it had used to be. +There is no accounting for human beings. + +We made good time; and a couple of hours before sunset we stood +upon the high confines of the Valley of Holiness, and our eyes +swept it from end to end and noted its features. That is, its +large features. These were the three masses of buildings. They +were distant and isolated temporalities shrunken to toy constructions +in the lonely waste of what seemed a desert--and was. Such a scene +is always mournful, it is so impressively still, and looks so +steeped in death. But there was a sound here which interrupted +the stillness only to add to its mournfulness; this was the faint +far sound of tolling bells which floated fitfully to us on the +passing breeze, and so faintly, so softly, that we hardly knew +whether we heard it with our ears or with our spirits. + +We reached the monastery before dark, and there the males were +given lodging, but the women were sent over to the nunnery. The +bells were close at hand now, and their solemn booming smote +upon the ear like a message of doom. A superstitious despair +possessed the heart of every monk and published itself in his +ghastly face. Everywhere, these black-robed, soft-sandaled, +tallow-visaged specters appeared, flitted about and disappeared, +noiseless as the creatures of a troubled dream, and as uncanny. + +The old abbot's joy to see me was pathetic. Even to tears; but +he did the shedding himself. He said: + +"Delay not, son, but get to thy saving work. An we bring not +the water back again, and soon, we are ruined, and the good work +of two hundred years must end. And see thou do it with enchantments +that be holy, for the Church will not endure that work in her cause +be done by devil's magic." + +"When I work, Father, be sure there will be no devil's work +connected with it. I shall use no arts that come of the devil, +and no elements not created by the hand of God. But is Merlin +working strictly on pious lines?" + +"Ah, he said he would, my son, he said he would, and took oath +to make his promise good." + +"Well, in that case, let him proceed." + +"But surely you will not sit idle by, but help?" + +"It will not answer to mix methods, Father; neither would it be +professional courtesy. Two of a trade must not underbid each +other. We might as well cut rates and be done with it; it would +arrive at that in the end. Merlin has the contract; no other +magician can touch it till he throws it up." + +"But I will take it from him; it is a terrible emergency and the +act is thereby justified. And if it were not so, who will give +law to the Church? The Church giveth law to all; and what she +wills to do, that she may do, hurt whom it may. I will take it +from him; you shall begin upon the moment." + +"It may not be, Father. No doubt, as you say, where power is +supreme, one can do as one likes and suffer no injury; but we poor +magicians are not so situated. Merlin is a very good magician +in a small way, and has quite a neat provincial reputation. He +is struggling along, doing the best he can, and it would not be +etiquette for me to take his job until he himself abandons it." + +The abbot's face lighted. + +"Ah, that is simple. There are ways to persuade him to abandon it." + +"No-no, Father, it skills not, as these people say. If he were +persuaded against his will, he would load that well with a malicious +enchantment which would balk me until I found out its secret. +It might take a month. I could set up a little enchantment of +mine which I call the telephone, and he could not find out its +secret in a hundred years. Yes, you perceive, he might block me +for a month. Would you like to risk a month in a dry time like this?" + +"A month! The mere thought of it maketh me to shudder. Have it +thy way, my son. But my heart is heavy with this disappointment. +Leave me, and let me wear my spirit with weariness and waiting, +even as I have done these ten long days, counterfeiting thus +the thing that is called rest, the prone body making outward sign +of repose where inwardly is none." + +Of course, it would have been best, all round, for Merlin to waive +etiquette and quit and call it half a day, since he would never be +able to start that water, for he was a true magician of the time; +which is to say, the big miracles, the ones that gave him his +reputation, always had the luck to be performed when nobody but +Merlin was present; he couldn't start this well with all this crowd +around to see; a crowd was as bad for a magician's miracle in +that day as it was for a spiritualist's miracle in mine; there was +sure to be some skeptic on hand to turn up the gas at the crucial +moment and spoil everything. But I did not want Merlin to retire +from the job until I was ready to take hold of it effectively +myself; and I could not do that until I got my things from Camelot, +and that would take two or three days. + +My presence gave the monks hope, and cheered them up a good deal; +insomuch that they ate a square meal that night for the first time +in ten days. As soon as their stomachs had been properly reinforced +with food, their spirits began to rise fast; when the mead began to +go round they rose faster. By the time everybody was half-seas over, +the holy community was in good shape to make a night of it; so we +stayed by the board and put it through on that line. Matters got +to be very jolly. Good old questionable stories were told that made +the tears run down and cavernous mouths stand wide and the round +bellies shake with laughter; and questionable songs were bellowed out +in a mighty chorus that drowned the boom of the tolling bells. + +At last I ventured a story myself; and vast was the success of it. +Not right off, of course, for the native of those islands does +not, as a rule, dissolve upon the early applications of a humorous +thing; but the fifth time I told it, they began to crack in places; +the eight time I told it, they began to crumble; at the twelfth +repetition they fell apart in chunks; and at the fifteenth they +disintegrated, and I got a broom and swept them up. This language +is figurative. Those islanders--well, they are slow pay at first, +in the matter of return for your investment of effort, but in the end +they make the pay of all other nations poor and small by contrast. + +I was at the well next day betimes. Merlin was there, enchanting +away like a beaver, but not raising the moisture. He was not in +a pleasant humor; and every time I hinted that perhaps this contract +was a shade too hefty for a novice he unlimbered his tongue and +cursed like a bishop--French bishop of the Regency days, I mean. + +Matters were about as I expected to find them. The "fountain" was +an ordinary well, it had been dug in the ordinary way, and stoned up +in the ordinary way. There was no miracle about it. Even the lie +that had created its reputation was not miraculous; I could have +told it myself, with one hand tied behind me. The well was in a +dark chamber which stood in the center of a cut-stone chapel, whose +walls were hung with pious pictures of a workmanship that would +have made a chromo feel good; pictures historically commemorative +of curative miracles which had been achieved by the waters when +nobody was looking. That is, nobody but angels; they are always +on deck when there is a miracle to the fore--so as to get put in +the picture, perhaps. Angels are as fond of that as a fire company; +look at the old masters. + +The well-chamber was dimly lighted by lamps; the water was drawn +with a windlass and chain by monks, and poured into troughs which +delivered it into stone reservoirs outside in the chapel--when +there was water to draw, I mean--and none but monks could enter +the well-chamber. I entered it, for I had temporary authority +to do so, by courtesy of my professional brother and subordinate. +But he hadn't entered it himself. He did everything by incantations; +he never worked his intellect. If he had stepped in there and used +his eyes, instead of his disordered mind, he could have cured +the well by natural means, and then turned it into a miracle in +the customary way; but no, he was an old numskull, a magician who +believed in his own magic; and no magician can thrive who is +handicapped with a superstition like that. + +I had an idea that the well had sprung a leak; that some of the +wall stones near the bottom had fallen and exposed fissures that +allowed the water to escape. I measured the chain--98 feet. Then +I called in a couple of monks, locked the door, took a candle, and +made them lower me in the bucket. When the chain was all paid out, +the candle confirmed my suspicion; a considerable section of the +wall was gone, exposing a good big fissure. + +I almost regretted that my theory about the well's trouble was +correct, because I had another one that had a showy point or two +about it for a miracle. I remembered that in America, many +centuries later, when an oil well ceased to flow, they used to +blast it out with a dynamite torpedo. If I should find this well +dry and no explanation of it, I could astonish these people most +nobly by having a person of no especial value drop a dynamite +bomb into it. It was my idea to appoint Merlin. However, it was +plain that there was no occasion for the bomb. One cannot have +everything the way he would like it. A man has no business to +be depressed by a disappointment, anyway; he ought to make up his +mind to get even. That is what I did. I said to myself, I am in no +hurry, I can wait; that bomb will come good yet. And it did, too. + +When I was above ground again, I turned out the monks, and let down +a fish-line; the well was a hundred and fifty feet deep, and there +was forty-one feet of water in it. I called in a monk and asked: + +"How deep is the well?" + +"That, sir, I wit not, having never been told." + +"How does the water usually stand in it?" + +"Near to the top, these two centuries, as the testimony goeth, +brought down to us through our predecessors." + +It was true--as to recent times at least--for there was witness +to it, and better witness than a monk; only about twenty or thirty +feet of the chain showed wear and use, the rest of it was unworn +and rusty. What had happened when the well gave out that other +time? Without doubt some practical person had come along and +mended the leak, and then had come up and told the abbot he had +discovered by divination that if the sinful bath were destroyed +the well would flow again. The leak had befallen again now, and +these children would have prayed, and processioned, and tolled +their bells for heavenly succor till they all dried up and blew +away, and no innocent of them all would ever have thought to drop +a fish-line into the well or go down in it and find out what was +really the matter. Old habit of mind is one of the toughest things +to get away from in the world. It transmits itself like physical +form and feature; and for a man, in those days, to have had an idea +that his ancestors hadn't had, would have brought him under suspicion +of being illegitimate. I said to the monk: + +"It is a difficult miracle to restore water in a dry well, but we +will try, if my brother Merlin fails. Brother Merlin is a very +passable artist, but only in the parlor-magic line, and he may +not succeed; in fact, is not likely to succeed. But that should +be nothing to his discredit; the man that can do _this_ kind of +miracle knows enough to keep hotel." + +"Hotel? I mind not to have heard--" + +"Of hotel? It's what you call hostel. The man that can do this +miracle can keep hostel. I can do this miracle; I shall do this +miracle; yet I do not try to conceal from you that it is a miracle +to tax the occult powers to the last strain." + +"None knoweth that truth better than the brotherhood, indeed; for +it is of record that aforetime it was parlous difficult and took +a year. Natheless, God send you good success, and to that end +will we pray." + +As a matter of business it was a good idea to get the notion around +that the thing was difficult. Many a small thing has been made +large by the right kind of advertising. That monk was filled up +with the difficulty of this enterprise; he would fill up the others. +In two days the solicitude would be booming. + +On my way home at noon, I met Sandy. She had been sampling the +hermits. I said: + +"I would like to do that myself. This is Wednesday. Is there +a matinee?" + +"A which, please you, sir?" + +"Matinee. Do they keep open afternoons?" + +"Who?" + +"The hermits, of course." + +"Keep open?" + +"Yes, keep open. Isn't that plain enough? Do they knock off at noon?" + +"Knock off?" + +"Knock off?--yes, knock off. What is the matter with knock off? +I never saw such a dunderhead; can't you understand anything at all? +In plain terms, do they shut up shop, draw the game, bank the fires--" + +"Shut up shop, draw--" + +"There, never mind, let it go; you make me tired. You can't seem +to understand the simplest thing." + +"I would I might please thee, sir, and it is to me dole and sorrow +that I fail, albeit sith I am but a simple damsel and taught of +none, being from the cradle unbaptized in those deep waters of +learning that do anoint with a sovereignty him that partaketh of +that most noble sacrament, investing him with reverend state to +the mental eye of the humble mortal who, by bar and lack of that +great consecration seeth in his own unlearned estate but a symbol +of that other sort of lack and loss which men do publish to the +pitying eye with sackcloth trappings whereon the ashes of grief +do lie bepowdered and bestrewn, and so, when such shall in the +darkness of his mind encounter these golden phrases of high mystery, +these shut-up-shops, and draw-the-game, and bank-the-fires, it is +but by the grace of God that he burst not for envy of the mind that +can beget, and tongue that can deliver so great and mellow-sounding +miracles of speech, and if there do ensue confusion in that humbler +mind, and failure to divine the meanings of these wonders, then +if so be this miscomprehension is not vain but sooth and true, +wit ye well it is the very substance of worshipful dear homage and +may not lightly be misprized, nor had been, an ye had noted this +complexion of mood and mind and understood that that I would +I could not, and that I could not I might not, nor yet nor might +_nor_ could, nor might-not nor could-not, might be by advantage +turned to the desired _would_, and so I pray you mercy of my fault, +and that ye will of your kindness and your charity forgive it, good +my master and most dear lord." + +I couldn't make it all out--that is, the details--but I got the +general idea; and enough of it, too, to be ashamed. It was not +fair to spring those nineteenth century technicalities upon the +untutored infant of the sixth and then rail at her because she +couldn't get their drift; and when she was making the honest best +drive at it she could, too, and no fault of hers that she couldn't +fetch the home plate; and so I apologized. Then we meandered +pleasantly away toward the hermit holes in sociable converse +together, and better friends than ever. + +I was gradually coming to have a mysterious and shuddery reverence +for this girl; nowadays whenever she pulled out from the station +and got her train fairly started on one of those horizonless +transcontinental sentences of hers, it was borne in upon me that +I was standing in the awful presence of the Mother of the German +Language. I was so impressed with this, that sometimes when she +began to empty one of these sentences on me I unconsciously took +the very attitude of reverence, and stood uncovered; and if words +had been water, I had been drowned, sure. She had exactly the +German way; whatever was in her mind to be delivered, whether a +mere remark, or a sermon, or a cyclopedia, or the history of a war, +she would get it into a single sentence or die. Whenever the literary +German dives into a sentence, that is the last you are going to see +of him till he emerges on the other side of his Atlantic with his +verb in his mouth. + +We drifted from hermit to hermit all the afternoon. It was a most +strange menagerie. The chief emulation among them seemed to be, +to see which could manage to be the uncleanest and most prosperous +with vermin. Their manner and attitudes were the last expression +of complacent self-righteousness. It was one anchorite's pride +to lie naked in the mud and let the insects bite him and blister +him unmolested; it was another's to lean against a rock, all day +long, conspicuous to the admiration of the throng of pilgrims +and pray; it was another's to go naked and crawl around on all fours; +it was another's to drag about with him, year in and year out, +eighty pounds of iron; it was another's to never lie down when +he slept, but to stand among the thorn-bushes and snore when there +were pilgrims around to look; a woman, who had the white hair of +age, and no other apparel, was black from crown to heel with +forty-seven years of holy abstinence from water. Groups of gazing +pilgrims stood around all and every of these strange objects, lost +in reverent wonder, and envious of the fleckless sanctity which +these pious austerities had won for them from an exacting heaven. + +By and by we went to see one of the supremely great ones. He was +a mighty celebrity; his fame had penetrated all Christendom; the +noble and the renowned journeyed from the remotest lands on the globe +to pay him reverence. His stand was in the center of the widest part +of the valley; and it took all that space to hold his crowds. + +His stand was a pillar sixty feet high, with a broad platform on +the top of it. He was now doing what he had been doing every day +for twenty years up there--bowing his body ceaselessly and rapidly +almost to his feet. It was his way of praying. I timed him with a +stop watch, and he made 1,244 revolutions in 24 minutes and +46 seconds. It seemed a pity to have all this power going to waste. +It was one of the most useful motions in mechanics, the pedal +movement; so I made a note in my memorandum book, purposing some +day to apply a system of elastic cords to him and run a sewing +machine with it. I afterward carried out that scheme, and got +five years' good service out of him; in which time he turned out +upward of eighteen thousand first-rate tow-linen shirts, which +was ten a day. I worked him Sundays and all; he was going, Sundays, +the same as week days, and it was no use to waste the power. +These shirts cost me nothing but just the mere trifle for the +materials--I furnished those myself, it would not have been right +to make him do that--and they sold like smoke to pilgrims at a +dollar and a half apiece, which was the price of fifty cows or +a blooded race horse in Arthurdom. They were regarded as a perfect +protection against sin, and advertised as such by my knights +everywhere, with the paint-pot and stencil-plate; insomuch that +there was not a cliff or a bowlder or a dead wall in England but +you could read on it at a mile distance: + +"Buy the only genuine St. Stylite; patronized by the Nobility. +Patent applied for." + +There was more money in the business than one knew what to do with. +As it extended, I brought out a line of goods suitable for kings, +and a nobby thing for duchesses and that sort, with ruffles down +the forehatch and the running-gear clewed up with a featherstitch +to leeward and then hauled aft with a back-stay and triced up with +a half-turn in the standing rigging forward of the weather-gaskets. +Yes, it was a daisy. + +But about that time I noticed that the motive power had taken to +standing on one leg, and I found that there was something the matter +with the other one; so I stocked the business and unloaded, taking +Sir Bors de Ganis into camp financially along with certain of his +friends; for the works stopped within a year, and the good saint +got him to his rest. But he had earned it. I can say that for him. + +When I saw him that first time--however, his personal condition +will not quite bear description here. You can read it in the +Lives of the Saints.* + +[*All the details concerning the hermits, in this chapter, are from +Lecky--but greatly modified. This book not being a history but +only a tale, the majority of the historian's frank details were too +strong for reproduction in it.--_Editor_] + + + +CHAPTER XXIII + +RESTORATION OF THE FOUNTAIN + +Saturday noon I went to the well and looked on a while. Merlin +was still burning smoke-powders, and pawing the air, and muttering +gibberish as hard as ever, but looking pretty down-hearted, for +of course he had not started even a perspiration in that well yet. +Finally I said: + +"How does the thing promise by this time, partner?" + +"Behold, I am even now busied with trial of the powerfulest +enchantment known to the princes of the occult arts in the lands +of the East; an it fail me, naught can avail. Peace, until I finish." + +He raised a smoke this time that darkened all the region, and must +have made matters uncomfortable for the hermits, for the wind +was their way, and it rolled down over their dens in a dense and +billowy fog. He poured out volumes of speech to match, and contorted +his body and sawed the air with his hands in a most extraordinary +way. At the end of twenty minutes he dropped down panting, and +about exhausted. Now arrived the abbot and several hundred monks +and nuns, and behind them a multitude of pilgrims and a couple of +acres of foundlings, all drawn by the prodigious smoke, and all +in a grand state of excitement. The abbot inquired anxiously for +results. Merlin said: + +"If any labor of mortal might break the spell that binds these +waters, this which I have but just essayed had done it. It has +failed; whereby I do now know that that which I had feared is +a truth established; the sign of this failure is, that the most +potent spirit known to the magicians of the East, and whose name +none may utter and live, has laid his spell upon this well. The +mortal does not breathe, nor ever will, who can penetrate the secret +of that spell, and without that secret none can break it. The +water will flow no more forever, good Father. I have done what +man could. Suffer me to go." + +Of course this threw the abbot into a good deal of a consternation. +He turned to me with the signs of it in his face, and said: + +"Ye have heard him. Is it true?" + +"Part of it is." + +"Not all, then, not all! What part is true?" + +"That that spirit with the Russian name has put his spell +upon the well." + +"God's wounds, then are we ruined!" + +"Possibly." + +"But not certainly? Ye mean, not certainly?" + +"That is it." + +"Wherefore, ye also mean that when he saith none can break the spell--" + +"Yes, when he says that, he says what isn't necessarily true. +There are conditions under which an effort to break it may have +some chance--that is, some small, some trifling chance--of success." + +"The conditions--" + +"Oh, they are nothing difficult. Only these: I want the well +and the surroundings for the space of half a mile, entirely to +myself from sunset to-day until I remove the ban--and nobody +allowed to cross the ground but by my authority." + +"Are these all?" + +"Yes." + +"And you have no fear to try?" + +"Oh, none. One may fail, of course; and one may also succeed. +One can try, and I am ready to chance it. I have my conditions?" + +"These and all others ye may name. I will issue commandment +to that effect." + +"Wait," said Merlin, with an evil smile. "Ye wit that he that +would break this spell must know that spirit's name?" + +"Yes, I know his name." + +"And wit you also that to know it skills not of itself, but ye +must likewise pronounce it? Ha-ha! Knew ye that?" + +"Yes, I knew that, too." + +"You had that knowledge! Art a fool? Are ye minded to utter +that name and die?" + +"Utter it? Why certainly. I would utter it if it was Welsh." + +"Ye are even a dead man, then; and I go to tell Arthur." + +"That's all right. Take your gripsack and get along. The thing +for _you_ to do is to go home and work the weather, John W. Merlin." + +It was a home shot, and it made him wince; for he was the worst +weather-failure in the kingdom. Whenever he ordered up the +danger-signals along the coast there was a week's dead calm, sure, +and every time he prophesied fair weather it rained brickbats. +But I kept him in the weather bureau right along, to undermine +his reputation. However, that shot raised his bile, and instead +of starting home to report my death, he said he would remain +and enjoy it. + +My two experts arrived in the evening, and pretty well fagged, +for they had traveled double tides. They had pack-mules along, +and had brought everything I needed--tools, pump, lead pipe, +Greek fire, sheaves of big rockets, roman candles, colored fire +sprays, electric apparatus, and a lot of sundries--everything +necessary for the stateliest kind of a miracle. They got their +supper and a nap, and about midnight we sallied out through a +solitude so wholly vacant and complete that it quite overpassed +the required conditions. We took possession of the well and its +surroundings. My boys were experts in all sorts of things, from +the stoning up of a well to the constructing of a mathematical +instrument. An hour before sunrise we had that leak mended in +ship-shape fashion, and the water began to rise. Then we stowed our +fireworks in the chapel, locked up the place, and went home to bed. + +Before the noon mass was over, we were at the well again; for there +was a deal to do yet, and I was determined to spring the miracle +before midnight, for business reasons: for whereas a miracle +worked for the Church on a week-day is worth a good deal, it is +worth six times as much if you get it in on a Sunday. In nine hours +the water had risen to its customary level--that is to say, it was +within twenty-three feet of the top. We put in a little iron pump, +one of the first turned out by my works near the capital; we bored +into a stone reservoir which stood against the outer wall of the +well-chamber and inserted a section of lead pipe that was long +enough to reach to the door of the chapel and project beyond +the threshold, where the gushing water would be visible to the +two hundred and fifty acres of people I was intending should be +present on the flat plain in front of this little holy hillock at +the proper time. + +We knocked the head out of an empty hogshead and hoisted this +hogshead to the flat roof of the chapel, where we clamped it down +fast, poured in gunpowder till it lay loosely an inch deep on the +bottom, then we stood up rockets in the hogshead as thick as they +could loosely stand, all the different breeds of rockets there are; +and they made a portly and imposing sheaf, I can tell you. We +grounded the wire of a pocket electrical battery in that powder, +we placed a whole magazine of Greek fire on each corner of the +roof--blue on one corner, green on another, red on another, and +purple on the last--and grounded a wire in each. + +About two hundred yards off, in the flat, we built a pen of +scantlings, about four feet high, and laid planks on it, and so +made a platform. We covered it with swell tapestries borrowed +for the occasion, and topped it off with the abbot's own throne. +When you are going to do a miracle for an ignorant race, you want +to get in every detail that will count; you want to make all the +properties impressive to the public eye; you want to make matters +comfortable for your head guest; then you can turn yourself loose +and play your effects for all they are worth. I know the value of +these things, for I know human nature. You can't throw too much +style into a miracle. It costs trouble, and work, and sometimes +money; but it pays in the end. Well, we brought the wires to +the ground at the chapel, and then brought them under the ground +to the platform, and hid the batteries there. We put a rope fence +a hundred feet square around the platform to keep off the common +multitude, and that finished the work. My idea was, doors open +at 10:30, performance to begin at 11:25 sharp. I wished I could +charge admission, but of course that wouldn't answer. I instructed +my boys to be in the chapel as early as 10, before anybody was +around, and be ready to man the pumps at the proper time, and +make the fur fly. Then we went home to supper. + +The news of the disaster to the well had traveled far by this time; +and now for two or three days a steady avalanche of people had +been pouring into the valley. The lower end of the valley was +become one huge camp; we should have a good house, no question +about that. Criers went the rounds early in the evening and +announced the coming attempt, which put every pulse up to fever +heat. They gave notice that the abbot and his official suite would +move in state and occupy the platform at 10:30, up to which time +all the region which was under my ban must be clear; the bells +would then cease from tolling, and this sign should be permission +to the multitudes to close in and take their places. + +I was at the platform and all ready to do the honors when the +abbot's solemn procession hove in sight--which it did not do till +it was nearly to the rope fence, because it was a starless black +night and no torches permitted. With it came Merlin, and took +a front seat on the platform; he was as good as his word for once. +One could not see the multitudes banked together beyond the ban, +but they were there, just the same. The moment the bells stopped, +those banked masses broke and poured over the line like a vast +black wave, and for as much as a half hour it continued to flow, +and then it solidified itself, and you could have walked upon +a pavement of human heads to--well, miles. + +We had a solemn stage-wait, now, for about twenty minutes--a thing +I had counted on for effect; it is always good to let your audience +have a chance to work up its expectancy. At length, out of the +silence a noble Latin chant--men's voices--broke and swelled up +and rolled away into the night, a majestic tide of melody. I had +put that up, too, and it was one of the best effects I ever invented. +When it was finished I stood up on the platform and extended my +hands abroad, for two minutes, with my face uplifted--that always +produces a dead hush--and then slowly pronounced this ghastly word +with a kind of awfulness which caused hundreds to tremble, and +many women to faint: + +"Constantinopolitanischerdudelsackspfeifenmachersgesellschafft!" + +Just as I was moaning out the closing hunks of that word, I touched +off one of my electric connections and all that murky world of +people stood revealed in a hideous blue glare! It was immense +--that effect! Lots of people shrieked, women curled up and quit +in every direction, foundlings collapsed by platoons. The abbot +and the monks crossed themselves nimbly and their lips fluttered +with agitated prayers. Merlin held his grip, but he was astonished +clear down to his corns; he had never seen anything to begin +with that, before. Now was the time to pile in the effects. I lifted +my hands and groaned out this word--as it were in agony: + +"Nihilistendynamittheaterkaestchenssprengungsattentaetsversuchungen!" + +--and turned on the red fire! You should have heard that Atlantic +of people moan and howl when that crimson hell joined the blue! +After sixty seconds I shouted: + +"Transvaaltruppentropentransporttrampelthiertreibertrauungsthraenen- +tragoedie!" + +--and lit up the green fire! After waiting only forty seconds this +time, I spread my arms abroad and thundered out the devastating +syllables of this word of words: + +"Mekkamuselmannenmassenmenchenmoerdermohrenmuttermarmormonumentenmacher!" + +--and whirled on the purple glare! There they were, all going +at once, red, blue, green, purple!--four furious volcanoes pouring +vast clouds of radiant smoke aloft, and spreading a blinding +rainbowed noonday to the furthest confines of that valley. In +the distance one could see that fellow on the pillar standing rigid +against the background of sky, his seesaw stopped for the first +time in twenty years. I knew the boys were at the pump now and +ready. So I said to the abbot: + +"The time is come, Father. I am about to pronounce the dread name +and command the spell to dissolve. You want to brace up, and take +hold of something." Then I shouted to the people: "Behold, in +another minute the spell will be broken, or no mortal can break it. +If it break, all will know it, for you will see the sacred water +gush from the chapel door!" + +I stood a few moments, to let the hearers have a chance to spread +my announcement to those who couldn't hear, and so convey it +to the furthest ranks, then I made a grand exhibition of extra +posturing and gesturing, and shouted: + +"Lo, I command the fell spirit that possesses the holy fountain +to now disgorge into the skies all the infernal fires that still +remain in him, and straightway dissolve his spell and flee hence +to the pit, there to lie bound a thousand years. By his own dread +name I command it--BGWJJILLIGKKK!" + +Then I touched off the hogshead of rockets, and a vast fountain of +dazzling lances of fire vomited itself toward the zenith with a +hissing rush, and burst in mid-sky into a storm of flashing jewels! +One mighty groan of terror started up from the massed people +--then suddenly broke into a wild hosannah of joy--for there, fair +and plain in the uncanny glare, they saw the freed water leaping +forth! The old abbot could not speak a word, for tears and the +chokings in his throat; without utterance of any sort, he folded me +in his arms and mashed me. It was more eloquent than speech. +And harder to get over, too, in a country where there were really +no doctors that were worth a damaged nickel. + +You should have seen those acres of people throw themselves down +in that water and kiss it; kiss it, and pet it, and fondle it, and +talk to it as if it were alive, and welcome it back with the dear +names they gave their darlings, just as if it had been a friend who +was long gone away and lost, and was come home again. Yes, it was +pretty to see, and made me think more of them than I had done before. + +I sent Merlin home on a shutter. He had caved in and gone down +like a landslide when I pronounced that fearful name, and had +never come to since. He never had heard that name before,--neither +had I--but to him it was the right one. Any jumble would have +been the right one. He admitted, afterward, that that spirit's own +mother could not have pronounced that name better than I did. +He never could understand how I survived it, and I didn't tell +him. It is only young magicians that give away a secret like that. +Merlin spent three months working enchantments to try to find out +the deep trick of how to pronounce that name and outlive it. +But he didn't arrive. + +When I started to the chapel, the populace uncovered and fell back +reverently to make a wide way for me, as if I had been some kind +of a superior being--and I was. I was aware of that. I took along +a night shift of monks, and taught them the mystery of the pump, +and set them to work, for it was plain that a good part of the +people out there were going to sit up with the water all night, +consequently it was but right that they should have all they wanted +of it. To those monks that pump was a good deal of a miracle +itself, and they were full of wonder over it; and of admiration, +too, of the exceeding effectiveness of its performance. + +It was a great night, an immense night. There was reputation in it. +I could hardly get to sleep for glorying over it. + + + +CHAPTER XXIV + +A RIVAL MAGICIAN + +My influence in the Valley of Holiness was something prodigious +now. It seemed worth while to try to turn it to some valuable +account. The thought came to me the next morning, and was suggested +by my seeing one of my knights who was in the soap line come +riding in. According to history, the monks of this place two +centuries before had been worldly minded enough to want to wash. +It might be that there was a leaven of this unrighteousness still +remaining. So I sounded a Brother: + +"Wouldn't you like a bath?" + +He shuddered at the thought--the thought of the peril of it to +the well--but he said with feeling: + +"One needs not to ask that of a poor body who has not known that +blessed refreshment sith that he was a boy. Would God I might +wash me! but it may not be, fair sir, tempt me not; it is forbidden." + +And then he sighed in such a sorrowful way that I was resolved +he should have at least one layer of his real estate removed, +if it sized up my whole influence and bankrupted the pile. So I +went to the abbot and asked for a permit for this Brother. He +blenched at the idea--I don't mean that you could see him blench, +for of course you couldn't see it without you scraped him, and +I didn't care enough about it to scrape him, but I knew the blench +was there, just the same, and within a book-cover's thickness of +the surface, too--blenched, and trembled. He said: + +"Ah, son, ask aught else thou wilt, and it is thine, and freely +granted out of a grateful heart--but this, oh, this! Would you +drive away the blessed water again?" + +"No, Father, I will not drive it away. I have mysterious knowledge +which teaches me that there was an error that other time when +it was thought the institution of the bath banished the fountain." +A large interest began to show up in the old man's face. "My +knowledge informs me that the bath was innocent of that misfortune, +which was caused by quite another sort of sin." + +"These are brave words--but--but right welcome, if they be true." + +"They are true, indeed. Let me build the bath again, Father. +Let me build it again, and the fountain shall flow forever." + +"You promise this?--you promise it? Say the word--say you promise it!" + +"I do promise it." + +"Then will I have the first bath myself! Go--get ye to your work. +Tarry not, tarry not, but go." + +I and my boys were at work, straight off. The ruins of the old +bath were there yet in the basement of the monastery, not a stone +missing. They had been left just so, all these lifetimes, and +avoided with a pious fear, as things accursed. In two days we +had it all done and the water in--a spacious pool of clear pure +water that a body could swim in. It was running water, too. +It came in, and went out, through the ancient pipes. The old abbot +kept his word, and was the first to try it. He went down black +and shaky, leaving the whole black community above troubled and +worried and full of bodings; but he came back white and joyful, +and the game was made! another triumph scored. + +It was a good campaign that we made in that Valley of Holiness, +and I was very well satisfied, and ready to move on now, but +I struck a disappointment. I caught a heavy cold, and it started +up an old lurking rheumatism of mine. Of course the rheumatism +hunted up my weakest place and located itself there. This was +the place where the abbot put his arms about me and mashed me, what +time he was moved to testify his gratitude to me with an embrace. + +When at last I got out, I was a shadow. But everybody was full +of attentions and kindnesses, and these brought cheer back into +my life, and were the right medicine to help a convalescent swiftly +up toward health and strength again; so I gained fast. + +Sandy was worn out with nursing; so I made up my mind to turn out +and go a cruise alone, leaving her at the nunnery to rest up. +My idea was to disguise myself as a freeman of peasant degree +and wander through the country a week or two on foot. This would +give me a chance to eat and lodge with the lowliest and poorest +class of free citizens on equal terms. There was no other way +to inform myself perfectly of their everyday life and the operation +of the laws upon it. If I went among them as a gentleman, there +would be restraints and conventionalities which would shut me out +from their private joys and troubles, and I should get no further +than the outside shell. + +One morning I was out on a long walk to get up muscle for my trip, +and had climbed the ridge which bordered the northern extremity +of the valley, when I came upon an artificial opening in the face +of a low precipice, and recognized it by its location as a hermitage +which had often been pointed out to me from a distance as the den +of a hermit of high renown for dirt and austerity. I knew he had +lately been offered a situation in the Great Sahara, where lions +and sandflies made the hermit-life peculiarly attractive and +difficult, and had gone to Africa to take possession, so I thought +I would look in and see how the atmosphere of this den agreed +with its reputation. + +My surprise was great: the place was newly swept and scoured. +Then there was another surprise. Back in the gloom of the cavern +I heard the clink of a little bell, and then this exclamation: + +"Hello Central! Is this you, Camelot?--Behold, thou mayst glad +thy heart an thou hast faith to believe the wonderful when that +it cometh in unexpected guise and maketh itself manifest in +impossible places--here standeth in the flesh his mightiness +The Boss, and with thine own ears shall ye hear him speak!" + +Now what a radical reversal of things this was; what a jumbling +together of extravagant incongruities; what a fantastic conjunction +of opposites and irreconcilables--the home of the bogus miracle +become the home of a real one, the den of a mediaeval hermit turned +into a telephone office! + +The telephone clerk stepped into the light, and I recognized one +of my young fellows. I said: + +"How long has this office been established here, Ulfius?" + +"But since midnight, fair Sir Boss, an it please you. We saw many +lights in the valley, and so judged it well to make a station, +for that where so many lights be needs must they indicate a town +of goodly size." + +"Quite right. It isn't a town in the customary sense, but it's +a good stand, anyway. Do you know where you are?" + +"Of that I have had no time to make inquiry; for whenas my +comradeship moved hence upon their labors, leaving me in charge, +I got me to needed rest, purposing to inquire when I waked, and +report the place's name to Camelot for record." + +"Well, this is the Valley of Holiness." + +It didn't take; I mean, he didn't start at the name, as I had +supposed he would. He merely said: + +"I will so report it." + +"Why, the surrounding regions are filled with the noise of late +wonders that have happened here! You didn't hear of them?" + +"Ah, ye will remember we move by night, and avoid speech with all. +We learn naught but that we get by the telephone from Camelot." + +"Why _they_ know all about this thing. Haven't they told you anything +about the great miracle of the restoration of a holy fountain?" + +"Oh, _that_? Indeed yes. But the name of _this_ valley doth woundily +differ from the name of _that_ one; indeed to differ wider were not pos--" + +"What was that name, then?" + +"The Valley of Hellishness." + +"_That_ explains it. Confound a telephone, anyway. It is the very +demon for conveying similarities of sound that are miracles of +divergence from similarity of sense. But no matter, you know +the name of the place now. Call up Camelot." + +He did it, and had Clarence sent for. It was good to hear my boy's +voice again. It was like being home. After some affectionate +interchanges, and some account of my late illness, I said: + +"What is new?" + +"The king and queen and many of the court do start even in this +hour, to go to your valley to pay pious homage to the waters ye +have restored, and cleanse themselves of sin, and see the place +where the infernal spirit spouted true hell-flames to the clouds +--an ye listen sharply ye may hear me wink and hear me likewise +smile a smile, sith 'twas I that made selection of those flames +from out our stock and sent them by your order." + +"Does the king know the way to this place?" + +"The king?--no, nor to any other in his realms, mayhap; but the lads +that holp you with your miracle will be his guide and lead the way, +and appoint the places for rests at noons and sleeps at night." + +"This will bring them here--when?" + +"Mid-afternoon, or later, the third day." + +"Anything else in the way of news?" + +"The king hath begun the raising of the standing army ye suggested +to him; one regiment is complete and officered." + +"The mischief! I wanted a main hand in that myself. There is +only one body of men in the kingdom that are fitted to officer +a regular army." + +"Yes--and now ye will marvel to know there's not so much as one +West Pointer in that regiment." + +"What are you talking about? Are you in earnest?" + +"It is truly as I have said." + +"Why, this makes me uneasy. Who were chosen, and what was the +method? Competitive examination?" + +"Indeed, I know naught of the method. I but know this--these +officers be all of noble family, and are born--what is it you +call it?--chuckleheads." + +"There's something wrong, Clarence." + +"Comfort yourself, then; for two candidates for a lieutenancy do +travel hence with the king--young nobles both--and if you but wait +where you are you will hear them questioned." + +"That is news to the purpose. I will get one West Pointer in, +anyway. Mount a man and send him to that school with a message; +let him kill horses, if necessary, but he must be there before +sunset to-night and say--" + +"There is no need. I have laid a ground wire to the school. +Prithee let me connect you with it." + +It sounded good! In this atmosphere of telephones and lightning +communication with distant regions, I was breathing the breath +of life again after long suffocation. I realized, then, what a +creepy, dull, inanimate horror this land had been to me all these +years, and how I had been in such a stifled condition of mind as +to have grown used to it almost beyond the power to notice it. + +I gave my order to the superintendent of the Academy personally. +I also asked him to bring me some paper and a fountain pen and +a box or so of safety matches. I was getting tired of doing +without these conveniences. I could have them now, as I wasn't +going to wear armor any more at present, and therefore could get +at my pockets. + +When I got back to the monastery, I found a thing of interest +going on. The abbot and his monks were assembled in the great +hall, observing with childish wonder and faith the performances +of a new magician, a fresh arrival. His dress was the extreme of +the fantastic; as showy and foolish as the sort of thing an Indian +medicine-man wears. He was mowing, and mumbling, and gesticulating, +and drawing mystical figures in the air and on the floor,--the +regular thing, you know. He was a celebrity from Asia--so he +said, and that was enough. That sort of evidence was as good +as gold, and passed current everywhere. + +How easy and cheap it was to be a great magician on this fellow's +terms. His specialty was to tell you what any individual on the +face of the globe was doing at the moment; and what he had done +at any time in the past, and what he would do at any time in the +future. He asked if any would like to know what the Emperor of +the East was doing now? The sparkling eyes and the delighted rubbing +of hands made eloquent answer--this reverend crowd _would_ like to +know what that monarch was at, just as this moment. The fraud +went through some more mummery, and then made grave announcement: + +"The high and mighty Emperor of the East doth at this moment put +money in the palm of a holy begging friar--one, two, three pieces, +and they be all of silver." + +A buzz of admiring exclamations broke out, all around: + +"It is marvelous!" "Wonderful!" "What study, what labor, to have +acquired a so amazing power as this!" + +Would they like to know what the Supreme Lord of Inde was doing? +Yes. He told them what the Supreme Lord of Inde was doing. Then +he told them what the Sultan of Egypt was at; also what the King +of the Remote Seas was about. And so on and so on; and with each +new marvel the astonishment at his accuracy rose higher and higher. +They thought he must surely strike an uncertain place some time; +but no, he never had to hesitate, he always knew, and always with +unerring precision. I saw that if this thing went on I should lose +my supremacy, this fellow would capture my following, I should +be left out in the cold. I must put a cog in his wheel, and do it +right away, too. I said: + +"If I might ask, I should very greatly like to know what a certain +person is doing." + +"Speak, and freely. I will tell you." + +"It will be difficult--perhaps impossible." + +"My art knoweth not that word. The more difficult it is, the more +certainly will I reveal it to you." + +You see, I was working up the interest. It was getting pretty +high, too; you could see that by the craning necks all around, +and the half-suspended breathing. So now I climaxed it: + +"If you make no mistake--if you tell me truly what I want to +know--I will give you two hundred silver pennies." + +"The fortune is mine! I will tell you what you would know." + +"Then tell me what I am doing with my right hand." + +"Ah-h!" There was a general gasp of surprise. It had not occurred +to anybody in the crowd--that simple trick of inquiring about +somebody who wasn't ten thousand miles away. The magician was +hit hard; it was an emergency that had never happened in his +experience before, and it corked him; he didn't know how to meet +it. He looked stunned, confused; he couldn't say a word. "Come," +I said, "what are you waiting for? Is it possible you can answer up, +right off, and tell what anybody on the other side of the earth is +doing, and yet can't tell what a person is doing who isn't three +yards from you? Persons behind me know what I am doing with my +right hand--they will indorse you if you tell correctly." He was +still dumb. "Very well, I'll tell you why you don't speak up and +tell; it is because you don't know. _You_ a magician! Good friends, +this tramp is a mere fraud and liar." + +This distressed the monks and terrified them. They were not used +to hearing these awful beings called names, and they did not know +what might be the consequence. There was a dead silence now; +superstitious bodings were in every mind. The magician began to +pull his wits together, and when he presently smiled an easy, +nonchalant smile, it spread a mighty relief around; for it indicated +that his mood was not destructive. He said: + +"It hath struck me speechless, the frivolity of this person's +speech. Let all know, if perchance there be any who know it not, +that enchanters of my degree deign not to concern themselves with +the doings of any but kings, princes, emperors, them that be born +in the purple and them only. Had ye asked me what Arthur the great +king is doing, it were another matter, and I had told ye; but the +doings of a subject interest me not." + +"Oh, I misunderstood you. I thought you said 'anybody,' and so +I supposed 'anybody' included--well, anybody; that is, everybody." + +"It doth--anybody that is of lofty birth; and the better if +he be royal." + +"That, it meseemeth, might well be," said the abbot, who saw his +opportunity to smooth things and avert disaster, "for it were not +likely that so wonderful a gift as this would be conferred for +the revelation of the concerns of lesser beings than such as be +born near to the summits of greatness. Our Arthur the king--" + +"Would you know of him?" broke in the enchanter. + +"Most gladly, yea, and gratefully." + +Everybody was full of awe and interest again right away, the +incorrigible idiots. They watched the incantations absorbingly, +and looked at me with a "There, now, what can you say to that?" +air, when the announcement came: + +"The king is weary with the chase, and lieth in his palace these +two hours sleeping a dreamless sleep." + +"God's benison upon him!" said the abbot, and crossed himself; +"may that sleep be to the refreshment of his body and his soul." + +"And so it might be, if he were sleeping," I said, "but the king +is not sleeping, the king rides." + +Here was trouble again--a conflict of authority. Nobody knew which +of us to believe; I still had some reputation left. The magician's +scorn was stirred, and he said: + +"Lo, I have seen many wonderful soothsayers and prophets and +magicians in my life days, but none before that could sit idle and +see to the heart of things with never an incantation to help." + +"You have lived in the woods, and lost much by it. I use incantations +myself, as this good brotherhood are aware--but only on occasions +of moment." + +When it comes to sarcasming, I reckon I know how to keep my end up. +That jab made this fellow squirm. The abbot inquired after the +queen and the court, and got this information: + +"They be all on sleep, being overcome by fatigue, like as to the king." + +I said: + +"That is merely another lie. Half of them are about their amusements, +the queen and the other half are not sleeping, they ride. Now +perhaps you can spread yourself a little, and tell us where the king +and queen and all that are this moment riding with them are going?" + +"They sleep now, as I said; but on the morrow they will ride, +for they go a journey toward the sea." + +"And where will they be the day after to-morrow at vespers?" + +"Far to the north of Camelot, and half their journey will be done." + +"That is another lie, by the space of a hundred and fifty miles. +Their journey will not be merely half done, it will be all done, +and they will be _here_, in this valley." + +_That_ was a noble shot! It set the abbot and the monks in a whirl +of excitement, and it rocked the enchanter to his base. I followed +the thing right up: + +"If the king does not arrive, I will have myself ridden on a rail: +if he does I will ride you on a rail instead." + +Next day I went up to the telephone office and found that the king +had passed through two towns that were on the line. I spotted +his progress on the succeeding day in the same way. I kept these +matters to myself. The third day's reports showed that if he +kept up his gait he would arrive by four in the afternoon. There +was still no sign anywhere of interest in his coming; there seemed +to be no preparations making to receive him in state; a strange +thing, truly. Only one thing could explain this: that other +magician had been cutting under me, sure. This was true. I asked +a friend of mine, a monk, about it, and he said, yes, the magician +had tried some further enchantments and found out that the court +had concluded to make no journey at all, but stay at home. Think +of that! Observe how much a reputation was worth in such a country. +These people had seen me do the very showiest bit of magic in +history, and the only one within their memory that had a positive +value, and yet here they were, ready to take up with an adventurer +who could offer no evidence of his powers but his mere unproven word. + +However, it was not good politics to let the king come without +any fuss and feathers at all, so I went down and drummed up a +procession of pilgrims and smoked out a batch of hermits and +started them out at two o'clock to meet him. And that was the +sort of state he arrived in. The abbot was helpless with rage +and humiliation when I brought him out on a balcony and showed +him the head of the state marching in and never a monk on hand to +offer him welcome, and no stir of life or clang of joy-bell to glad +his spirit. He took one look and then flew to rouse out his forces. +The next minute the bells were dinning furiously, and the various +buildings were vomiting monks and nuns, who went swarming in a +rush toward the coming procession; and with them went that magician +--and he was on a rail, too, by the abbot's order; and his reputation +was in the mud, and mine was in the sky again. Yes, a man can +keep his trademark current in such a country, but he can't sit +around and do it; he has got to be on deck and attending to business +right along. + + + +CHAPTER XXV + +A COMPETITIVE EXAMINATION + +When the king traveled for change of air, or made a progress, or +visited a distant noble whom he wished to bankrupt with the cost +of his keep, part of the administration moved with him. It was +a fashion of the time. The Commission charged with the examination +of candidates for posts in the army came with the king to the +Valley, whereas they could have transacted their business just +as well at home. And although this expedition was strictly a +holiday excursion for the king, he kept some of his business +functions going just the same. He touched for the evil, as usual; +he held court in the gate at sunrise and tried cases, for he was +himself Chief Justice of the King's Bench. + +He shone very well in this latter office. He was a wise and humane +judge, and he clearly did his honest best and fairest,--according +to his lights. That is a large reservation. His lights--I mean +his rearing--often colored his decisions. Whenever there was a +dispute between a noble or gentleman and a person of lower degree, +the king's leanings and sympathies were for the former class always, +whether he suspected it or not. It was impossible that this should +be otherwise. The blunting effects of slavery upon the slaveholder's +moral perceptions are known and conceded, the world over; and a +privileged class, an aristocracy, is but a band of slaveholders +under another name. This has a harsh sound, and yet should not +be offensive to any--even to the noble himself--unless the fact +itself be an offense: for the statement simply formulates a fact. +The repulsive feature of slavery is the _thing_, not its name. One +needs but to hear an aristocrat speak of the classes that are below +him to recognize--and in but indifferently modified measure +--the very air and tone of the actual slaveholder; and behind these +are the slaveholder's spirit, the slaveholder's blunted feeling. +They are the result of the same cause in both cases: the possessor's +old and inbred custom of regarding himself as a superior being. +The king's judgments wrought frequent injustices, but it was merely +the fault of his training, his natural and unalterable sympathies. +He was as unfitted for a judgeship as would be the average mother +for the position of milk-distributor to starving children in +famine-time; her own children would fare a shade better than the rest. + +One very curious case came before the king. A young girl, an +orphan, who had a considerable estate, married a fine young fellow +who had nothing. The girl's property was within a seigniory held +by the Church. The bishop of the diocese, an arrogant scion of +the great nobility, claimed the girl's estate on the ground that +she had married privately, and thus had cheated the Church out +of one of its rights as lord of the seigniory--the one heretofore +referred to as le droit du seigneur. The penalty of refusal or +avoidance was confiscation. The girl's defense was, that the +lordship of the seigniory was vested in the bishop, and the +particular right here involved was not transferable, but must be +exercised by the lord himself or stand vacated; and that an older +law, of the Church itself, strictly barred the bishop from exercising +it. It was a very odd case, indeed. + +It reminded me of something I had read in my youth about the +ingenious way in which the aldermen of London raised the money +that built the Mansion House. A person who had not taken the +Sacrament according to the Anglican rite could not stand as a +candidate for sheriff of London. Thus Dissenters were ineligible; +they could not run if asked, they could not serve if elected. +The aldermen, who without any question were Yankees in disguise, +hit upon this neat device: they passed a by-law imposing a fine +of L400 upon any one who should refuse to be a candidate for +sheriff, and a fine of L600 upon any person who, after being +elected sheriff, refused to serve. Then they went to work and +elected a lot of Dissenters, one after another, and kept it up +until they had collected L15,000 in fines; and there stands the +stately Mansion House to this day, to keep the blushing citizen +in mind of a long past and lamented day when a band of Yankees +slipped into London and played games of the sort that has given +their race a unique and shady reputation among all truly good +and holy peoples that be in the earth. + +The girl's case seemed strong to me; the bishop's case was just +as strong. I did not see how the king was going to get out of +this hole. But he got out. I append his decision: + +"Truly I find small difficulty here, the matter being even a +child's affair for simpleness. An the young bride had conveyed +notice, as in duty bound, to her feudal lord and proper master +and protector the bishop, she had suffered no loss, for the said +bishop could have got a dispensation making him, for temporary +conveniency, eligible to the exercise of his said right, and thus +would she have kept all she had. Whereas, failing in her first +duty, she hath by that failure failed in all; for whoso, clinging +to a rope, severeth it above his hands, must fall; it being no +defense to claim that the rest of the rope is sound, neither any +deliverance from his peril, as he shall find. Pardy, the woman's +case is rotten at the source. It is the decree of the court that +she forfeit to the said lord bishop all her goods, even to the +last farthing that she doth possess, and be thereto mulcted in +the costs. Next!" + +Here was a tragic end to a beautiful honeymoon not yet three months +old. Poor young creatures! They had lived these three months +lapped to the lips in worldly comforts. These clothes and trinkets +they were wearing were as fine and dainty as the shrewdest stretch +of the sumptuary laws allowed to people of their degree; and in +these pretty clothes, she crying on his shoulder, and he trying +to comfort her with hopeful words set to the music of despair, +they went from the judgment seat out into the world homeless, +bedless, breadless; why, the very beggars by the roadsides were +not so poor as they. + +Well, the king was out of the hole; and on terms satisfactory to +the Church and the rest of the aristocracy, no doubt. Men write +many fine and plausible arguments in support of monarchy, but +the fact remains that where every man in a State has a vote, brutal +laws are impossible. Arthur's people were of course poor material +for a republic, because they had been debased so long by monarchy; +and yet even they would have been intelligent enough to make short +work of that law which the king had just been administering if it +had been submitted to their full and free vote. There is a phrase +which has grown so common in the world's mouth that it has come +to seem to have sense and meaning--the sense and meaning implied +when it is used; that is the phrase which refers to this or that or +the other nation as possibly being "capable of self-government"; +and the implied sense of it is, that there has been a nation +somewhere, some time or other which _wasn't_ capable of it--wasn't as +able to govern itself as some self-appointed specialists were or +would be to govern it. The master minds of all nations, in all +ages, have sprung in affluent multitude from the mass of the nation, +and from the mass of the nation only--not from its privileged +classes; and so, no matter what the nation's intellectual grade +was; whether high or low, the bulk of its ability was in the long +ranks of its nameless and its poor, and so it never saw the day +that it had not the material in abundance whereby to govern itself. +Which is to assert an always self-proven fact: that even the best +governed and most free and most enlightened monarchy is still +behind the best condition attainable by its people; and that the +same is true of kindred governments of lower grades, all the way +down to the lowest. + +King Arthur had hurried up the army business altogether beyond +my calculations. I had not supposed he would move in the matter +while I was away; and so I had not mapped out a scheme for determining +the merits of officers; I had only remarked that it would be wise +to submit every candidate to a sharp and searching examination; +and privately I meant to put together a list of military qualifications +that nobody could answer to but my West Pointers. That ought +to have been attended to before I left; for the king was so taken +with the idea of a standing army that he couldn't wait but must +get about it at once, and get up as good a scheme of examination +as he could invent out of his own head. + +I was impatient to see what this was; and to show, too, how much +more admirable was the one which I should display to the Examining +Board. I intimated this, gently, to the king, and it fired his +curiosity. When the Board was assembled, I followed him in; and +behind us came the candidates. One of these candidates was a bright +young West Pointer of mine, and with him were a couple of my +West Point professors. + +When I saw the Board, I did not know whether to cry or to laugh. +The head of it was the officer known to later centuries as Norroy +King-at-Arms! The two other members were chiefs of bureaus in +his department; and all three were priests, of course; all officials +who had to know how to read and write were priests. + +My candidate was called first, out of courtesy to me, and the head +of the Board opened on him with official solemnity: + +"Name?" + +"Mal-ease." + +"Son of?" + +"Webster." + +"Webster--Webster. H'm--I--my memory faileth to recall the +name. Condition?" + +"Weaver." + +"Weaver!--God keep us!" + +The king was staggered, from his summit to his foundations; one +clerk fainted, and the others came near it. The chairman pulled +himself together, and said indignantly: + +"It is sufficient. Get you hence." + +But I appealed to the king. I begged that my candidate might be +examined. The king was willing, but the Board, who were all +well-born folk, implored the king to spare them the indignity of +examining the weaver's son. I knew they didn't know enough to +examine him anyway, so I joined my prayers to theirs and the king +turned the duty over to my professors. I had had a blackboard +prepared, and it was put up now, and the circus began. It was +beautiful to hear the lad lay out the science of war, and wallow +in details of battle and siege, of supply, transportation, mining +and countermining, grand tactics, big strategy and little strategy, +signal service, infantry, cavalry, artillery, and all about siege +guns, field guns, gatling guns, rifled guns, smooth bores, musket +practice, revolver practice--and not a solitary word of it all +could these catfish make head or tail of, you understand--and it +was handsome to see him chalk off mathematical nightmares on the +blackboard that would stump the angels themselves, and do it like +nothing, too--all about eclipses, and comets, and solstices, and +constellations, and mean time, and sidereal time, and dinner time, +and bedtime, and every other imaginable thing above the clouds or +under them that you could harry or bullyrag an enemy with and make +him wish he hadn't come--and when the boy made his military salute +and stood aside at last, I was proud enough to hug him, and all +those other people were so dazed they looked partly petrified, +partly drunk, and wholly caught out and snowed under. I judged +that the cake was ours, and by a large majority. + +Education is a great thing. This was the same youth who had come +to West Point so ignorant that when I asked him, "If a general +officer should have a horse shot under him on the field of battle, +what ought he to do?" answered up naively and said: + +"Get up and brush himself." + +One of the young nobles was called up now. I thought I would +question him a little myself. I said: + +"Can your lordship read?" + +His face flushed indignantly, and he fired this at me: + +"Takest me for a clerk? I trow I am not of a blood that--" + +"Answer the question!" + +He crowded his wrath down and made out to answer "No." + +"Can you write?" + +He wanted to resent this, too, but I said: + +"You will confine yourself to the questions, and make no comments. +You are not here to air your blood or your graces, and nothing +of the sort will be permitted. Can you write?" + +"No." + +"Do you know the multiplication table?" + +"I wit not what ye refer to." + +"How much is 9 times 6?" + +"It is a mystery that is hidden from me by reason that the emergency +requiring the fathoming of it hath not in my life-days occurred, +and so, not having no need to know this thing, I abide barren +of the knowledge." + +"If A trade a barrel of onions to B, worth 2 pence the bushel, +in exchange for a sheep worth 4 pence and a dog worth a penny, +and C kill the dog before delivery, because bitten by the same, +who mistook him for D, what sum is still due to A from B, and +which party pays for the dog, C or D, and who gets the money? +If A, is the penny sufficient, or may he claim consequential damages +in the form of additional money to represent the possible profit +which might have inured from the dog, and classifiable as earned +increment, that is to say, usufruct?" + +"Verily, in the all-wise and unknowable providence of God, who +moveth in mysterious ways his wonders to perform, have I never +heard the fellow to this question for confusion of the mind and +congestion of the ducts of thought. Wherefore I beseech you let +the dog and the onions and these people of the strange and godless +names work out their several salvations from their piteous and +wonderful difficulties without help of mine, for indeed their +trouble is sufficient as it is, whereas an I tried to help I should +but damage their cause the more and yet mayhap not live myself +to see the desolation wrought." + +"What do you know of the laws of attraction and gravitation?" + +"If there be such, mayhap his grace the king did promulgate them +whilst that I lay sick about the beginning of the year and thereby +failed to hear his proclamation." + +"What do you know of the science of optics?" + +"I know of governors of places, and seneschals of castles, and +sheriffs of counties, and many like small offices and titles of +honor, but him you call the Science of Optics I have not heard +of before; peradventure it is a new dignity." + +"Yes, in this country." + +Try to conceive of this mollusk gravely applying for an official +position, of any kind under the sun! Why, he had all the earmarks +of a typewriter copyist, if you leave out the disposition to +contribute uninvited emendations of your grammar and punctuation. +It was unaccountable that he didn't attempt a little help of that +sort out of his majestic supply of incapacity for the job. But that +didn't prove that he hadn't material in him for the disposition, +it only proved that he wasn't a typewriter copyist yet. After +nagging him a little more, I let the professors loose on him and +they turned him inside out, on the line of scientific war, and +found him empty, of course. He knew somewhat about the warfare +of the time--bushwhacking around for ogres, and bull-fights in +the tournament ring, and such things--but otherwise he was empty +and useless. Then we took the other young noble in hand, and he +was the first one's twin, for ignorance and incapacity. I delivered +them into the hands of the chairman of the Board with the comfortable +consciousness that their cake was dough. They were examined in +the previous order of precedence. + +"Name, so please you?" + +"Pertipole, son of Sir Pertipole, Baron of Barley Mash." + +"Grandfather?" + +"Also Sir Pertipole, Baron of Barley Mash." + +"Great-grandfather?" + +"The same name and title." + +"Great-great-grandfather?" + +"We had none, worshipful sir, the line failing before it had +reached so far back." + +"It mattereth not. It is a good four generations, and fulfilleth +the requirements of the rule." + +"Fulfills what rule?" I asked. + +"The rule requiring four generations of nobility or else the +candidate is not eligible." + +"A man not eligible for a lieutenancy in the army unless he can +prove four generations of noble descent?" + +"Even so; neither lieutenant nor any other officer may be commissioned +without that qualification." + +"Oh, come, this is an astonishing thing. What good is such a +qualification as that?" + +"What good? It is a hardy question, fair sir and Boss, since it doth +go far to impugn the wisdom of even our holy Mother Church herself." + +"As how?" + +"For that she hath established the self-same rule regarding +saints. By her law none may be canonized until he hath lain dead +four generations." + +"I see, I see--it is the same thing. It is wonderful. In the one +case a man lies dead-alive four generations--mummified in ignorance +and sloth--and that qualifies him to command live people, and take +their weal and woe into his impotent hands; and in the other case, +a man lies bedded with death and worms four generations, and that +qualifies him for office in the celestial camp. Does the king's +grace approve of this strange law?" + +The king said: + +"Why, truly I see naught about it that is strange. All places of +honor and of profit do belong, by natural right, to them that be +of noble blood, and so these dignities in the army are their +property and would be so without this or any rule. The rule is +but to mark a limit. Its purpose is to keep out too recent blood, +which would bring into contempt these offices, and men of lofty +lineage would turn their backs and scorn to take them. I were +to blame an I permitted this calamity. _You_ can permit it an you +are minded so to do, for you have the delegated authority, but +that the king should do it were a most strange madness and not +comprehensible to any." + +"I yield. Proceed, sir Chief of the Herald's College." + +The chairman resumed as follows: + +"By what illustrious achievement for the honor of the Throne and +State did the founder of your great line lift himself to the +sacred dignity of the British nobility?" + +"He built a brewery." + +"Sire, the Board finds this candidate perfect in all the requirements +and qualifications for military command, and doth hold his case +open for decision after due examination of his competitor." + +The competitor came forward and proved exactly four generations +of nobility himself. So there was a tie in military qualifications +that far. + +He stood aside a moment, and Sir Pertipole was questioned further: + +"Of what condition was the wife of the founder of your line?" + +"She came of the highest landed gentry, yet she was not noble; +she was gracious and pure and charitable, of a blameless life and +character, insomuch that in these regards was she peer of the +best lady in the land." + +"That will do. Stand down." He called up the competing lordling +again, and asked: "What was the rank and condition of the +great-grandmother who conferred British nobility upon your +great house?" + +"She was a king's leman and did climb to that splendid eminence +by her own unholpen merit from the sewer where she was born." + +"Ah, this, indeed, is true nobility, this is the right and perfect +intermixture. The lieutenancy is yours, fair lord. Hold it not in +contempt; it is the humble step which will lead to grandeurs more +worthy of the splendor of an origin like to thine." + +I was down in the bottomless pit of humiliation. I had promised +myself an easy and zenith-scouring triumph, and this was the outcome! + +I was almost ashamed to look my poor disappointed cadet in the +face. I told him to go home and be patient, this wasn't the end. + +I had a private audience with the king, and made a proposition. +I said it was quite right to officer that regiment with nobilities, +and he couldn't have done a wiser thing. It would also be a good +idea to add five hundred officers to it; in fact, add as many +officers as there were nobles and relatives of nobles in the +country, even if there should finally be five times as many officers +as privates in it; and thus make it the crack regiment, the envied +regiment, the King's Own regiment, and entitled to fight on its +own hook and in its own way, and go whither it would and come +when it pleased, in time of war, and be utterly swell and independent. +This would make that regiment the heart's desire of all the +nobility, and they would all be satisfied and happy. Then we +would make up the rest of the standing army out of commonplace +materials, and officer it with nobodies, as was proper--nobodies +selected on a basis of mere efficiency--and we would make this +regiment toe the line, allow it no aristocratic freedom from +restraint, and force it to do all the work and persistent hammering, +to the end that whenever the King's Own was tired and wanted to go +off for a change and rummage around amongst ogres and have a good +time, it could go without uneasiness, knowing that matters were in +safe hands behind it, and business going to be continued at the +old stand, same as usual. The king was charmed with the idea. + +When I noticed that, it gave me a valuable notion. I thought +I saw my way out of an old and stubborn difficulty at last. You +see, the royalties of the Pendragon stock were a long-lived race +and very fruitful. Whenever a child was born to any of these +--and it was pretty often--there was wild joy in the nation's mouth, +and piteous sorrow in the nation's heart. The joy was questionable, +but the grief was honest. Because the event meant another call +for a Royal Grant. Long was the list of these royalties, and +they were a heavy and steadily increasing burden upon the treasury +and a menace to the crown. Yet Arthur could not believe this +latter fact, and he would not listen to any of my various projects +for substituting something in the place of the royal grants. If I +could have persuaded him to now and then provide a support for +one of these outlying scions from his own pocket, I could have +made a grand to-do over it, and it would have had a good effect +with the nation; but no, he wouldn't hear of such a thing. He had +something like a religious passion for royal grant; he seemed to +look upon it as a sort of sacred swag, and one could not irritate +him in any way so quickly and so surely as by an attack upon that +venerable institution. If I ventured to cautiously hint that there +was not another respectable family in England that would humble +itself to hold out the hat--however, that is as far as I ever got; +he always cut me short there, and peremptorily, too. + +But I believed I saw my chance at last. I would form this crack +regiment out of officers alone--not a single private. Half of it +should consist of nobles, who should fill all the places up to +Major-General, and serve gratis and pay their own expenses; and +they would be glad to do this when they should learn that the rest +of the regiment would consist exclusively of princes of the blood. +These princes of the blood should range in rank from Lieutenant-General +up to Field Marshal, and be gorgeously salaried and equipped and +fed by the state. Moreover--and this was the master stroke +--it should be decreed that these princely grandees should be always +addressed by a stunningly gaudy and awe-compelling title (which +I would presently invent), and they and they only in all England +should be so addressed. Finally, all princes of the blood should +have free choice; join that regiment, get that great title, and +renounce the royal grant, or stay out and receive a grant. Neatest +touch of all: unborn but imminent princes of the blood could be +_born_ into the regiment, and start fair, with good wages and a +permanent situation, upon due notice from the parents. + +All the boys would join, I was sure of that; so, all existing +grants would be relinquished; that the newly born would always +join was equally certain. Within sixty days that quaint and +bizarre anomaly, the Royal Grant, would cease to be a living fact, +and take its place among the curiosities of the past. + + + +CHAPTER XXVI + +THE FIRST NEWSPAPER + +When I told the king I was going out disguised as a petty freeman +to scour the country and familiarize myself with the humbler life +of the people, he was all afire with the novelty of the thing +in a minute, and was bound to take a chance in the adventure +himself--nothing should stop him--he would drop everything and +go along--it was the prettiest idea he had run across for many +a day. He wanted to glide out the back way and start at once; +but I showed him that that wouldn't answer. You see, he was billed +for the king's-evil--to touch for it, I mean--and it wouldn't be +right to disappoint the house and it wouldn't make a delay worth +considering, anyway, it was only a one-night stand. And I thought +he ought to tell the queen he was going away. He clouded up at +that and looked sad. I was sorry I had spoken, especially when +he said mournfully: + +"Thou forgettest that Launcelot is here; and where Launcelot is, +she noteth not the going forth of the king, nor what day he returneth." + +Of course, I changed the Subject. Yes, Guenever was beautiful, +it is true, but take her all around she was pretty slack. I never +meddled in these matters, they weren't my affair, but I did hate +to see the way things were going on, and I don't mind saying that +much. Many's the time she had asked me, "Sir Boss, hast seen +Sir Launcelot about?" but if ever she went fretting around for +the king I didn't happen to be around at the time. + +There was a very good lay-out for the king's-evil business--very +tidy and creditable. The king sat under a canopy of state; about +him were clustered a large body of the clergy in full canonicals. +Conspicuous, both for location and personal outfit, stood Marinel, +a hermit of the quack-doctor species, to introduce the sick. All +abroad over the spacious floor, and clear down to the doors, +in a thick jumble, lay or sat the scrofulous, under a strong light. +It was as good as a tableau; in fact, it had all the look of being +gotten up for that, though it wasn't. There were eight hundred +sick people present. The work was slow; it lacked the interest +of novelty for me, because I had seen the ceremonies before; +the thing soon became tedious, but the proprieties required me +to stick it out. The doctor was there for the reason that in all +such crowds there were many people who only imagined something +was the matter with them, and many who were consciously sound +but wanted the immortal honor of fleshly contact with a king, and +yet others who pretended to illness in order to get the piece of +coin that went with the touch. Up to this time this coin had been +a wee little gold piece worth about a third of a dollar. When you +consider how much that amount of money would buy, in that age +and country, and how usual it was to be scrofulous, when not dead, +you would understand that the annual king's-evil appropriation was +just the River and Harbor bill of that government for the grip it +took on the treasury and the chance it afforded for skinning the +surplus. So I had privately concluded to touch the treasury itself +for the king's-evil. I covered six-sevenths of the appropriation +into the treasury a week before starting from Camelot on my +adventures, and ordered that the other seventh be inflated into +five-cent nickels and delivered into the hands of the head clerk +of the King's Evil Department; a nickel to take the place of each +gold coin, you see, and do its work for it. It might strain the +nickel some, but I judged it could stand it. As a rule, I do not +approve of watering stock, but I considered it square enough +in this case, for it was just a gift, anyway. Of course, you can +water a gift as much as you want to; and I generally do. The old +gold and silver coins of the country were of ancient and unknown +origin, as a rule, but some of them were Roman; they were ill-shapen, +and seldom rounder than a moon that is a week past the full; they +were hammered, not minted, and they were so worn with use that +the devices upon them were as illegible as blisters, and looked +like them. I judged that a sharp, bright new nickel, with a +first-rate likeness of the king on one side of it and Guenever +on the other, and a blooming pious motto, would take the tuck out +of scrofula as handy as a nobler coin and please the scrofulous +fancy more; and I was right. This batch was the first it was +tried on, and it worked to a charm. The saving in expense was +a notable economy. You will see that by these figures: We touched +a trifle over 700 of the 800 patients; at former rates, this would +have cost the government about $240; at the new rate we pulled +through for about $35, thus saving upward of $200 at one swoop. +To appreciate the full magnitude of this stroke, consider these +other figures: the annual expenses of a national government amount +to the equivalent of a contribution of three days' average wages of +every individual of the population, counting every individual as +if he were a man. If you take a nation of 60,000,000, where average +wages are $2 per day, three days' wages taken from each individual +will provide $360,000,000 and pay the government's expenses. In my +day, in my own country, this money was collected from imposts, +and the citizen imagined that the foreign importer paid it, and it +made him comfortable to think so; whereas, in fact, it was paid +by the American people, and was so equally and exactly distributed +among them that the annual cost to the 100-millionaire and the +annual cost to the sucking child of the day-laborer was precisely +the same--each paid $6. Nothing could be equaler than that, +I reckon. Well, Scotland and Ireland were tributary to Arthur, +and the united populations of the British Islands amounted to +something less than 1,000,000. A mechanic's average wage was +3 cents a day, when he paid his own keep. By this rule the national +government's expenses were $90,000 a year, or about $250 a day. +Thus, by the substitution of nickels for gold on a king's-evil +day, I not only injured no one, dissatisfied no one, but pleased +all concerned and saved four-fifths of that day's national expense +into the bargain--a saving which would have been the equivalent +of $800,000 in my day in America. In making this substitution +I had drawn upon the wisdom of a very remote source--the wisdom +of my boyhood--for the true statesman does not despise any wisdom, +howsoever lowly may be its origin: in my boyhood I had always +saved my pennies and contributed buttons to the foreign missionary +cause. The buttons would answer the ignorant savage as well as +the coin, the coin would answer me better than the buttons; all +hands were happy and nobody hurt. + +Marinel took the patients as they came. He examined the candidate; +if he couldn't qualify he was warned off; if he could he was passed +along to the king. A priest pronounced the words, "They shall +lay their hands on the sick, and they shall recover." Then the king +stroked the ulcers, while the reading continued; finally, the +patient graduated and got his nickel--the king hanging it around +his neck himself--and was dismissed. Would you think that that +would cure? It certainly did. Any mummery will cure if the +patient's faith is strong in it. Up by Astolat there was a chapel +where the Virgin had once appeared to a girl who used to herd +geese around there--the girl said so herself--and they built the +chapel upon that spot and hung a picture in it representing the +occurrence--a picture which you would think it dangerous for a sick +person to approach; whereas, on the contrary, thousands of the lame +and the sick came and prayed before it every year and went away +whole and sound; and even the well could look upon it and live. +Of course, when I was told these things I did not believe them; +but when I went there and saw them I had to succumb. I saw the +cures effected myself; and they were real cures and not questionable. +I saw cripples whom I had seen around Camelot for years on crutches, +arrive and pray before that picture, and put down their crutches +and walk off without a limp. There were piles of crutches there +which had been left by such people as a testimony. + +In other places people operated on a patient's mind, without saying +a word to him, and cured him. In others, experts assembled patients +in a room and prayed over them, and appealed to their faith, and +those patients went away cured. Wherever you find a king who can't +cure the king's-evil you can be sure that the most valuable +superstition that supports his throne--the subject's belief in +the divine appointment of his sovereign--has passed away. In my +youth the monarchs of England had ceased to touch for the evil, +but there was no occasion for this diffidence: they could have +cured it forty-nine times in fifty. + +Well, when the priest had been droning for three hours, and the +good king polishing the evidences, and the sick were still pressing +forward as plenty as ever, I got to feeling intolerably bored. +I was sitting by an open window not far from the canopy of state. +For the five hundredth time a patient stood forward to have his +repulsivenesses stroked; again those words were being droned out: +"they shall lay their hands on the sick"--when outside there rang +clear as a clarion a note that enchanted my soul and tumbled +thirteen worthless centuries about my ears: "Camelot _Weekly +Hosannah and Literary Volcano!_--latest irruption--only two cents +--all about the big miracle in the Valley of Holiness!" One greater +than kings had arrived--the newsboy. But I was the only person +in all that throng who knew the meaning of this mighty birth, and +what this imperial magician was come into the world to do. + +I dropped a nickel out of the window and got my paper; the +Adam-newsboy of the world went around the corner to get my change; +is around the corner yet. It was delicious to see a newspaper +again, yet I was conscious of a secret shock when my eye fell upon +the first batch of display head-lines. I had lived in a clammy +atmosphere of reverence, respect, deference, so long that they +sent a quivery little cold wave through me: + + + HIGH TIMES IN THE VALLEY + + OF HOLINESS! + + ---- + + THE WATER-WORKS CORKED! + + ---- + + BRER MERLIN WORKS HIS ARTS, BUT GETS + LEFT? + + ---- + + But the Boss scores on his first Innings! + + ---- + + The Miraculous Well Uncorked amid + awful outbursts of + + INFERNAL FIRE AND SMOKE + ATHUNDER! + + ---- + + THE BUZZARD-ROOST ASTONISHED! + + ---- + + UNPARALLELED REJOIBINGS! + + +--and so on, and so on. Yes, it was too loud. Once I could have +enjoyed it and seen nothing out of the way about it, but now its +note was discordant. It was good Arkansas journalism, but this +was not Arkansas. Moreover, the next to the last line was calculated +to give offense to the hermits, and perhaps lose us their advertising. +Indeed, there was too lightsome a tone of flippancy all through +the paper. It was plain I had undergone a considerable change +without noticing it. I found myself unpleasantly affected by +pert little irreverencies which would have seemed but proper and +airy graces of speech at an earlier period of my life. There was an +abundance of the following breed of items, and they discomforted me: + + LOCAL SMOKE AND CINDERS. + + Sir Launcelot met up with old King + Agrivance of Ireland unexpectedly last + weok over on the moor south of Sir + Balmoral le Merveilleuse's hog dasture. + The widow has been notified. + + Expedition No. 3 will start adout the + first of mext month on a search f8r Sir + Sagramour le Desirous. It is in com- + and of the renowned Knight of the Red + Lawns, assissted by Sir Persant of Inde, + who is compete9t. intelligent, courte- + ous, and in every way a brick, and fur- + tHer assisted by Sir Palamides the Sara- + cen, who is no huckleberry hinself. + This is no pic-nic, these boys mean + busine&s. + + The readers of the Hosannah will re- + gret to learn that the hadndsome and + popular Sir Charolais of Gaul, who dur- + ing his four weeks' stay at the Bull and + Halibut, this city, has won every heart + by his polished manners and elegant + cPnversation, will pUll out to-day for + home. Give us another call, Charley! + + The bdsiness end of the funeral of + the late Sir Dalliance the duke's son of + Cornwall, killed in an encounter with + the Giant of the Knotted Bludgeon last + Tuesday on the borders of the Plain of + Enchantment was in the hands of the + ever affable and efficient Mumble, + prince of un3ertakers, then whom there + exists none by whom it were a more + satisfying pleasure to have the last sad + offices performed. Give him a trial. + + The cordial thanks of the Hosannah + office are due, from editor down to + devil, to the ever courteous and thought- + ful Lord High Stew d of the Palace's + Third Assistant V t for several sau- + ceTs of ice crEam a quality calculated + to make the ey of the recipients hu- + mid with grt ude; and it done it. + When this administration wants to + chalk up a desirable name for early + promotion, the Hosannah would like a + chance to sudgest. + + The Demoiselle Irene Dewlap, of + South Astolat, is visiting her uncle, the + popular host of the Cattlemen's Board- + ing Ho&se, Liver Lane, this city. + + Young Barker the bellows-mender is + hoMe again, and looks much improved + by his vacation round-up among the out- + lying smithies. See his ad. + +Of course it was good enough journalism for a beginning; I knew +that quite well, and yet it was somehow disappointing. The +"Court Circular" pleased me better; indeed, its simple and dignified +respectfulness was a distinct refreshment to me after all those +disgraceful familiarities. But even it could have been improved. +Do what one may, there is no getting an air of variety into a court +circular, I acknowledge that. There is a profound monotonousness +about its facts that baffles and defeats one's sincerest efforts +to make them sparkle and enthuse. The best way to manage--in fact, +the only sensible way--is to disguise repetitiousness of fact under +variety of form: skin your fact each time and lay on a new cuticle +of words. It deceives the eye; you think it is a new fact; it +gives you the idea that the court is carrying on like everything; +this excites you, and you drain the whole column, with a good +appetite, and perhaps never notice that it's a barrel of soup made +out of a single bean. Clarence's way was good, it was simple, +it was dignified, it was direct and business-like; all I say is, +it was not the best way: + + COURT CIRCULAR. + + On Monday, the king rode in the park. + " Tuesday, " " " + " Wendesday " " " + " Thursday " " " + " Friday, " " " + " Saturday " " " + " Sunday, " " " + + +However, take the paper by and large, I was vastly pleased with it. +Little crudities of a mechanical sort were observable here and +there, but there were not enough of them to amount to anything, +and it was good enough Arkansas proof-reading, anyhow, and better +than was needed in Arthur's day and realm. As a rule, the grammar +was leaky and the construction more or less lame; but I did not +much mind these things. They are common defects of my own, and +one mustn't criticise other people on grounds where he can't stand +perpendicular himself. + +I was hungry enough for literature to want to take down the whole +paper at this one meal, but I got only a few bites, and then had +to postpone, because the monks around me besieged me so with eager +questions: What is this curious thing? What is it for? Is it a +handkerchief?--saddle blanket?--part of a shirt? What is it made of? +How thin it is, and how dainty and frail; and how it rattles. +Will it wear, do you think, and won't the rain injure it? Is it +writing that appears on it, or is it only ornamentation? They +suspected it was writing, because those among them who knew how +to read Latin and had a smattering of Greek, recognized some of +the letters, but they could make nothing out of the result as a +whole. I put my information in the simplest form I could: + +"It is a public journal; I will explain what that is, another time. +It is not cloth, it is made of paper; some time I will explain +what paper is. The lines on it are reading matter; and not written +by hand, but printed; by and by I will explain what printing is. +A thousand of these sheets have been made, all exactly like this, +in every minute detail--they can't be told apart." Then they all +broke out with exclamations of surprise and admiration: + +"A thousand! Verily a mighty work--a year's work for many men." + +"No--merely a day's work for a man and a boy." + +They crossed themselves, and whiffed out a protective prayer or two. + +"Ah-h--a miracle, a wonder! Dark work of enchantment." + +I let it go at that. Then I read in a low voice, to as many as +could crowd their shaven heads within hearing distance, part of +the account of the miracle of the restoration of the well, and +was accompanied by astonished and reverent ejaculations all through: +"Ah-h-h!" "How true!" "Amazing, amazing!" "These be the very +haps as they happened, in marvelous exactness!" And might they +take this strange thing in their hands, and feel of it and examine +it?--they would be very careful. Yes. So they took it, handling +it as cautiously and devoutly as if it had been some holy thing +come from some supernatural region; and gently felt of its texture, +caressed its pleasant smooth surface with lingering touch, and +scanned the mysterious characters with fascinated eyes. These +grouped bent heads, these charmed faces, these speaking eyes +--how beautiful to me! For was not this my darling, and was not +all this mute wonder and interest and homage a most eloquent +tribute and unforced compliment to it? I knew, then, how a mother +feels when women, whether strangers or friends, take her new baby, +and close themselves about it with one eager impulse, and bend +their heads over it in a tranced adoration that makes all the rest +of the universe vanish out of their consciousness and be as if it +were not, for that time. I knew how she feels, and that there is +no other satisfied ambition, whether of king, conqueror, or poet, +that ever reaches half-way to that serene far summit or yields half +so divine a contentment. + +During all the rest of the seance my paper traveled from group to +group all up and down and about that huge hall, and my happy eye +was upon it always, and I sat motionless, steeped in satisfaction, +drunk with enjoyment. Yes, this was heaven; I was tasting it once, +if I might never taste it more. + + + +CHAPTER XXVII + +THE YANKEE AND THE KING TRAVEL INCOGNITO + +About bedtime I took the king to my private quarters to cut his +hair and help him get the hang of the lowly raiment he was to wear. +The high classes wore their hair banged across the forehead but +hanging to the shoulders the rest of the way around, whereas the +lowest ranks of commoners were banged fore and aft both; the slaves +were bangless, and allowed their hair free growth. So I inverted +a bowl over his head and cut away all the locks that hung below it. +I also trimmed his whiskers and mustache until they were only +about a half-inch long; and tried to do it inartistically, and +succeeded. It was a villainous disfigurement. When he got his +lubberly sandals on, and his long robe of coarse brown linen cloth, +which hung straight from his neck to his ankle-bones, he was no +longer the comeliest man in his kingdom, but one of the unhandsomest +and most commonplace and unattractive. We were dressed and barbered +alike, and could pass for small farmers, or farm bailiffs, or +shepherds, or carters; yes, or for village artisans, if we chose, +our costume being in effect universal among the poor, because of +its strength and cheapness. I don't mean that it was really cheap +to a very poor person, but I do mean that it was the cheapest +material there was for male attire--manufactured material, you +understand. + +We slipped away an hour before dawn, and by broad sun-up had made +eight or ten miles, and were in the midst of a sparsely settled +country. I had a pretty heavy knapsack; it was laden with +provisions--provisions for the king to taper down on, till he +could take to the coarse fare of the country without damage. + +I found a comfortable seat for the king by the roadside, and then +gave him a morsel or two to stay his stomach with. Then I said +I would find some water for him, and strolled away. Part of my +project was to get out of sight and sit down and rest a little +myself. It had always been my custom to stand when in his presence; +even at the council board, except upon those rare occasions when +the sitting was a very long one, extending over hours; then I had +a trifling little backless thing which was like a reversed culvert +and was as comfortable as the toothache. I didn't want to break +him in suddenly, but do it by degrees. We should have to sit +together now when in company, or people would notice; but it would +not be good politics for me to be playing equality with him when +there was no necessity for it. + +I found the water some three hundred yards away, and had been +resting about twenty minutes, when I heard voices. That is all +right, I thought--peasants going to work; nobody else likely to be +stirring this early. But the next moment these comers jingled into +sight around a turn of the road--smartly clad people of quality, +with luggage-mules and servants in their train! I was off like +a shot, through the bushes, by the shortest cut. For a while it +did seem that these people would pass the king before I could +get to him; but desperation gives you wings, you know, and I canted +my body forward, inflated my breast, and held my breath and flew. +I arrived. And in plenty good enough time, too. + +"Pardon, my king, but it's no time for ceremony--jump! Jump to +your feet--some quality are coming!" + +"Is that a marvel? Let them come." + +"But my liege! You must not be seen sitting. Rise!--and stand in +humble posture while they pass. You are a peasant, you know." + +"True--I had forgot it, so lost was I in planning of a huge war +with Gaul"--he was up by this time, but a farm could have got up +quicker, if there was any kind of a boom in real estate--"and +right-so a thought came randoming overthwart this majestic dream +the which--" + +"A humbler attitude, my lord the king--and quick! Duck your head! +--more!--still more!--droop it!" + +He did his honest best, but lord, it was no great things. He looked +as humble as the leaning tower at Pisa. It is the most you could +say of it. Indeed, it was such a thundering poor success that +it raised wondering scowls all along the line, and a gorgeous +flunkey at the tail end of it raised his whip; but I jumped in +time and was under it when it fell; and under cover of the volley +of coarse laughter which followed, I spoke up sharply and warned +the king to take no notice. He mastered himself for the moment, +but it was a sore tax; he wanted to eat up the procession. I said: + +"It would end our adventures at the very start; and we, being +without weapons, could do nothing with that armed gang. If we +are going to succeed in our emprise, we must not only look the +peasant but act the peasant." + +"It is wisdom; none can gainsay it. Let us go on, Sir Boss. +I will take note and learn, and do the best I may." + +He kept his word. He did the best he could, but I've seen better. +If you have ever seen an active, heedless, enterprising child +going diligently out of one mischief and into another all day +long, and an anxious mother at its heels all the while, and just +saving it by a hair from drowning itself or breaking its neck with +each new experiment, you've seen the king and me. + +If I could have foreseen what the thing was going to be like, +I should have said, No, if anybody wants to make his living +exhibiting a king as a peasant, let him take the layout; I can +do better with a menagerie, and last longer. And yet, during +the first three days I never allowed him to enter a hut or other +dwelling. If he could pass muster anywhere during his early +novitiate it would be in small inns and on the road; so to these +places we confined ourselves. Yes, he certainly did the best he +could, but what of that? He didn't improve a bit that I could see. + +He was always frightening me, always breaking out with fresh +astonishers, in new and unexpected places. Toward evening on +the second day, what does he do but blandly fetch out a dirk +from inside his robe! + +"Great guns, my liege, where did you get that?" + +"From a smuggler at the inn, yester eve." + +"What in the world possessed you to buy it?" + +"We have escaped divers dangers by wit--thy wit--but I have +bethought me that it were but prudence if I bore a weapon, too. +Thine might fail thee in some pinch." + +"But people of our condition are not allowed to carry arms. What +would a lord say--yes, or any other person of whatever condition +--if he caught an upstart peasant with a dagger on his person?" + +It was a lucky thing for us that nobody came along just then. +I persuaded him to throw the dirk away; and it was as easy as +persuading a child to give up some bright fresh new way of killing +itself. We walked along, silent and thinking. Finally the king said: + +"When ye know that I meditate a thing inconvenient, or that hath +a peril in it, why do you not warn me to cease from that project?" + +It was a startling question, and a puzzler. I didn't quite know +how to take hold of it, or what to say, and so, of course, I ended +by saying the natural thing: + +"But, sire, how can I know what your thoughts are?" + +The king stopped dead in his tracks, and stared at me. + +"I believed thou wert greater than Merlin; and truly in magic +thou art. But prophecy is greater than magic. Merlin is a prophet." + +I saw I had made a blunder. I must get back my lost ground. +After a deep reflection and careful planning, I said: + +"Sire, I have been misunderstood. I will explain. There are two +kinds of prophecy. One is the gift to foretell things that are but +a little way off, the other is the gift to foretell things that +are whole ages and centuries away. Which is the mightier gift, +do you think?" + +"Oh, the last, most surely!" + +"True. Does Merlin possess it?" + +"Partly, yes. He foretold mysteries about my birth and future +kingship that were twenty years away." + +"Has he ever gone beyond that?" + +"He would not claim more, I think." + +"It is probably his limit. All prophets have their limit. The limit +of some of the great prophets has been a hundred years." + +"These are few, I ween." + +"There have been two still greater ones, whose limit was four +hundred and six hundred years, and one whose limit compassed +even seven hundred and twenty." + +"Gramercy, it is marvelous!" + +"But what are these in comparison with me? They are nothing." + +"What? Canst thou truly look beyond even so vast a stretch +of time as--" + +"Seven hundred years? My liege, as clear as the vision of an eagle +does my prophetic eye penetrate and lay bare the future of this +world for nearly thirteen centuries and a half!" + +My land, you should have seen the king's eyes spread slowly open, +and lift the earth's entire atmosphere as much as an inch! That +settled Brer Merlin. One never had any occasion to prove his +facts, with these people; all he had to do was to state them. It +never occurred to anybody to doubt the statement. + +"Now, then," I continued, "I _could_ work both kinds of prophecy +--the long and the short--if I chose to take the trouble to keep +in practice; but I seldom exercise any but the long kind, because +the other is beneath my dignity. It is properer to Merlin's sort +--stump-tail prophets, as we call them in the profession. Of course, +I whet up now and then and flirt out a minor prophecy, but not +often--hardly ever, in fact. You will remember that there was +great talk, when you reached the Valley of Holiness, about my +having prophesied your coming and the very hour of your arrival, +two or three days beforehand." + +"Indeed, yes, I mind it now." + +"Well, I could have done it as much as forty times easier, and +piled on a thousand times more detail into the bargain, if it had +been five hundred years away instead of two or three days." + +"How amazing that it should be so!" + +"Yes, a genuine expert can always foretell a thing that is five +hundred years away easier than he can a thing that's only five +hundred seconds off." + +"And yet in reason it should clearly be the other way; it should +be five hundred times as easy to foretell the last as the first, +for, indeed, it is so close by that one uninspired might almost +see it. In truth, the law of prophecy doth contradict the likelihoods, +most strangely making the difficult easy, and the easy difficult." + +It was a wise head. A peasant's cap was no safe disguise for it; +you could know it for a king's under a diving-bell, if you could +hear it work its intellect. + +I had a new trade now, and plenty of business in it. The king +was as hungry to find out everything that was going to happen +during the next thirteen centuries as if he were expecting to live +in them. From that time out, I prophesied myself bald-headed +trying to supply the demand. I have done some indiscreet things in +my day, but this thing of playing myself for a prophet was the +worst. Still, it had its ameliorations. A prophet doesn't have +to have any brains. They are good to have, of course, for the +ordinary exigencies of life, but they are no use in professional +work. It is the restfulest vocation there is. When the spirit of +prophecy comes upon you, you merely cake your intellect and lay it +off in a cool place for a rest, and unship your jaw and leave it +alone; it will work itself: the result is prophecy. + +Every day a knight-errant or so came along, and the sight of them +fired the king's martial spirit every time. He would have forgotten +himself, sure, and said something to them in a style a suspicious +shade or so above his ostensible degree, and so I always got him +well out of the road in time. Then he would stand and look with +all his eyes; and a proud light would flash from them, and his +nostrils would inflate like a war-horse's, and I knew he was +longing for a brush with them. But about noon of the third day +I had stopped in the road to take a precaution which had been +suggested by the whip-stroke that had fallen to my share two days +before; a precaution which I had afterward decided to leave untaken, +I was so loath to institute it; but now I had just had a fresh +reminder: while striding heedlessly along, with jaw spread and +intellect at rest, for I was prophesying, I stubbed my toe and +fell sprawling. I was so pale I couldn't think for a moment; +then I got softly and carefully up and unstrapped my knapsack. +I had that dynamite bomb in it, done up in wool in a box. It was +a good thing to have along; the time would come when I could do +a valuable miracle with it, maybe, but it was a nervous thing +to have about me, and I didn't like to ask the king to carry it. +Yet I must either throw it away or think up some safe way to get +along with its society. I got it out and slipped it into my scrip, +and just then here came a couple of knights. The king stood, +stately as a statue, gazing toward them--had forgotten himself again, +of course--and before I could get a word of warning out, it was +time for him to skip, and well that he did it, too. He supposed +they would turn aside. Turn aside to avoid trampling peasant dirt +under foot? When had he ever turned aside himself--or ever had +the chance to do it, if a peasant saw him or any other noble knight +in time to judiciously save him the trouble? The knights paid +no attention to the king at all; it was his place to look out +himself, and if he hadn't skipped he would have been placidly +ridden down, and laughed at besides. + +The king was in a flaming fury, and launched out his challenge +and epithets with a most royal vigor. The knights were some little +distance by now. They halted, greatly surprised, and turned in +their saddles and looked back, as if wondering if it might be worth +while to bother with such scum as we. Then they wheeled and +started for us. Not a moment must be lost. I started for _them_. +I passed them at a rattling gait, and as I went by I flung out a +hair-lifting soul-scorching thirteen-jointed insult which made +the king's effort poor and cheap by comparison. I got it out of +the nineteenth century where they know how. They had such headway +that they were nearly to the king before they could check up; +then, frantic with rage, they stood up their horses on their hind +hoofs and whirled them around, and the next moment here they came, +breast to breast. I was seventy yards off, then, and scrambling up +a great bowlder at the roadside. When they were within thirty +yards of me they let their long lances droop to a level, depressed +their mailed heads, and so, with their horse-hair plumes streaming +straight out behind, most gallant to see, this lightning express +came tearing for me! When they were within fifteen yards, I sent +that bomb with a sure aim, and it struck the ground just under +the horses' noses. + +Yes, it was a neat thing, very neat and pretty to see. It resembled +a steamboat explosion on the Mississippi; and during the next +fifteen minutes we stood under a steady drizzle of microscopic +fragments of knights and hardware and horse-flesh. I say we, +for the king joined the audience, of course, as soon as he had got +his breath again. There was a hole there which would afford steady +work for all the people in that region for some years to come +--in trying to explain it, I mean; as for filling it up, that service +would be comparatively prompt, and would fall to the lot of a +select few--peasants of that seignory; and they wouldn't get +anything for it, either. + +But I explained it to the king myself. I said it was done with a +dynamite bomb. This information did him no damage, because it +left him as intelligent as he was before. However, it was a noble +miracle, in his eyes, and was another settler for Merlin. I thought +it well enough to explain that this was a miracle of so rare a sort +that it couldn't be done except when the atmospheric conditions +were just right. Otherwise he would be encoring it every time we +had a good subject, and that would be inconvenient, because I +hadn't any more bombs along. + + + +CHAPTER XXVIII + +DRILLING THE KING + +On the morning of the fourth day, when it was just sunrise, and we +had been tramping an hour in the chill dawn, I came to a resolution: +the king _must_ be drilled; things could not go on so, he must be +taken in hand and deliberately and conscientiously drilled, or we +couldn't ever venture to enter a dwelling; the very cats would know +this masquerader for a humbug and no peasant. So I called a halt +and said: + +"Sire, as between clothes and countenance, you are all right, there +is no discrepancy; but as between your clothes and your bearing, +you are all wrong, there is a most noticeable discrepancy. Your +soldierly stride, your lordly port--these will not do. You stand +too straight, your looks are too high, too confident. The cares +of a kingdom do not stoop the shoulders, they do not droop the chin, +they do not depress the high level of the eye-glance, they do not +put doubt and fear in the heart and hang out the signs of them +in slouching body and unsure step. It is the sordid cares of +the lowly born that do these things. You must learn the trick; +you must imitate the trademarks of poverty, misery, oppression, +insult, and the other several and common inhumanities that sap +the manliness out of a man and make him a loyal and proper and +approved subject and a satisfaction to his masters, or the very +infants will know you for better than your disguise, and we shall go +to pieces at the first hut we stop at. Pray try to walk like this." + +The king took careful note, and then tried an imitation. + +"Pretty fair--pretty fair. Chin a little lower, please--there, very +good. Eyes too high; pray don't look at the horizon, look at the +ground, ten steps in front of you. Ah--that is better, that is +very good. Wait, please; you betray too much vigor, too much +decision; you want more of a shamble. Look at me, please--this is +what I mean.... Now you are getting it; that is the idea--at least, +it sort of approaches it.... Yes, that is pretty fair. _But!_ +There is a great big something wanting, I don't quite know what +it is. Please walk thirty yards, so that I can get a perspective +on the thing.... Now, then--your head's right, speed's right, +shoulders right, eyes right, chin right, gait, carriage, general +style right--everything's right! And yet the fact remains, the +aggregate's wrong. The account don't balance. Do it again, +please.... _Now_ I think I begin to see what it is. Yes, I've +struck it. You see, the genuine spiritlessness is wanting; that's +what's the trouble. It's all _amateur_--mechanical details all +right, almost to a hair; everything about the delusion perfect, +except that it don't delude." + +"What, then, must one do, to prevail?" + +"Let me think... I can't seem to quite get at it. In fact, there +isn't anything that can right the matter but practice. This is +a good place for it: roots and stony ground to break up your +stately gait, a region not liable to interruption, only one field +and one hut in sight, and they so far away that nobody could +see us from there. It will be well to move a little off the road +and put in the whole day drilling you, sire." + +After the drill had gone on a little while, I said: + +"Now, sire, imagine that we are at the door of the hut yonder, +and the family are before us. Proceed, please--accost the head +of the house." + +The king unconsciously straightened up like a monument, and said, +with frozen austerity: + +"Varlet, bring a seat; and serve to me what cheer ye have." + +"Ah, your grace, that is not well done." + +"In what lacketh it?" + +"These people do not call _each other_ varlets." + +"Nay, is that true?" + +"Yes; only those above them call them so." + +"Then must I try again. I will call him villein." + +"No-no; for he may be a freeman." + +"Ah--so. Then peradventure I should call him goodman." + +"That would answer, your grace, but it would be still better if +you said friend, or brother." + +"Brother!--to dirt like that?" + +"Ah, but _we_ are pretending to be dirt like that, too." + +"It is even true. I will say it. Brother, bring a seat, and +thereto what cheer ye have, withal. Now 'tis right." + +"Not quite, not wholly right. You have asked for one, not _us_ +--for one, not both; food for one, a seat for one." + +The king looked puzzled--he wasn't a very heavy weight, intellectually. +His head was an hour-glass; it could stow an idea, but it had to do +it a grain at a time, not the whole idea at once. + +"Would _you_ have a seat also--and sit?" + +"If I did not sit, the man would perceive that we were only pretending +to be equals--and playing the deception pretty poorly, too." + +"It is well and truly said! How wonderful is truth, come it in +whatsoever unexpected form it may! Yes, he must bring out seats +and food for both, and in serving us present not ewer and napkin +with more show of respect to the one than to the other." + +"And there is even yet a detail that needs correcting. He must +bring nothing outside; we will go in--in among the dirt, and +possibly other repulsive things,--and take the food with the +household, and after the fashion of the house, and all on equal +terms, except the man be of the serf class; and finally, there +will be no ewer and no napkin, whether he be serf or free. Please +walk again, my liege. There--it is better--it is the best yet; +but not perfect. The shoulders have known no ignobler burden +than iron mail, and they will not stoop." + +"Give me, then, the bag. I will learn the spirit that goeth +with burdens that have not honor. It is the spirit that stoopeth +the shoulders, I ween, and not the weight; for armor is heavy, +yet it is a proud burden, and a man standeth straight in it.... +Nay, but me no buts, offer me no objections. I will have the thing. +Strap it upon my back." + +He was complete now with that knapsack on, and looked as little +like a king as any man I had ever seen. But it was an obstinate +pair of shoulders; they could not seem to learn the trick of +stooping with any sort of deceptive naturalness. The drill went on, +I prompting and correcting: + +"Now, make believe you are in debt, and eaten up by relentless +creditors; you are out of work--which is horse-shoeing, let us +say--and can get none; and your wife is sick, your children are +crying because they are hungry--" + +And so on, and so on. I drilled him as representing in turn all +sorts of people out of luck and suffering dire privations and +misfortunes. But lord, it was only just words, words--they meant +nothing in the world to him, I might just as well have whistled. +Words realize nothing, vivify nothing to you, unless you have +suffered in your own person the thing which the words try to +describe. There are wise people who talk ever so knowingly and +complacently about "the working classes," and satisfy themselves +that a day's hard intellectual work is very much harder than +a day's hard manual toil, and is righteously entitled to much +bigger pay. Why, they really think that, you know, because they +know all about the one, but haven't tried the other. But I know +all about both; and so far as I am concerned, there isn't money +enough in the universe to hire me to swing a pickaxe thirty days, +but I will do the hardest kind of intellectual work for just as +near nothing as you can cipher it down--and I will be satisfied, too. + +Intellectual "work" is misnamed; it is a pleasure, a dissipation, +and is its own highest reward. The poorest paid architect, +engineer, general, author, sculptor, painter, lecturer, advocate, +legislator, actor, preacher, singer is constructively in heaven +when he is at work; and as for the musician with the fiddle-bow +in his hand who sits in the midst of a great orchestra with the +ebbing and flowing tides of divine sound washing over him--why, +certainly, he is at work, if you wish to call it that, but lord, +it's a sarcasm just the same. The law of work does seem utterly +unfair--but there it is, and nothing can change it: the higher +the pay in enjoyment the worker gets out of it, the higher shall +be his pay in cash, also. And it's also the very law of those +transparent swindles, transmissible nobility and kingship. + + + +CHAPTER XXIX + +THE SMALLPOX HUT + +When we arrived at that hut at mid-afternoon, we saw no signs +of life about it. The field near by had been denuded of its crop +some time before, and had a skinned look, so exhaustively had +it been harvested and gleaned. Fences, sheds, everything had a +ruined look, and were eloquent of poverty. No animal was around +anywhere, no living thing in sight. The stillness was awful, it +was like the stillness of death. The cabin was a one-story one, +whose thatch was black with age, and ragged from lack of repair. + +The door stood a trifle ajar. We approached it stealthily--on tiptoe +and at half-breath--for that is the way one's feeling makes him do, +at such a time. The king knocked. We waited. No answer. Knocked +again. No answer. I pushed the door softly open and looked in. +I made out some dim forms, and a woman started up from the ground +and stared at me, as one does who is wakened from sleep. Presently +she found her voice: + +"Have mercy!" she pleaded. "All is taken, nothing is left." + +"I have not come to take anything, poor woman." + +"You are not a priest?" + +"No." + +"Nor come not from the lord of the manor?" + +"No, I am a stranger." + +"Oh, then, for the fear of God, who visits with misery and death +such as be harmless, tarry not here, but fly! This place is under +his curse--and his Church's." + +"Let me come in and help you--you are sick and in trouble." + +I was better used to the dim light now. I could see her hollow +eyes fixed upon me. I could see how emaciated she was. + +"I tell you the place is under the Church's ban. Save yourself +--and go, before some straggler see thee here, and report it." + +"Give yourself no trouble about me; I don't care anything for the +Church's curse. Let me help you." + +"Now all good spirits--if there be any such--bless thee for that +word. Would God I had a sup of water!--but hold, hold, forget +I said it, and fly; for there is that here that even he that +feareth not the Church must fear: this disease whereof we die. +Leave us, thou brave, good stranger, and take with thee such +whole and sincere blessing as them that be accursed can give." + +But before this I had picked up a wooden bowl and was rushing +past the king on my way to the brook. It was ten yards away. +When I got back and entered, the king was within, and was opening +the shutter that closed the window-hole, to let in air and light. +The place was full of a foul stench. I put the bowl to the woman's +lips, and as she gripped it with her eager talons the shutter came +open and a strong light flooded her face. Smallpox! + +I sprang to the king, and said in his ear: + +"Out of the door on the instant, sire! the woman is dying of that +disease that wasted the skirts of Camelot two years ago." + +He did not budge. + +"Of a truth I shall remain--and likewise help." + +I whispered again: + +"King, it must not be. You must go." + +"Ye mean well, and ye speak not unwisely. But it were shame that +a king should know fear, and shame that belted knight should +withhold his hand where be such as need succor. Peace, I will +not go. It is you who must go. The Church's ban is not upon me, +but it forbiddeth you to be here, and she will deal with you with +a heavy hand an word come to her of your trespass." + +It was a desperate place for him to be in, and might cost him his +life, but it was no use to argue with him. If he considered his +knightly honor at stake here, that was the end of argument; he +would stay, and nothing could prevent it; I was aware of that. +And so I dropped the subject. The woman spoke: + +"Fair sir, of your kindness will ye climb the ladder there, +and bring me news of what ye find? Be not afraid to report, +for times can come when even a mother's heart is past breaking +--being already broke." + +"Abide," said the king, "and give the woman to eat. I will go." +And he put down the knapsack. + +I turned to start, but the king had already started. He halted, +and looked down upon a man who lay in a dim light, and had not +noticed us thus far, or spoken. + +"Is it your husband?" the king asked. + +"Yes." + +"Is he asleep?" + +"God be thanked for that one charity, yes--these three hours. +Where shall I pay to the full, my gratitude! for my heart is +bursting with it for that sleep he sleepeth now." + +I said: + +"We will be careful. We will not wake him." + +"Ah, no, that ye will not, for he is dead." + +"Dead?" + +"Yes, what triumph it is to know it! None can harm him, none +insult him more. He is in heaven now, and happy; or if not there, +he bides in hell and is content; for in that place he will find +neither abbot nor yet bishop. We were boy and girl together; we +were man and wife these five and twenty years, and never separated +till this day. Think how long that is to love and suffer together. +This morning was he out of his mind, and in his fancy we were +boy and girl again and wandering in the happy fields; and so in +that innocent glad converse wandered he far and farther, still +lightly gossiping, and entered into those other fields we know +not of, and was shut away from mortal sight. And so there was +no parting, for in his fancy I went with him; he knew not but +I went with him, my hand in his--my young soft hand, not this +withered claw. Ah, yes, to go, and know it not; to separate and +know it not; how could one go peace--fuller than that? It was +his reward for a cruel life patiently borne." + +There was a slight noise from the direction of the dim corner where +the ladder was. It was the king descending. I could see that he +was bearing something in one arm, and assisting himself with the +other. He came forward into the light; upon his breast lay a +slender girl of fifteen. She was but half conscious; she was dying +of smallpox. Here was heroism at its last and loftiest possibility, +its utmost summit; this was challenging death in the open field +unarmed, with all the odds against the challenger, no reward set +upon the contest, and no admiring world in silks and cloth of gold +to gaze and applaud; and yet the king's bearing was as serenely +brave as it had always been in those cheaper contests where knight +meets knight in equal fight and clothed in protecting steel. He +was great now; sublimely great. The rude statues of his ancestors +in his palace should have an addition--I would see to that; and it +would not be a mailed king killing a giant or a dragon, like the +rest, it would be a king in commoner's garb bearing death in his +arms that a peasant mother might look her last upon her child and +be comforted. + +He laid the girl down by her mother, who poured out endearments +and caresses from an overflowing heart, and one could detect a +flickering faint light of response in the child's eyes, but that +was all. The mother hung over her, kissing her, petting her, and +imploring her to speak, but the lips only moved and no sound came. +I snatched my liquor flask from my knapsack, but the woman forbade +me, and said: + +"No--she does not suffer; it is better so. It might bring her back +to life. None that be so good and kind as ye are would do her +that cruel hurt. For look you--what is left to live for? Her +brothers are gone, her father is gone, her mother goeth, the +Church's curse is upon her, and none may shelter or befriend her +even though she lay perishing in the road. She is desolate. I have +not asked you, good heart, if her sister be still on live, here +overhead; I had no need; ye had gone back, else, and not left +the poor thing forsaken--" + +"She lieth at peace," interrupted the king, in a subdued voice. + +"I would not change it. How rich is this day in happiness! Ah, +my Annis, thou shalt join thy sister soon--thou'rt on thy way, +and these be merciful friends that will not hinder." + +And so she fell to murmuring and cooing over the girl again, and +softly stroking her face and hair, and kissing her and calling her +by endearing names; but there was scarcely sign of response now +in the glazing eyes. I saw tears well from the king's eyes, and +trickle down his face. The woman noticed them, too, and said: + +"Ah, I know that sign: thou'st a wife at home, poor soul, and +you and she have gone hungry to bed, many's the time, that the +little ones might have your crust; you know what poverty is, and +the daily insults of your betters, and the heavy hand of the Church +and the king." + +The king winced under this accidental home-shot, but kept still; +he was learning his part; and he was playing it well, too, for +a pretty dull beginner. I struck up a diversion. I offered the +woman food and liquor, but she refused both. She would allow +nothing to come between her and the release of death. Then I slipped +away and brought the dead child from aloft, and laid it by her. +This broke her down again, and there was another scene that was +full of heartbreak. By and by I made another diversion, and beguiled +her to sketch her story. + +"Ye know it well yourselves, having suffered it--for truly none +of our condition in Britain escape it. It is the old, weary tale. +We fought and struggled and succeeded; meaning by success, that +we lived and did not die; more than that is not to be claimed. No +troubles came that we could not outlive, till this year brought +them; then came they all at once, as one might say, and overwhelmed +us. Years ago the lord of the manor planted certain fruit trees on +our farm; in the best part of it, too--a grievous wrong and shame--" + +"But it was his right," interrupted the king. + +"None denieth that, indeed; an the law mean anything, what is +the lord's is his, and what is mine is his also. Our farm was +ours by lease, therefore 'twas likewise his, to do with it as he +would. Some little time ago, three of those trees were found hewn +down. Our three grown sons ran frightened to report the crime. +Well, in his lordship's dungeon there they lie, who saith there +shall they lie and rot till they confess. They have naught to +confess, being innocent, wherefore there will they remain until +they die. Ye know that right well, I ween. Think how this left us; +a man, a woman and two children, to gather a crop that was planted +by so much greater force, yes, and protect it night and day from +pigeons and prowling animals that be sacred and must not be hurt +by any of our sort. When my lord's crop was nearly ready for +the harvest, so also was ours; when his bell rang to call us to +his fields to harvest his crop for nothing, he would not allow that +I and my two girls should count for our three captive sons, but +for only two of them; so, for the lacking one were we daily fined. +All this time our own crop was perishing through neglect; and so +both the priest and his lordship fined us because their shares +of it were suffering through damage. In the end the fines ate up +our crop--and they took it all; they took it all and made us harvest +it for them, without pay or food, and we starving. Then the worst +came when I, being out of my mind with hunger and loss of my boys, +and grief to see my husband and my little maids in rags and misery +and despair, uttered a deep blasphemy--oh! a thousand of them! +--against the Church and the Church's ways. It was ten days ago. +I had fallen sick with this disease, and it was to the priest +I said the words, for he was come to chide me for lack of due +humility under the chastening hand of God. He carried my trespass +to his betters; I was stubborn; wherefore, presently upon my head +and upon all heads that were dear to me, fell the curse of Rome. + +"Since that day we are avoided, shunned with horror. None has +come near this hut to know whether we live or not. The rest of us +were taken down. Then I roused me and got up, as wife and mother +will. It was little they could have eaten in any case; it was +less than little they had to eat. But there was water, and I gave +them that. How they craved it! and how they blessed it! But the +end came yesterday; my strength broke down. Yesterday was the +last time I ever saw my husband and this youngest child alive. +I have lain here all these hours--these ages, ye may say--listening, +listening for any sound up there that--" + +She gave a sharp quick glance at her eldest daughter, then cried +out, "Oh, my darling!" and feebly gathered the stiffening form +to her sheltering arms. She had recognized the death-rattle. + + + +CHAPTER XXX + +THE TRAGEDY OF THE MANOR-HOUSE + +At midnight all was over, and we sat in the presence of four +corpses. We covered them with such rags as we could find, and +started away, fastening the door behind us. Their home must be +these people's grave, for they could not have Christian burial, +or be admitted to consecrated ground. They were as dogs, wild +beasts, lepers, and no soul that valued its hope of eternal life +would throw it away by meddling in any sort with these rebuked and +smitten outcasts. + +We had not moved four steps when I caught a sound as of footsteps +upon gravel. My heart flew to my throat. We must not be seen +coming from that house. I plucked at the king's robe and we drew +back and took shelter behind the corner of the cabin. + +"Now we are safe," I said, "but it was a close call--so to speak. +If the night had been lighter he might have seen us, no doubt, +he seemed to be so near." + +"Mayhap it is but a beast and not a man at all." + +"True. But man or beast, it will be wise to stay here a minute +and let it get by and out of the way." + +"Hark! It cometh hither." + +True again. The step was coming toward us--straight toward the hut. +It must be a beast, then, and we might as well have saved our +trepidation. I was going to step out, but the king laid his hand +upon my arm. There was a moment of silence, then we heard a soft +knock on the cabin door. It made me shiver. Presently the knock +was repeated, and then we heard these words in a guarded voice: + +"Mother! Father! Open--we have got free, and we bring news to +pale your cheeks but glad your hearts; and we may not tarry, but +must fly! And--but they answer not. Mother! father!--" + +I drew the king toward the other end of the hut and whispered: + +"Come--now we can get to the road." + +The king hesitated, was going to demur; but just then we heard +the door give way, and knew that those desolate men were in the +presence of their dead. + +"Come, my liege! in a moment they will strike a light, and then +will follow that which it would break your heart to hear." + +He did not hesitate this time. The moment we were in the road +I ran; and after a moment he threw dignity aside and followed. +I did not want to think of what was happening in the hut--I couldn't +bear it; I wanted to drive it out of my mind; so I struck into the +first subject that lay under that one in my mind: + +"I have had the disease those people died of, and so have nothing +to fear; but if you have not had it also--" + +He broke in upon me to say he was in trouble, and it was his +conscience that was troubling him: + +"These young men have got free, they say--but _how_? It is not +likely that their lord hath set them free." + +"Oh, no, I make no doubt they escaped." + +"That is my trouble; I have a fear that this is so, and your +suspicion doth confirm it, you having the same fear." + +"I should not call it by that name though. I do suspect that they +escaped, but if they did, I am not sorry, certainly." + +"I am not sorry, I _think_--but--" + +"What is it? What is there for one to be troubled about?" + +"_If_ they did escape, then are we bound in duty to lay hands upon +them and deliver them again to their lord; for it is not seemly +that one of his quality should suffer a so insolent and high-handed +outrage from persons of their base degree." + +There it was again. He could see only one side of it. He was +born so, educated so, his veins were full of ancestral blood that +was rotten with this sort of unconscious brutality, brought down +by inheritance from a long procession of hearts that had each done +its share toward poisoning the stream. To imprison these men +without proof, and starve their kindred, was no harm, for they were +merely peasants and subject to the will and pleasure of their lord, +no matter what fearful form it might take; but for these men to +break out of unjust captivity was insult and outrage, and a thing +not to be countenanced by any conscientious person who knew his +duty to his sacred caste. + +I worked more than half an hour before I got him to change the +subject--and even then an outside matter did it for me. This was +a something which caught our eyes as we struck the summit of a +small hill--a red glow, a good way off. + +"That's a fire," said I. + +Fires interested me considerably, because I was getting a good +deal of an insurance business started, and was also training some +horses and building some steam fire-engines, with an eye to a paid +fire department by and by. The priests opposed both my fire and +life insurance, on the ground that it was an insolent attempt to +hinder the decrees of God; and if you pointed out that they did not +hinder the decrees in the least, but only modified the hard +consequences of them if you took out policies and had luck, they +retorted that that was gambling against the decrees of God, and was +just as bad. So they managed to damage those industries more +or less, but I got even on my accident business. As a rule, a knight +is a lummux, and some times even a labrick, and hence open to pretty +poor arguments when they come glibly from a superstition-monger, +but even _he_ could see the practical side of a thing once in a while; +and so of late you couldn't clean up a tournament and pile the +result without finding one of my accident-tickets in every helmet. + +We stood there awhile, in the thick darkness and stillness, looking +toward the red blur in the distance, and trying to make out the +meaning of a far-away murmur that rose and fell fitfully on the +night. Sometimes it swelled up and for a moment seemed less +remote; but when we were hopefully expecting it to betray its cause +and nature, it dulled and sank again, carrying its mystery with it. +We started down the hill in its direction, and the winding road +plunged us at once into almost solid darkness--darkness that was +packed and crammed in between two tall forest walls. We groped +along down for half a mile, perhaps, that murmur growing more and +more distinct all the time. The coming storm threatening more and +more, with now and then a little shiver of wind, a faint show of +lightning, and dull grumblings of distant thunder. I was in the +lead. I ran against something--a soft heavy something which gave, +slightly, to the impulse of my weight; at the same moment the +lightning glared out, and within a foot of my face was the writhing +face of a man who was hanging from the limb of a tree! That is, +it seemed to be writhing, but it was not. It was a grewsome sight. +Straightway there was an ear-splitting explosion of thunder, and +the bottom of heaven fell out; the rain poured down in a deluge. +No matter, we must try to cut this man down, on the chance that +there might be life in him yet, mustn't we? The lightning came +quick and sharp now, and the place was alternately noonday and +midnight. One moment the man would be hanging before me in an +intense light, and the next he was blotted out again in the darkness. +I told the king we must cut him down. The king at once objected. + +"If he hanged himself, he was willing to lose him property to +his lord; so let him be. If others hanged him, belike they had +the right--let him hang." + +"But--" + +"But me no buts, but even leave him as he is. And for yet another +reason. When the lightning cometh again--there, look abroad." + +Two others hanging, within fifty yards of us! + +"It is not weather meet for doing useless courtesies unto dead folk. +They are past thanking you. Come--it is unprofitable to tarry here." + +There was reason in what he said, so we moved on. Within the next +mile we counted six more hanging forms by the blaze of the lightning, +and altogether it was a grisly excursion. That murmur was a murmur +no longer, it was a roar; a roar of men's voices. A man came flying +by now, dimly through the darkness, and other men chasing him. +They disappeared. Presently another case of the kind occurred, +and then another and another. Then a sudden turn of the road +brought us in sight of that fire--it was a large manor-house, and +little or nothing was left of it--and everywhere men were flying +and other men raging after them in pursuit. + +I warned the king that this was not a safe place for strangers. +We would better get away from the light, until matters should +improve. We stepped back a little, and hid in the edge of the +wood. From this hiding-place we saw both men and women hunted +by the mob. The fearful work went on until nearly dawn. Then, +the fire being out and the storm spent, the voices and flying +footsteps presently ceased, and darkness and stillness reigned again. + +We ventured out, and hurried cautiously away; and although we were +worn out and sleepy, we kept on until we had put this place some +miles behind us. Then we asked hospitality at the hut of a charcoal +burner, and got what was to be had. A woman was up and about, but +the man was still asleep, on a straw shake-down, on the clay floor. +The woman seemed uneasy until I explained that we were travelers +and had lost our way and been wandering in the woods all night. +She became talkative, then, and asked if we had heard of the +terrible goings-on at the manor-house of Abblasoure. Yes, we had +heard of them, but what we wanted now was rest and sleep. The +king broke in: + +"Sell us the house and take yourselves away, for we be perilous +company, being late come from people that died of the Spotted Death." + +It was good of him, but unnecessary. One of the commonest decorations +of the nation was the waffle-iron face. I had early noticed that +the woman and her husband were both so decorated. She made us +entirely welcome, and had no fears; and plainly she was immensely +impressed by the king's proposition; for, of course, it was a good +deal of an event in her life to run across a person of the king's +humble appearance who was ready to buy a man's house for the sake +of a night's lodging. It gave her a large respect for us, and she +strained the lean possibilities of her hovel to the utmost to make +us comfortable. + +We slept till far into the afternoon, and then got up hungry enough to +make cotter fare quite palatable to the king, the more particularly +as it was scant in quantity. And also in variety; it consisted +solely of onions, salt, and the national black bread made out of +horse-feed. The woman told us about the affair of the evening +before. At ten or eleven at night, when everybody was in bed, +the manor-house burst into flames. The country-side swarmed to +the rescue, and the family were saved, with one exception, the +master. He did not appear. Everybody was frantic over this loss, +and two brave yeomen sacrificed their lives in ransacking the +burning house seeking that valuable personage. But after a while +he was found--what was left of him--which was his corpse. It was +in a copse three hundred yards away, bound, gagged, stabbed in a +dozen places. + +Who had done this? Suspicion fell upon a humble family in the +neighborhood who had been lately treated with peculiar harshness +by the baron; and from these people the suspicion easily extended +itself to their relatives and familiars. A suspicion was enough; +my lord's liveried retainers proclaimed an instant crusade against +these people, and were promptly joined by the community in general. +The woman's husband had been active with the mob, and had not +returned home until nearly dawn. He was gone now to find out +what the general result had been. While we were still talking he +came back from his quest. His report was revolting enough. Eighteen +persons hanged or butchered, and two yeomen and thirteen prisoners +lost in the fire. + +"And how many prisoners were there altogether in the vaults?" + +"Thirteen." + +"Then every one of them was lost?" + +"Yes, all." + +"But the people arrived in time to save the family; how is it they +could save none of the prisoners?" + +The man looked puzzled, and said: + +"Would one unlock the vaults at such a time? Marry, some would +have escaped." + +"Then you mean that nobody _did_ unlock them?" + +"None went near them, either to lock or unlock. It standeth to +reason that the bolts were fast; wherefore it was only needful +to establish a watch, so that if any broke the bonds he might not +escape, but be taken. None were taken." + +"Natheless, three did escape," said the king, "and ye will do well +to publish it and set justice upon their track, for these murthered +the baron and fired the house." + +I was just expecting he would come out with that. For a moment +the man and his wife showed an eager interest in this news and +an impatience to go out and spread it; then a sudden something +else betrayed itself in their faces, and they began to ask questions. +I answered the questions myself, and narrowly watched the effects +produced. I was soon satisfied that the knowledge of who these +three prisoners were had somehow changed the atmosphere; that +our hosts' continued eagerness to go and spread the news was now +only pretended and not real. The king did not notice the change, +and I was glad of that. I worked the conversation around toward +other details of the night's proceedings, and noted that these +people were relieved to have it take that direction. + +The painful thing observable about all this business was the +alacrity with which this oppressed community had turned their +cruel hands against their own class in the interest of the common +oppressor. This man and woman seemed to feel that in a quarrel +between a person of their own class and his lord, it was the natural +and proper and rightful thing for that poor devil's whole caste +to side with the master and fight his battle for him, without ever +stopping to inquire into the rights or wrongs of the matter. This +man had been out helping to hang his neighbors, and had done his +work with zeal, and yet was aware that there was nothing against +them but a mere suspicion, with nothing back of it describable +as evidence, still neither he nor his wife seemed to see anything +horrible about it. + +This was depressing--to a man with the dream of a republic in his +head. It reminded me of a time thirteen centuries away, when +the "poor whites" of our South who were always despised and +frequently insulted by the slave-lords around them, and who owed +their base condition simply to the presence of slavery in their +midst, were yet pusillanimously ready to side with the slave-lords +in all political moves for the upholding and perpetuating of +slavery, and did also finally shoulder their muskets and pour out +their lives in an effort to prevent the destruction of that very +institution which degraded them. And there was only one redeeming +feature connected with that pitiful piece of history; and that was, +that secretly the "poor white" did detest the slave-lord, and did +feel his own shame. That feeling was not brought to the surface, +but the fact that it was there and could have been brought out, +under favoring circumstances, was something--in fact, it was enough; +for it showed that a man is at bottom a man, after all, even if it +doesn't show on the outside. + +Well, as it turned out, this charcoal burner was just the twin of +the Southern "poor white" of the far future. The king presently +showed impatience, and said: + +"An ye prattle here all the day, justice will miscarry. Think ye +the criminals will abide in their father's house? They are fleeing, +they are not waiting. You should look to it that a party of horse +be set upon their track." + +The woman paled slightly, but quite perceptibly, and the man looked +flustered and irresolute. I said: + +"Come, friend, I will walk a little way with you, and explain which +direction I think they would try to take. If they were merely +resisters of the gabelle or some kindred absurdity I would try +to protect them from capture; but when men murder a person of +high degree and likewise burn his house, that is another matter." + +The last remark was for the king--to quiet him. On the road +the man pulled his resolution together, and began the march with +a steady gait, but there was no eagerness in it. By and by I said: + +"What relation were these men to you--cousins?" + +He turned as white as his layer of charcoal would let him, and +stopped, trembling. + +"Ah, my God, how know ye that?" + +"I didn't know it; it was a chance guess." + +"Poor lads, they are lost. And good lads they were, too." + +"Were you actually going yonder to tell on them?" + +He didn't quite know how to take that; but he said, hesitatingly: + +"Ye-s." + +"Then I think you are a damned scoundrel!" + +It made him as glad as if I had called him an angel. + +"Say the good words again, brother! for surely ye mean that ye +would not betray me an I failed of my duty." + +"Duty? There is no duty in the matter, except the duty to keep +still and let those men get away. They've done a righteous deed." + +He looked pleased; pleased, and touched with apprehension at the +same time. He looked up and down the road to see that no one +was coming, and then said in a cautious voice: + +"From what land come you, brother, that you speak such perilous +words, and seem not to be afraid?" + +"They are not perilous words when spoken to one of my own caste, +I take it. You would not tell anybody I said them?" + +"I? I would be drawn asunder by wild horses first." + +"Well, then, let me say my say. I have no fears of your repeating +it. I think devil's work has been done last night upon those +innocent poor people. That old baron got only what he deserved. +If I had my way, all his kind should have the same luck." + +Fear and depression vanished from the man's manner, and gratefulness +and a brave animation took their place: + +"Even though you be a spy, and your words a trap for my undoing, +yet are they such refreshment that to hear them again and others +like to them, I would go to the gallows happy, as having had one +good feast at least in a starved life. And I will say my say now, +and ye may report it if ye be so minded. I helped to hang my +neighbors for that it were peril to my own life to show lack of +zeal in the master's cause; the others helped for none other reason. +All rejoice to-day that he is dead, but all do go about seemingly +sorrowing, and shedding the hypocrite's tear, for in that lies +safety. I have said the words, I have said the words! the only +ones that have ever tasted good in my mouth, and the reward of +that taste is sufficient. Lead on, an ye will, be it even to the +scaffold, for I am ready." + +There it was, you see. A man is a man, at bottom. Whole ages +of abuse and oppression cannot crush the manhood clear out of him. +Whoever thinks it a mistake is himself mistaken. Yes, there is +plenty good enough material for a republic in the most degraded +people that ever existed--even the Russians; plenty of manhood +in them--even in the Germans--if one could but force it out of +its timid and suspicious privacy, to overthrow and trample in the +mud any throne that ever was set up and any nobility that ever +supported it. We should see certain things yet, let us hope and +believe. First, a modified monarchy, till Arthur's days were done, +then the destruction of the throne, nobility abolished, every +member of it bound out to some useful trade, universal suffrage +instituted, and the whole government placed in the hands of the +men and women of the nation there to remain. Yes, there was no +occasion to give up my dream yet a while. + + + +CHAPTER XXXI + +MARCO + +We strolled along in a sufficiently indolent fashion now, and +talked. We must dispose of about the amount of time it ought +to take to go to the little hamlet of Abblasoure and put justice +on the track of those murderers and get back home again. And +meantime I had an auxiliary interest which had never paled yet, +never lost its novelty for me since I had been in Arthur's kingdom: +the behavior--born of nice and exact subdivisions of caste--of chance +passers-by toward each other. Toward the shaven monk who trudged +along with his cowl tilted back and the sweat washing down his +fat jowls, the coal-burner was deeply reverent; to the gentleman +he was abject; with the small farmer and the free mechanic he was +cordial and gossipy; and when a slave passed by with a countenance +respectfully lowered, this chap's nose was in the air--he couldn't +even see him. Well, there are times when one would like to hang +the whole human race and finish the farce. + +Presently we struck an incident. A small mob of half-naked boys +and girls came tearing out of the woods, scared and shrieking. +The eldest among them were not more than twelve or fourteen years +old. They implored help, but they were so beside themselves that +we couldn't make out what the matter was. However, we plunged +into the wood, they skurrying in the lead, and the trouble was +quickly revealed: they had hanged a little fellow with a bark rope, +and he was kicking and struggling, in the process of choking to +death. We rescued him, and fetched him around. It was some more +human nature; the admiring little folk imitating their elders; +they were playing mob, and had achieved a success which promised +to be a good deal more serious than they had bargained for. + +It was not a dull excursion for me. I managed to put in the time +very well. I made various acquaintanceships, and in my quality +of stranger was able to ask as many questions as I wanted to. +A thing which naturally interested me, as a statesman, was the +matter of wages. I picked up what I could under that head during +the afternoon. A man who hasn't had much experience, and doesn't +think, is apt to measure a nation's prosperity or lack of prosperity +by the mere size of the prevailing wages; if the wages be high, the +nation is prosperous; if low, it isn't. Which is an error. It +isn't what sum you get, it's how much you can buy with it, that's +the important thing; and it's that that tells whether your wages +are high in fact or only high in name. I could remember how it +was in the time of our great civil war in the nineteenth century. +In the North a carpenter got three dollars a day, gold valuation; +in the South he got fifty--payable in Confederate shinplasters +worth a dollar a bushel. In the North a suit of overalls cost +three dollars--a day's wages; in the South it cost seventy-five +--which was two days' wages. Other things were in proportion. +Consequently, wages were twice as high in the North as they were +in the South, because the one wage had that much more purchasing +power than the other had. + +Yes, I made various acquaintances in the hamlet and a thing that +gratified me a good deal was to find our new coins in circulation +--lots of milrays, lots of mills, lots of cents, a good many nickels, +and some silver; all this among the artisans and commonalty +generally; yes, and even some gold--but that was at the bank, +that is to say, the goldsmith's. I dropped in there while Marco, +the son of Marco, was haggling with a shopkeeper over a quarter +of a pound of salt, and asked for change for a twenty-dollar gold +piece. They furnished it--that is, after they had chewed the piece, +and rung it on the counter, and tried acid on it, and asked me +where I got it, and who I was, and where I was from, and where +I was going to, and when I expected to get there, and perhaps +a couple of hundred more questions; and when they got aground, +I went right on and furnished them a lot of information voluntarily; +told them I owned a dog, and his name was Watch, and my first wife +was a Free Will Baptist, and her grandfather was a Prohibitionist, +and I used to know a man who had two thumbs on each hand and a wart +on the inside of his upper lip, and died in the hope of a glorious +resurrection, and so on, and so on, and so on, till even that +hungry village questioner began to look satisfied, and also a shade +put out; but he had to respect a man of my financial strength, +and so he didn't give me any lip, but I noticed he took it out of +his underlings, which was a perfectly natural thing to do. Yes, +they changed my twenty, but I judged it strained the bank a little, +which was a thing to be expected, for it was the same as walking +into a paltry village store in the nineteenth century and requiring +the boss of it to change a two thousand-dollar bill for you all +of a sudden. He could do it, maybe; but at the same time he +would wonder how a small farmer happened to be carrying so much +money around in his pocket; which was probably this goldsmith's +thought, too; for he followed me to the door and stood there gazing +after me with reverent admiration. + +Our new money was not only handsomely circulating, but its language +was already glibly in use; that is to say, people had dropped +the names of the former moneys, and spoke of things as being worth +so many dollars or cents or mills or milrays now. It was very +gratifying. We were progressing, that was sure. + +I got to know several master mechanics, but about the most interesting +fellow among them was the blacksmith, Dowley. He was a live man +and a brisk talker, and had two journeymen and three apprentices, +and was doing a raging business. In fact, he was getting rich, +hand over fist, and was vastly respected. Marco was very proud of +having such a man for a friend. He had taken me there ostensibly +to let me see the big establishment which bought so much of his +charcoal, but really to let me see what easy and almost familiar +terms he was on with this great man. Dowley and I fraternized +at once; I had had just such picked men, splendid fellows, under +me in the Colt Arms Factory. I was bound to see more of him, so +I invited him to come out to Marco's Sunday, and dine with us. +Marco was appalled, and held his breath; and when the grandee +accepted, he was so grateful that he almost forgot to be astonished +at the condescension. + +Marco's joy was exuberant--but only for a moment; then he grew +thoughtful, then sad; and when he heard me tell Dowley I should +have Dickon, the boss mason, and Smug, the boss wheelwright, out +there, too, the coal-dust on his face turned to chalk, and he lost +his grip. But I knew what was the matter with him; it was the +expense. He saw ruin before him; he judged that his financial +days were numbered. However, on our way to invite the others, +I said: + +"You must allow me to have these friends come; and you must also +allow me to pay the costs." + +His face cleared, and he said with spirit: + +"But not all of it, not all of it. Ye cannot well bear a burden +like to this alone." + +I stopped him, and said: + +"Now let's understand each other on the spot, old friend. I am +only a farm bailiff, it is true; but I am not poor, nevertheless. +I have been very fortunate this year--you would be astonished +to know how I have thriven. I tell you the honest truth when I say +I could squander away as many as a dozen feasts like this and never +care _that_ for the expense!" and I snapped my fingers. I could +see myself rise a foot at a time in Marco's estimation, and when +I fetched out those last words I was become a very tower for style +and altitude. "So you see, you must let me have my way. You +can't contribute a cent to this orgy, that's _settled_." + +"It's grand and good of you--" + +"No, it isn't. You've opened your house to Jones and me in the +most generous way; Jones was remarking upon it to-day, just before +you came back from the village; for although he wouldn't be likely +to say such a thing to you--because Jones isn't a talker, and is +diffident in society--he has a good heart and a grateful, and +knows how to appreciate it when he is well treated; yes, you and +your wife have been very hospitable toward us--" + +"Ah, brother, 'tis nothing--_such_ hospitality!" + +"But it _is_ something; the best a man has, freely given, is always +something, and is as good as a prince can do, and ranks right +along beside it--for even a prince can but do his best. And so +we'll shop around and get up this layout now, and don't you worry +about the expense. I'm one of the worst spendthrifts that ever +was born. Why, do you know, sometimes in a single week I spend +--but never mind about that--you'd never believe it anyway." + +And so we went gadding along, dropping in here and there, pricing +things, and gossiping with the shopkeepers about the riot, and now +and then running across pathetic reminders of it, in the persons of +shunned and tearful and houseless remnants of families whose homes +had been taken from them and their parents butchered or hanged. +The raiment of Marco and his wife was of coarse tow-linen and +linsey-woolsey respectively, and resembled township maps, it being +made up pretty exclusively of patches which had been added, township +by township, in the course of five or six years, until hardly a +hand's-breadth of the original garments was surviving and present. +Now I wanted to fit these people out with new suits, on account of +that swell company, and I didn't know just how to get at it +--with delicacy, until at last it struck me that as I had already +been liberal in inventing wordy gratitude for the king, it would +be just the thing to back it up with evidence of a substantial +sort; so I said: + +"And Marco, there's another thing which you must permit--out of +kindness for Jones--because you wouldn't want to offend him. +He was very anxious to testify his appreciation in some way, but +he is so diffident he couldn't venture it himself, and so he begged +me to buy some little things and give them to you and Dame Phyllis +and let him pay for them without your ever knowing they came from +him--you know how a delicate person feels about that sort of thing +--and so I said I would, and we would keep mum. Well, his idea +was, a new outfit of clothes for you both--" + +"Oh, it is wastefulness! It may not be, brother, it may not be. +Consider the vastness of the sum--" + +"Hang the vastness of the sum! Try to keep quiet for a moment, +and see how it would seem; a body can't get in a word edgeways, +you talk so much. You ought to cure that, Marco; it isn't good +form, you know, and it will grow on you if you don't check it. +Yes, we'll step in here now and price this man's stuff--and don't +forget to remember to not let on to Jones that you know he had +anything to do with it. You can't think how curiously sensitive +and proud he is. He's a farmer--pretty fairly well-to-do farmer +--and I'm his bailiff; _but_--the imagination of that man! Why, +sometimes when he forgets himself and gets to blowing off, you'd +think he was one of the swells of the earth; and you might listen +to him a hundred years and never take him for a farmer--especially if +he talked agriculture. He _thinks_ he's a Sheol of a farmer; thinks +he's old Grayback from Wayback; but between you and me privately +he don't know as much about farming as he does about running +a kingdom--still, whatever he talks about, you want to drop your +underjaw and listen, the same as if you had never heard such +incredible wisdom in all your life before, and were afraid you +might die before you got enough of it. That will please Jones." + +It tickled Marco to the marrow to hear about such an odd character; +but it also prepared him for accidents; and in my experience when +you travel with a king who is letting on to be something else and +can't remember it more than about half the time, you can't take +too many precautions. + +This was the best store we had come across yet; it had everything +in it, in small quantities, from anvils and drygoods all the way +down to fish and pinchbeck jewelry. I concluded I would bunch +my whole invoice right here, and not go pricing around any more. +So I got rid of Marco, by sending him off to invite the mason and +the wheelwright, which left the field free to me. For I never care +to do a thing in a quiet way; it's got to be theatrical or I don't +take any interest in it. I showed up money enough, in a careless +way, to corral the shopkeeper's respect, and then I wrote down +a list of the things I wanted, and handed it to him to see if he +could read it. He could, and was proud to show that he could. +He said he had been educated by a priest, and could both read +and write. He ran it through, and remarked with satisfaction that +it was a pretty heavy bill. Well, and so it was, for a little +concern like that. I was not only providing a swell dinner, but +some odds and ends of extras. I ordered that the things be carted +out and delivered at the dwelling of Marco, the son of Marco, +by Saturday evening, and send me the bill at dinner-time Sunday. +He said I could depend upon his promptness and exactitude, it was +the rule of the house. He also observed that he would throw in +a couple of miller-guns for the Marcos gratis--that everybody +was using them now. He had a mighty opinion of that clever +device. I said: + +"And please fill them up to the middle mark, too; and add that +to the bill." + +He would, with pleasure. He filled them, and I took them with +me. I couldn't venture to tell him that the miller-gun was a +little invention of my own, and that I had officially ordered that +every shopkeeper in the kingdom keep them on hand and sell them +at government price--which was the merest trifle, and the shopkeeper +got that, not the government. We furnished them for nothing. + +The king had hardly missed us when we got back at nightfall. He +had early dropped again into his dream of a grand invasion of Gaul +with the whole strength of his kingdom at his back, and the afternoon +had slipped away without his ever coming to himself again. + + + +CHAPTER XXXII + +DOWLEY'S HUMILIATION + +Well, when that cargo arrived toward sunset, Saturday afternoon, +I had my hands full to keep the Marcos from fainting. They were +sure Jones and I were ruined past help, and they blamed themselves +as accessories to this bankruptcy. You see, in addition to the +dinner-materials, which called for a sufficiently round sum, +I had bought a lot of extras for the future comfort of the family: +for instance, a big lot of wheat, a delicacy as rare to the tables +of their class as was ice-cream to a hermit's; also a sizeable +deal dinner-table; also two entire pounds of salt, which was +another piece of extravagance in those people's eyes; also crockery, +stools, the clothes, a small cask of beer, and so on. I instructed +the Marcos to keep quiet about this sumptuousness, so as to give +me a chance to surprise the guests and show off a little. Concerning +the new clothes, the simple couple were like children; they were up +and down, all night, to see if it wasn't nearly daylight, so that +they could put them on, and they were into them at last as much +as an hour before dawn was due. Then their pleasure--not to say +delirium--was so fresh and novel and inspiring that the sight of it +paid me well for the interruptions which my sleep had suffered. +The king had slept just as usual--like the dead. The Marcos could +not thank him for their clothes, that being forbidden; but they +tried every way they could think of to make him see how grateful +they were. Which all went for nothing: he didn't notice any change. + +It turned out to be one of those rich and rare fall days which is +just a June day toned down to a degree where it is heaven to be +out of doors. Toward noon the guests arrived, and we assembled +under a great tree and were soon as sociable as old acquaintances. +Even the king's reserve melted a little, though it was some little +trouble to him to adjust himself to the name of Jones along at +first. I had asked him to try to not forget that he was a farmer; +but I had also considered it prudent to ask him to let the thing +stand at that, and not elaborate it any. Because he was just the +kind of person you could depend on to spoil a little thing like +that if you didn't warn him, his tongue was so handy, and his +spirit so willing, and his information so uncertain. + +Dowley was in fine feather, and I early got him started, and then +adroitly worked him around onto his own history for a text and +himself for a hero, and then it was good to sit there and hear him +hum. Self-made man, you know. They know how to talk. They do +deserve more credit than any other breed of men, yes, that is true; +and they are among the very first to find it out, too. He told how +he had begun life an orphan lad without money and without friends +able to help him; how he had lived as the slaves of the meanest +master lived; how his day's work was from sixteen to eighteen hours +long, and yielded him only enough black bread to keep him in a +half-fed condition; how his faithful endeavors finally attracted +the attention of a good blacksmith, who came near knocking him +dead with kindness by suddenly offering, when he was totally +unprepared, to take him as his bound apprentice for nine years +and give him board and clothes and teach him the trade--or "mystery" +as Dowley called it. That was his first great rise, his first +gorgeous stroke of fortune; and you saw that he couldn't yet speak +of it without a sort of eloquent wonder and delight that such a +gilded promotion should have fallen to the lot of a common human +being. He got no new clothing during his apprenticeship, but on +his graduation day his master tricked him out in spang-new tow-linens +and made him feel unspeakably rich and fine. + +"I remember me of that day!" the wheelwright sang out, with +enthusiasm. + +"And I likewise!" cried the mason. "I would not believe they +were thine own; in faith I could not." + +"Nor other!" shouted Dowley, with sparkling eyes. "I was like +to lose my character, the neighbors wending I had mayhap been +stealing. It was a great day, a great day; one forgetteth not +days like that." + +Yes, and his master was a fine man, and prosperous, and always +had a great feast of meat twice in the year, and with it white +bread, true wheaten bread; in fact, lived like a lord, so to speak. +And in time Dowley succeeded to the business and married the daughter. + +"And now consider what is come to pass," said he, impressively. +"Two times in every month there is fresh meat upon my table." +He made a pause here, to let that fact sink home, then added +--"and eight times salt meat." + +"It is even true," said the wheelwright, with bated breath. + +"I know it of mine own knowledge," said the mason, in the same +reverent fashion. + +"On my table appeareth white bread every Sunday in the year," +added the master smith, with solemnity. "I leave it to your own +consciences, friends, if this is not also true?" + +"By my head, yes," cried the mason. + +"I can testify it--and I do," said the wheelwright. + +"And as to furniture, ye shall say yourselves what mine equipment +is." He waved his hand in fine gesture of granting frank and +unhampered freedom of speech, and added: "Speak as ye are moved; +speak as ye would speak; an I were not here." + +"Ye have five stools, and of the sweetest workmanship at that, albeit +your family is but three," said the wheelwright, with deep respect. + +"And six wooden goblets, and six platters of wood and two of pewter +to eat and drink from withal," said the mason, impressively. "And +I say it as knowing God is my judge, and we tarry not here alway, +but must answer at the last day for the things said in the body, +be they false or be they sooth." + +"Now ye know what manner of man I am, brother Jones," said the +smith, with a fine and friendly condescension, "and doubtless ye +would look to find me a man jealous of his due of respect and +but sparing of outgo to strangers till their rating and quality be +assured, but trouble yourself not, as concerning that; wit ye well +ye shall find me a man that regardeth not these matters but is +willing to receive any he as his fellow and equal that carrieth +a right heart in his body, be his worldly estate howsoever modest. +And in token of it, here is my hand; and I say with my own mouth +we are equals--equals"--and he smiled around on the company with +the satisfaction of a god who is doing the handsome and gracious +thing and is quite well aware of it. + +The king took the hand with a poorly disguised reluctance, and +let go of it as willingly as a lady lets go of a fish; all of which +had a good effect, for it was mistaken for an embarrassment natural +to one who was being called upon by greatness. + +The dame brought out the table now, and set it under the tree. +It caused a visible stir of surprise, it being brand new and a +sumptuous article of deal. But the surprise rose higher still +when the dame, with a body oozing easy indifference at every pore, +but eyes that gave it all away by absolutely flaming with vanity, +slowly unfolded an actual simon-pure tablecloth and spread it. +That was a notch above even the blacksmith's domestic grandeurs, +and it hit him hard; you could see it. But Marco was in Paradise; +you could see that, too. Then the dame brought two fine new +stools--whew! that was a sensation; it was visible in the eyes of +every guest. Then she brought two more--as calmly as she could. +Sensation again--with awed murmurs. Again she brought two +--walking on air, she was so proud. The guests were petrified, and +the mason muttered: + +"There is that about earthly pomps which doth ever move to reverence." + +As the dame turned away, Marco couldn't help slapping on the climax +while the thing was hot; so he said with what was meant for a +languid composure but was a poor imitation of it: + +"These suffice; leave the rest." + +So there were more yet! It was a fine effect. I couldn't have +played the hand better myself. + +From this out, the madam piled up the surprises with a rush that +fired the general astonishment up to a hundred and fifty in the +shade, and at the same time paralyzed expression of it down to +gasped "Oh's" and "Ah's," and mute upliftings of hands and eyes. +She fetched crockery--new, and plenty of it; new wooden goblets +and other table furniture; and beer, fish, chicken, a goose, eggs, +roast beef, roast mutton, a ham, a small roast pig, and a wealth +of genuine white wheaten bread. Take it by and large, that spread +laid everything far and away in the shade that ever that crowd had +seen before. And while they sat there just simply stupefied with +wonder and awe, I sort of waved my hand as if by accident, and +the storekeeper's son emerged from space and said he had come +to collect. + +"That's all right," I said, indifferently. "What is the amount? +give us the items." + +Then he read off this bill, while those three amazed men listened, +and serene waves of satisfaction rolled over my soul and alternate +waves of terror and admiration surged over Marco's: + + 2 pounds salt . . . . . . . . . . . . . . 200 + 8 dozen pints beer, in the wood . . . . . 800 + 3 bushels wheat . . . . . . . . . . . . . 2,700 + 2 pounds fish . . . . . . . . . . . . . . 100 + 3 hens . . . . . . . . . . . . . . . . . 400 + 1 goose . . . . . . . . . . . . . . . . . 400 + 3 dozen eggs . . . . . . . . . . . . . . 150 + 1 roast of beef . . . . . . . . . . . . . 450 + 1 roast of mutton . . . . . . . . . . . . 400 + 1 ham . . . . . . . . . . . . . . . . . . 800 + 1 sucking pig . . . . . . . . . . . . . . 500 + 2 crockery dinner sets . . . . . . . . . 6,000 + 2 men's suits and underwear . . . . . . . 2,800 + 1 stuff and 1 linsey-woolsey gown + and underwear . . . . . . . . . . . . . 1,600 + 8 wooden goblets . . . . . . . . . . . . 800 + Various table furniture . . . . . . . . .10,000 + 1 deal table . . . . . . . . . . . . . . 3,000 + 8 stools . . . . . . . . . . . . . . . . 4,000 + 2 miller guns, loaded . . . . . . . . . . 3,000 + +He ceased. There was a pale and awful silence. Not a limb stirred. +Not a nostril betrayed the passage of breath. + +"Is that all?" I asked, in a voice of the most perfect calmness. + +"All, fair sir, save that certain matters of light moment are +placed together under a head hight sundries. If it would like +you, I will sepa--" + +"It is of no consequence," I said, accompanying the words with +a gesture of the most utter indifference; "give me the grand +total, please." + +The clerk leaned against the tree to stay himself, and said: + +"Thirty-nine thousand one hundred and fifty milrays!" + +The wheelwright fell off his stool, the others grabbed the table +to save themselves, and there was a deep and general ejaculation of: + +"God be with us in the day of disaster!" + +The clerk hastened to say: + +"My father chargeth me to say he cannot honorably require you +to pay it all at this time, and therefore only prayeth you--" + +I paid no more heed than if it were the idle breeze, but, with an +air of indifference amounting almost to weariness, got out my money +and tossed four dollars on to the table. Ah, you should have seen +them stare! + +The clerk was astonished and charmed. He asked me to retain +one of the dollars as security, until he could go to town and +--I interrupted: + +"What, and fetch back nine cents? Nonsense! Take the whole. +Keep the change." + +There was an amazed murmur to this effect: + +"Verily this being is _made_ of money! He throweth it away even +as if it were dirt." + +The blacksmith was a crushed man. + +The clerk took his money and reeled away drunk with fortune. I said +to Marco and his wife: + +"Good folk, here is a little trifle for you"--handing the miller-guns +as if it were a matter of no consequence, though each of them +contained fifteen cents in solid cash; and while the poor creatures +went to pieces with astonishment and gratitude, I turned to the +others and said as calmly as one would ask the time of day: + +"Well, if we are all ready, I judge the dinner is. Come, fall to." + +Ah, well, it was immense; yes, it was a daisy. I don't know that +I ever put a situation together better, or got happier spectacular +effects out of the materials available. The blacksmith--well, he +was simply mashed. Land! I wouldn't have felt what that man was +feeling, for anything in the world. Here he had been blowing and +bragging about his grand meat-feast twice a year, and his fresh +meat twice a month, and his salt meat twice a week, and his white +bread every Sunday the year round--all for a family of three; the +entire cost for the year not above 69.2.6 (sixty-nine cents, two +mills and six milrays), and all of a sudden here comes along a man +who slashes out nearly four dollars on a single blow-out; and not +only that, but acts as if it made him tired to handle such small +sums. Yes, Dowley was a good deal wilted, and shrunk-up and +collapsed; he had the aspect of a bladder-balloon that's been +stepped on by a cow. + + + +CHAPTER XXXIII + +SIXTH CENTURY POLITICAL ECONOMY + +However, I made a dead set at him, and before the first third +of the dinner was reached, I had him happy again. It was easy +to do--in a country of ranks and castes. You see, in a country +where they have ranks and castes, a man isn't ever a man, he is +only part of a man, he can't ever get his full growth. You prove +your superiority over him in station, or rank, or fortune, and +that's the end of it--he knuckles down. You can't insult him +after that. No, I don't mean quite that; of course you _can_ insult +him, I only mean it's difficult; and so, unless you've got a lot +of useless time on your hands it doesn't pay to try. I had the +smith's reverence now, because I was apparently immensely prosperous +and rich; I could have had his adoration if I had had some little +gimcrack title of nobility. And not only his, but any commoner's +in the land, though he were the mightiest production of all the ages, +in intellect, worth, and character, and I bankrupt in all three. +This was to remain so, as long as England should exist in the +earth. With the spirit of prophecy upon me, I could look into +the future and see her erect statues and monuments to her unspeakable +Georges and other royal and noble clothes-horses, and leave unhonored +the creators of this world--after God--Gutenburg, Watt, Arkwright, +Whitney, Morse, Stephenson, Bell. + +The king got his cargo aboard, and then, the talk not turning upon +battle, conquest, or iron-clad duel, he dulled down to drowsiness +and went off to take a nap. Mrs. Marco cleared the table, placed +the beer keg handy, and went away to eat her dinner of leavings +in humble privacy, and the rest of us soon drifted into matters +near and dear to the hearts of our sort--business and wages, +of course. At a first glance, things appeared to be exceeding +prosperous in this little tributary kingdom--whose lord was +King Bagdemagus--as compared with the state of things in my own +region. They had the "protection" system in full force here, +whereas we were working along down toward free-trade, by easy +stages, and were now about half way. Before long, Dowley and I +were doing all the talking, the others hungrily listening. Dowley +warmed to his work, snuffed an advantage in the air, and began +to put questions which he considered pretty awkward ones for me, +and they did have something of that look: + +"In your country, brother, what is the wage of a master bailiff, +master hind, carter, shepherd, swineherd?" + +"Twenty-five milrays a day; that is to say, a quarter of a cent." + +The smith's face beamed with joy. He said: + +"With us they are allowed the double of it! And what may a mechanic +get--carpenter, dauber, mason, painter, blacksmith, wheelwright, +and the like?" + +"On the average, fifty milrays; half a cent a day." + +"Ho-ho! With us they are allowed a hundred! With us any good +mechanic is allowed a cent a day! I count out the tailor, but +not the others--they are all allowed a cent a day, and in driving +times they get more--yes, up to a hundred and ten and even fifteen +milrays a day. I've paid a hundred and fifteen myself, within +the week. 'Rah for protection--to Sheol with free-trade!" + +And his face shone upon the company like a sunburst. But I didn't +scare at all. I rigged up my pile-driver, and allowed myself +fifteen minutes to drive him into the earth--drive him _all_ in +--drive him in till not even the curve of his skull should show +above ground. Here is the way I started in on him. I asked: + +"What do you pay a pound for salt?" + +"A hundred milrays." + +"We pay forty. What do you pay for beef and mutton--when you +buy it?" That was a neat hit; it made the color come. + +"It varieth somewhat, but not much; one may say seventy-five milrays +the pound." + +"_We_ pay thirty-three. What do you pay for eggs?" + +"Fifty milrays the dozen." + +"We pay twenty. What do you pay for beer?" + +"It costeth us eight and one-half milrays the pint." + +"We get it for four; twenty-five bottles for a cent. +What do you pay for wheat?" + +"At the rate of nine hundred milrays the bushel." + +"We pay four hundred. What do you pay for a man's tow-linen suit?" + +"Thirteen cents." + +"We pay six. What do you pay for a stuff gown for the wife of the +laborer or the mechanic?" + +"We pay eight cents, four mills." + +"Well, observe the difference: you pay eight cents and four mills, +we pay only four cents." I prepared now to sock it to him. I said: +"Look here, dear friend, _what's become of your high wages you +were bragging so about a few minutes ago?_"--and I looked around +on the company with placid satisfaction, for I had slipped up +on him gradually and tied him hand and foot, you see, without his +ever noticing that he was being tied at all. "What's become of +those noble high wages of yours?--I seem to have knocked the +stuffing all out of them, it appears to me." + +But if you will believe me, he merely looked surprised, that +is all! he didn't grasp the situation at all, didn't know he had +walked into a trap, didn't discover that he was _in_ a trap. I could +have shot him, from sheer vexation. With cloudy eye and a struggling +intellect he fetched this out: + +"Marry, I seem not to understand. It is _proved_ that our wages +be double thine; how then may it be that thou'st knocked therefrom +the stuffing?--an miscall not the wonderly word, this being the +first time under grace and providence of God it hath been granted +me to hear it." + +Well, I was stunned; partly with this unlooked-for stupidity on +his part, and partly because his fellows so manifestly sided with +him and were of his mind--if you might call it mind. My position +was simple enough, plain enough; how could it ever be simplified +more? However, I must try: + +"Why, look here, brother Dowley, don't you see? Your wages are +merely higher than ours in _name_, not in _fact_." + +"Hear him! They are the _double_--ye have confessed it yourself." + +"Yes-yes, I don't deny that at all. But that's got nothing to do +with it; the _amount_ of the wages in mere coins, with meaningless +names attached to them to know them by, has got nothing to do +with it. The thing is, how much can you _buy_ with your wages? +--that's the idea. While it is true that with you a good mechanic +is allowed about three dollars and a half a year, and with us only +about a dollar and seventy-five--" + +"There--ye're confessing it again, ye're confessing it again!" + +"Confound it, I've never denied it, I tell you! What I say is +this. With us _half_ a dollar buys more than a _dollar_ buys +with you--and THEREFORE it stands to reason and the commonest +kind of common-sense, that our wages are _higher_ than yours." + +He looked dazed, and said, despairingly: + +"Verily, I cannot make it out. Ye've just said ours are the +higher, and with the same breath ye take it back." + +"Oh, great Scott, isn't it possible to get such a simple thing +through your head? Now look here--let me illustrate. We pay +four cents for a woman's stuff gown, you pay 8.4.0, which is +four mills more than _double_. What do you allow a laboring +woman who works on a farm?" + +"Two mills a day." + +"Very good; we allow but half as much; we pay her only a tenth +of a cent a day; and--" + +"Again ye're conf--" + +"Wait! Now, you see, the thing is very simple; this time you'll +understand it. For instance, it takes your woman 42 days to earn +her gown, at 2 mills a day--7 weeks' work; but ours earns hers +in forty days--two days _short_ of 7 weeks. Your woman has a gown, +and her whole seven weeks wages are gone; ours has a gown, and +two days' wages left, to buy something else with. There--_now_ +you understand it!" + +He looked--well, he merely looked dubious, it's the most I can say; +so did the others. I waited--to let the thing work. Dowley spoke +at last--and betrayed the fact that he actually hadn't gotten away +from his rooted and grounded superstitions yet. He said, with +a trifle of hesitancy: + +"But--but--ye cannot fail to grant that two mills a day is better +than one." + +Shucks! Well, of course, I hated to give it up. So I chanced +another flyer: + +"Let us suppose a case. Suppose one of your journeymen goes out +and buys the following articles: + + "1 pound of salt; + 1 dozen eggs; + 1 dozen pints of beer; + 1 bushel of wheat; + 1 tow-linen suit; + 5 pounds of beef; + 5 pounds of mutton. + +"The lot will cost him 32 cents. It takes him 32 working days +to earn the money--5 weeks and 2 days. Let him come to us and +work 32 days at _half_ the wages; he can buy all those things for +a shade under 14 1/2 cents; they will cost him a shade under 29 +days' work, and he will have about half a week's wages over. Carry +it through the year; he would save nearly a week's wages every +two months, _your_ man nothing; thus saving five or six weeks' wages +in a year, your man not a cent. _Now_ I reckon you understand that +'high wages' and 'low wages' are phrases that don't mean anything +in the world until you find out which of them will _buy_ the most!" + +It was a crusher. + +But, alas! it didn't crush. No, I had to give it up. What those +people valued was _high wages_; it didn't seem to be a matter of +any consequence to them whether the high wages would buy anything +or not. They stood for "protection," and swore by it, which was +reasonable enough, because interested parties had gulled them into +the notion that it was protection which had created their high +wages. I proved to them that in a quarter of a century their wages +had advanced but 30 per cent., while the cost of living had gone +up 100; and that with us, in a shorter time, wages had advanced +40 per cent. while the cost of living had gone steadily down. But +it didn't do any good. Nothing could unseat their strange beliefs. + +Well, I was smarting under a sense of defeat. Undeserved defeat, +but what of that? That didn't soften the smart any. And to think +of the circumstances! the first statesman of the age, the capablest +man, the best-informed man in the entire world, the loftiest +uncrowned head that had moved through the clouds of any political +firmament for centuries, sitting here apparently defeated in +argument by an ignorant country blacksmith! And I could see that +those others were sorry for me--which made me blush till I could +smell my whiskers scorching. Put yourself in my place; feel as mean +as I did, as ashamed as I felt--wouldn't _you_ have struck below the +belt to get even? Yes, you would; it is simply human nature. +Well, that is what I did. I am not trying to justify it; I'm only +saying that I was mad, and _anybody_ would have done it. + +Well, when I make up my mind to hit a man, I don't plan out +a love-tap; no, that isn't my way; as long as I'm going to hit him +at all, I'm going to hit him a lifter. And I don't jump at him +all of a sudden, and risk making a blundering half-way business +of it; no, I get away off yonder to one side, and work up on him +gradually, so that he never suspects that I'm going to hit him +at all; and by and by, all in a flash, he's flat on his back, and +he can't tell for the life of him how it all happened. That is +the way I went for brother Dowley. I started to talking lazy and +comfortable, as if I was just talking to pass the time; and the +oldest man in the world couldn't have taken the bearings of my +starting place and guessed where I was going to fetch up: + +"Boys, there's a good many curious things about law, and custom, +and usage, and all that sort of thing, when you come to look at it; +yes, and about the drift and progress of human opinion and movement, +too. There are written laws--they perish; but there are also +unwritten laws--_they_ are eternal. Take the unwritten law of wages: +it says they've got to advance, little by little, straight through +the centuries. And notice how it works. We know what wages are +now, here and there and yonder; we strike an average, and say that's +the wages of to-day. We know what the wages were a hundred years +ago, and what they were two hundred years ago; that's as far back +as we can get, but it suffices to give us the law of progress, +the measure and rate of the periodical augmentation; and so, without +a document to help us, we can come pretty close to determining +what the wages were three and four and five hundred years ago. +Good, so far. Do we stop there? No. We stop looking backward; +we face around and apply the law to the future. My friends, I can +tell you what people's wages are going to be at any date in the +future you want to know, for hundreds and hundreds of years." + +"What, goodman, what!" + +"Yes. In seven hundred years wages will have risen to six times +what they are now, here in your region, and farm hands will be +allowed 3 cents a day, and mechanics 6." + +"I would't I might die now and live then!" interrupted Smug, the +wheelwright, with a fine avaricious glow in his eye. + +"And that isn't all; they'll get their board besides--such as it is: +it won't bloat them. Two hundred and fifty years later--pay attention +now--a mechanic's wages will be--mind you, this is law, not +guesswork; a mechanic's wages will then be _twenty_ cents a day!" + +There was a general gasp of awed astonishment, Dickon the mason +murmured, with raised eyes and hands: + +"More than three weeks' pay for one day's work!" + +"Riches!--of a truth, yes, riches!" muttered Marco, his breath +coming quick and short, with excitement. + +"Wages will keep on rising, little by little, little by little, +as steadily as a tree grows, and at the end of three hundred and +forty years more there'll be at least _one_ country where the +mechanic's average wage will be _two hundred_ cents a day!" + +It knocked them absolutely dumb! Not a man of them could get +his breath for upwards of two minutes. Then the coal-burner +said prayerfully: + +"Might I but live to see it!" + +"It is the income of an earl!" said Smug. + +"An earl, say ye?" said Dowley; "ye could say more than that and +speak no lie; there's no earl in the realm of Bagdemagus that hath +an income like to that. Income of an earl--mf! it's the income +of an angel!" + +"Now, then, that is what is going to happen as regards wages. +In that remote day, that man will earn, with _one_ week's work, +that bill of goods which it takes you upwards of _fifty_ weeks to +earn now. Some other pretty surprising things are going to happen, +too. Brother Dowley, who is it that determines, every spring, +what the particular wage of each kind of mechanic, laborer, and +servant shall be for that year?" + +"Sometimes the courts, sometimes the town council; but most of all, +the magistrate. Ye may say, in general terms, it is the magistrate +that fixes the wages." + +"Doesn't ask any of those poor devils to _help_ him fix their wages +for them, does he?" + +"Hm! That _were_ an idea! The master that's to pay him the money +is the one that's rightly concerned in that matter, ye will notice." + +"Yes--but I thought the other man might have some little trifle +at stake in it, too; and even his wife and children, poor creatures. +The masters are these: nobles, rich men, the prosperous generally. +These few, who do no work, determine what pay the vast hive shall +have who _do_ work. You see? They're a 'combine'--a trade union, +to coin a new phrase--who band themselves together to force their +lowly brother to take what they choose to give. Thirteen hundred +years hence--so says the unwritten law--the 'combine' will be the +other way, and then how these fine people's posterity will fume +and fret and grit their teeth over the insolent tyranny of trade +unions! Yes, indeed! the magistrate will tranquilly arrange the +wages from now clear away down into the nineteenth century; and +then all of a sudden the wage-earner will consider that a couple +of thousand years or so is enough of this one-sided sort of thing; +and he will rise up and take a hand in fixing his wages himself. +Ah, he will have a long and bitter account of wrong and humiliation +to settle." + +"Do ye believe--" + +"That he actually will help to fix his own wages? Yes, indeed. +And he will be strong and able, then." + +"Brave times, brave times, of a truth!" sneered the prosperous smith. + +"Oh,--and there's another detail. In that day, a master may hire +a man for only just one day, or one week, or one month at a time, +if he wants to." + +"What?" + +"It's true. Moreover, a magistrate won't be able to force a man +to work for a master a whole year on a stretch whether the man +wants to or not." + +"Will there be _no_ law or sense in that day?" + +"Both of them, Dowley. In that day a man will be his own property, +not the property of magistrate and master. And he can leave town +whenever he wants to, if the wages don't suit him!--and they can't +put him in the pillory for it." + +"Perdition catch such an age!" shouted Dowley, in strong indignation. +"An age of dogs, an age barren of reverence for superiors and +respect for authority! The pillory--" + +"Oh, wait, brother; say no good word for that institution. I think +the pillory ought to be abolished." + +"A most strange idea. Why?" + +"Well, I'll tell you why. Is a man ever put in the pillory for +a capital crime?" + +"No." + +"Is it right to condemn a man to a slight punishment for a small +offense and then kill him?" + +There was no answer. I had scored my first point! For the first +time, the smith wasn't up and ready. The company noticed it. +Good effect. + +"You don't answer, brother. You were about to glorify the pillory +a while ago, and shed some pity on a future age that isn't going +to use it. I think the pillory ought to be abolished. What +usually happens when a poor fellow is put in the pillory for some +little offense that didn't amount to anything in the world? The +mob try to have some fun with him, don't they?" + +"Yes." + +"They begin by clodding him; and they laugh themselves to pieces +to see him try to dodge one clod and get hit with another?" + +"Yes." + +"Then they throw dead cats at him, don't they?" + +"Yes." + +"Well, then, suppose he has a few personal enemies in that mob +and here and there a man or a woman with a secret grudge against +him--and suppose especially that he is unpopular in the community, +for his pride, or his prosperity, or one thing or another--stones +and bricks take the place of clods and cats presently, don't they?" + +"There is no doubt of it." + +"As a rule he is crippled for life, isn't he?--jaws broken, teeth +smashed out?--or legs mutilated, gangrened, presently cut off? +--or an eye knocked out, maybe both eyes?" + +"It is true, God knoweth it." + +"And if he is unpopular he can depend on _dying_, right there in +the stocks, can't he?" + +"He surely can! One may not deny it." + +"I take it none of _you_ are unpopular--by reason of pride or +insolence, or conspicuous prosperity, or any of those things that +excite envy and malice among the base scum of a village? _You_ +wouldn't think it much of a risk to take a chance in the stocks?" + +Dowley winced, visibly. I judged he was hit. But he didn't betray +it by any spoken word. As for the others, they spoke out plainly, +and with strong feeling. They said they had seen enough of the +stocks to know what a man's chance in them was, and they would +never consent to enter them if they could compromise on a quick +death by hanging. + +"Well, to change the subject--for I think I've established my +point that the stocks ought to be abolished. I think some of our +laws are pretty unfair. For instance, if I do a thing which ought +to deliver me to the stocks, and you know I did it and yet keep +still and don't report me, _you_ will get the stocks if anybody +informs on you." + +"Ah, but that would serve you but right," said Dowley, "for you +_must_ inform. So saith the law." + +The others coincided. + +"Well, all right, let it go, since you vote me down. But there's +one thing which certainly isn't fair. The magistrate fixes a +mechanic's wage at one cent a day, for instance. The law says that +if any master shall venture, even under utmost press of business, +to pay anything _over_ that cent a day, even for a single day, he +shall be both fined and pilloried for it; and whoever knows he did +it and doesn't inform, they also shall be fined and pilloried. Now +it seems to me unfair, Dowley, and a deadly peril to all of us, +that because you thoughtlessly confessed, a while ago, that within +a week you have paid a cent and fifteen mil--" + +Oh, I tell _you_ it was a smasher! You ought to have seen them to +go to pieces, the whole gang. I had just slipped up on poor +smiling and complacent Dowley so nice and easy and softly, that +he never suspected anything was going to happen till the blow +came crashing down and knocked him all to rags. + +A fine effect. In fact, as fine as any I ever produced, with so +little time to work it up in. + +But I saw in a moment that I had overdone the thing a little. +I was expecting to scare them, but I wasn't expecting to scare +them to death. They were mighty near it, though. You see they +had been a whole lifetime learning to appreciate the pillory; and +to have that thing staring them in the face, and every one of them +distinctly at the mercy of me, a stranger, if I chose to go and +report--well, it was awful, and they couldn't seem to recover +from the shock, they couldn't seem to pull themselves together. +Pale, shaky, dumb, pitiful? Why, they weren't any better than +so many dead men. It was very uncomfortable. Of course, I thought +they would appeal to me to keep mum, and then we would shake hands, +and take a drink all round, and laugh it off, and there an end. +But no; you see I was an unknown person, among a cruelly oppressed +and suspicious people, a people always accustomed to having advantage +taken of their helplessness, and never expecting just or kind +treatment from any but their own families and very closest intimates. +Appeal to _me_ to be gentle, to be fair, to be generous? Of course, +they wanted to, but they couldn't dare. + + + +CHAPTER XXXIV + +THE YANKEE AND THE KING SOLD AS SLAVES + +Well, what had I better do? Nothing in a hurry, sure. I must +get up a diversion; anything to employ me while I could think, +and while these poor fellows could have a chance to come to life +again. There sat Marco, petrified in the act of trying to get +the hang of his miller-gun--turned to stone, just in the attitude +he was in when my pile-driver fell, the toy still gripped in his +unconscious fingers. So I took it from him and proposed to explain +its mystery. Mystery! a simple little thing like that; and yet it +was mysterious enough, for that race and that age. + +I never saw such an awkward people, with machinery; you see, they +were totally unused to it. The miller-gun was a little double-barreled +tube of toughened glass, with a neat little trick of a spring +to it, which upon pressure would let a shot escape. But the shot +wouldn't hurt anybody, it would only drop into your hand. In the +gun were two sizes--wee mustard-seed shot, and another sort that +were several times larger. They were money. The mustard-seed +shot represented milrays, the larger ones mills. So the gun was +a purse; and very handy, too; you could pay out money in the dark +with it, with accuracy; and you could carry it in your mouth; or +in your vest pocket, if you had one. I made them of several sizes +--one size so large that it would carry the equivalent of a dollar. +Using shot for money was a good thing for the government; the metal +cost nothing, and the money couldn't be counterfeited, for I was +the only person in the kingdom who knew how to manage a shot tower. +"Paying the shot" soon came to be a common phrase. Yes, and I knew +it would still be passing men's lips, away down in the nineteenth +century, yet none would suspect how and when it originated. + +The king joined us, about this time, mightily refreshed by his nap, +and feeling good. Anything could make me nervous now, I was so +uneasy--for our lives were in danger; and so it worried me to +detect a complacent something in the king's eye which seemed to +indicate that he had been loading himself up for a performance +of some kind or other; confound it, why must he go and choose +such a time as this? + +I was right. He began, straight off, in the most innocently +artful, and transparent, and lubberly way, to lead up to the +subject of agriculture. The cold sweat broke out all over me. +I wanted to whisper in his ear, "Man, we are in awful danger! +every moment is worth a principality till we get back these men's +confidence; _don't_ waste any of this golden time." But of course +I couldn't do it. Whisper to him? It would look as if we were +conspiring. So I had to sit there and look calm and pleasant while +the king stood over that dynamite mine and mooned along about his +damned onions and things. At first the tumult of my own thoughts, +summoned by the danger-signal and swarming to the rescue from +every quarter of my skull, kept up such a hurrah and confusion +and fifing and drumming that I couldn't take in a word; but +presently when my mob of gathering plans began to crystallize +and fall into position and form line of battle, a sort of order and +quiet ensued and I caught the boom of the king's batteries, as if +out of remote distance: + +"--were not the best way, methinks, albeit it is not to be denied +that authorities differ as concerning this point, some contending +that the onion is but an unwholesome berry when stricken early +from the tree--" + +The audience showed signs of life, and sought each other's eyes +in a surprised and troubled way. + +"--whileas others do yet maintain, with much show of reason, that +this is not of necessity the case, instancing that plums and other +like cereals do be always dug in the unripe state--" + +The audience exhibited distinct distress; yes, and also fear. + +"--yet are they clearly wholesome, the more especially when one +doth assuage the asperities of their nature by admixture of the +tranquilizing juice of the wayward cabbage--" + +The wild light of terror began to glow in these men's eyes, and +one of them muttered, "These be errors, every one--God hath surely +smitten the mind of this farmer." I was in miserable apprehension; +I sat upon thorns. + +"--and further instancing the known truth that in the case of +animals, the young, which may be called the green fruit of the +creature, is the better, all confessing that when a goat is ripe, +his fur doth heat and sore engame his flesh, the which defect, +taken in connection with his several rancid habits, and fulsome +appetites, and godless attitudes of mind, and bilious quality +of morals--" + +They rose and went for him! With a fierce shout, "The one would +betray us, the other is mad! Kill them! Kill them!" they flung +themselves upon us. What joy flamed up in the king's eye! He +might be lame in agriculture, but this kind of thing was just in +his line. He had been fasting long, he was hungry for a fight. +He hit the blacksmith a crack under the jaw that lifted him clear +off his feet and stretched him flat on his back. "St. George for +Britain!" and he downed the wheelwright. The mason was big, but +I laid him out like nothing. The three gathered themselves up and +came again; went down again; came again; and kept on repeating +this, with native British pluck, until they were battered to jelly, +reeling with exhaustion, and so blind that they couldn't tell us +from each other; and yet they kept right on, hammering away with +what might was left in them. Hammering each other--for we stepped +aside and looked on while they rolled, and struggled, and gouged, +and pounded, and bit, with the strict and wordless attention to +business of so many bulldogs. We looked on without apprehension, +for they were fast getting past ability to go for help against us, +and the arena was far enough from the public road to be safe +from intrusion. + +Well, while they were gradually playing out, it suddenly occurred +to me to wonder what had become of Marco. I looked around; he +was nowhere to be seen. Oh, but this was ominous! I pulled the +king's sleeve, and we glided away and rushed for the hut. No Marco +there, no Phyllis there! They had gone to the road for help, sure. +I told the king to give his heels wings, and I would explain later. +We made good time across the open ground, and as we darted into +the shelter of the wood I glanced back and saw a mob of excited +peasants swarm into view, with Marco and his wife at their head. +They were making a world of noise, but that couldn't hurt anybody; +the wood was dense, and as soon as we were well into its depths +we would take to a tree and let them whistle. Ah, but then came +another sound--dogs! Yes, that was quite another matter. It +magnified our contract--we must find running water. + +We tore along at a good gait, and soon left the sounds far behind +and modified to a murmur. We struck a stream and darted into it. +We waded swiftly down it, in the dim forest light, for as much +as three hundred yards, and then came across an oak with a great +bough sticking out over the water. We climbed up on this bough, +and began to work our way along it to the body of the tree; now +we began to hear those sounds more plainly; so the mob had struck +our trail. For a while the sounds approached pretty fast. And +then for another while they didn't. No doubt the dogs had found +the place where we had entered the stream, and were now waltzing +up and down the shores trying to pick up the trail again. + +When we were snugly lodged in the tree and curtained with foliage, +the king was satisfied, but I was doubtful. I believed we could +crawl along a branch and get into the next tree, and I judged it +worth while to try. We tried it, and made a success of it, though +the king slipped, at the junction, and came near failing to connect. +We got comfortable lodgment and satisfactory concealment among +the foliage, and then we had nothing to do but listen to the hunt. + +Presently we heard it coming--and coming on the jump, too; yes, +and down both sides of the stream. Louder--louder--next minute +it swelled swiftly up into a roar of shoutings, barkings, tramplings, +and swept by like a cyclone. + +"I was afraid that the overhanging branch would suggest something +to them," said I, "but I don't mind the disappointment. Come, +my liege, it were well that we make good use of our time. We've +flanked them. Dark is coming on, presently. If we can cross the +stream and get a good start, and borrow a couple of horses from +somebody's pasture to use for a few hours, we shall be safe enough." + +We started down, and got nearly to the lowest limb, when we seemed +to hear the hunt returning. We stopped to listen. + +"Yes," said I, "they're baffled, they've given it up, they're on +their way home. We will climb back to our roost again, and let +them go by." + +So we climbed back. The king listened a moment and said: + +"They still search--I wit the sign. We did best to abide." + +He was right. He knew more about hunting than I did. The noise +approached steadily, but not with a rush. The king said: + +"They reason that we were advantaged by no parlous start of them, +and being on foot are as yet no mighty way from where we took +the water." + +"Yes, sire, that is about it, I am afraid, though I was hoping +better things." + +The noise drew nearer and nearer, and soon the van was drifting +under us, on both sides of the water. A voice called a halt from +the other bank, and said: + +"An they were so minded, they could get to yon tree by this branch +that overhangs, and yet not touch ground. Ye will do well to send +a man up it." + +"Marry, that we will do!" + +I was obliged to admire my cuteness in foreseeing this very thing +and swapping trees to beat it. But, don't you know, there are +some things that can beat smartness and foresight? Awkwardness +and stupidity can. The best swordsman in the world doesn't need +to fear the second best swordsman in the world; no, the person +for him to be afraid of is some ignorant antagonist who has never +had a sword in his hand before; he doesn't do the thing he ought +to do, and so the expert isn't prepared for him; he does the thing +he ought not to do; and often it catches the expert out and ends +him on the spot. Well, how could I, with all my gifts, make any +valuable preparation against a near-sighted, cross-eyed, pudding-headed +clown who would aim himself at the wrong tree and hit the right +one? And that is what he did. He went for the wrong tree, which +was, of course, the right one by mistake, and up he started. + +Matters were serious now. We remained still, and awaited developments. +The peasant toiled his difficult way up. The king raised himself +up and stood; he made a leg ready, and when the comer's head +arrived in reach of it there was a dull thud, and down went the man +floundering to the ground. There was a wild outbreak of anger +below, and the mob swarmed in from all around, and there we were +treed, and prisoners. Another man started up; the bridging bough +was detected, and a volunteer started up the tree that furnished +the bridge. The king ordered me to play Horatius and keep the +bridge. For a while the enemy came thick and fast; but no matter, +the head man of each procession always got a buffet that dislodged +him as soon as he came in reach. The king's spirits rose, his joy +was limitless. He said that if nothing occurred to mar the prospect +we should have a beautiful night, for on this line of tactics we +could hold the tree against the whole country-side. + +However, the mob soon came to that conclusion themselves; wherefore +they called off the assault and began to debate other plans. +They had no weapons, but there were plenty of stones, and stones +might answer. We had no objections. A stone might possibly +penetrate to us once in a while, but it wasn't very likely; we were +well protected by boughs and foliage, and were not visible from +any good aiming point. If they would but waste half an hour in +stone-throwing, the dark would come to our help. We were feeling +very well satisfied. We could smile; almost laugh. + +But we didn't; which was just as well, for we should have been +interrupted. Before the stones had been raging through the leaves +and bouncing from the boughs fifteen minutes, we began to notice +a smell. A couple of sniffs of it was enough of an explanation +--it was smoke! Our game was up at last. We recognized that. When +smoke invites you, you have to come. They raised their pile of +dry brush and damp weeds higher and higher, and when they saw +the thick cloud begin to roll up and smother the tree, they broke +out in a storm of joy-clamors. I got enough breath to say: + +"Proceed, my liege; after you is manners." + +The king gasped: + +"Follow me down, and then back thyself against one side of the +trunk, and leave me the other. Then will we fight. Let each pile +his dead according to his own fashion and taste." + +Then he descended, barking and coughing, and I followed. I struck +the ground an instant after him; we sprang to our appointed places, +and began to give and take with all our might. The powwow and +racket were prodigious; it was a tempest of riot and confusion and +thick-falling blows. Suddenly some horsemen tore into the midst +of the crowd, and a voice shouted: + +"Hold--or ye are dead men!" + +How good it sounded! The owner of the voice bore all the marks of +a gentleman: picturesque and costly raiment, the aspect of command, +a hard countenance, with complexion and features marred by dissipation. +The mob fell humbly back, like so many spaniels. The gentleman +inspected us critically, then said sharply to the peasants: + +"What are ye doing to these people?" + +"They be madmen, worshipful sir, that have come wandering we know +not whence, and--" + +"Ye know not whence? Do ye pretend ye know them not?" + +"Most honored sir, we speak but the truth. They are strangers +and unknown to any in this region; and they be the most violent +and bloodthirsty madmen that ever--" + +"Peace! Ye know not what ye say. They are not mad. Who are ye? +And whence are ye? Explain." + +"We are but peaceful strangers, sir," I said, "and traveling upon +our own concerns. We are from a far country, and unacquainted +here. We have purposed no harm; and yet but for your brave +interference and protection these people would have killed us. +As you have divined, sir, we are not mad; neither are we violent +or bloodthirsty." + +The gentleman turned to his retinue and said calmly: "Lash me +these animals to their kennels!" + +The mob vanished in an instant; and after them plunged the horsemen, +laying about them with their whips and pitilessly riding down such +as were witless enough to keep the road instead of taking to the +bush. The shrieks and supplications presently died away in the +distance, and soon the horsemen began to straggle back. Meantime +the gentleman had been questioning us more closely, but had dug +no particulars out of us. We were lavish of recognition of the +service he was doing us, but we revealed nothing more than that we +were friendless strangers from a far country. When the escort were +all returned, the gentleman said to one of his servants: + +"Bring the led-horses and mount these people." + +"Yes, my lord." + +We were placed toward the rear, among the servants. We traveled +pretty fast, and finally drew rein some time after dark at a +roadside inn some ten or twelve miles from the scene of our +troubles. My lord went immediately to his room, after ordering +his supper, and we saw no more of him. At dawn in the morning +we breakfasted and made ready to start. + +My lord's chief attendant sauntered forward at that moment with +indolent grace, and said: + +"Ye have said ye should continue upon this road, which is our +direction likewise; wherefore my lord, the earl Grip, hath given +commandment that ye retain the horses and ride, and that certain +of us ride with ye a twenty mile to a fair town that hight Cambenet, +whenso ye shall be out of peril." + +We could do nothing less than express our thanks and accept the +offer. We jogged along, six in the party, at a moderate and +comfortable gait, and in conversation learned that my lord Grip +was a very great personage in his own region, which lay a day's +journey beyond Cambenet. We loitered to such a degree that it was +near the middle of the forenoon when we entered the market square +of the town. We dismounted, and left our thanks once more for +my lord, and then approached a crowd assembled in the center of +the square, to see what might be the object of interest. It was the +remnant of that old peregrinating band of slaves! So they had +been dragging their chains about, all this weary time. That poor +husband was gone, and also many others; and some few purchases +had been added to the gang. The king was not interested, and +wanted to move along, but I was absorbed, and full of pity. I could +not take my eyes away from these worn and wasted wrecks of humanity. +There they sat, grounded upon the ground, silent, uncomplaining, +with bowed heads, a pathetic sight. And by hideous contrast, a +redundant orator was making a speech to another gathering not thirty +steps away, in fulsome laudation of "our glorious British liberties!" + +I was boiling. I had forgotten I was a plebeian, I was remembering +I was a man. Cost what it might, I would mount that rostrum and-- + +Click! the king and I were handcuffed together! Our companions, +those servants, had done it; my lord Grip stood looking on. The +king burst out in a fury, and said: + +"What meaneth this ill-mannered jest?" + +My lord merely said to his head miscreant, coolly: + +"Put up the slaves and sell them!" + +_Slaves!_ The word had a new sound--and how unspeakably awful! The +king lifted his manacles and brought them down with a deadly force; +but my lord was out of the way when they arrived. A dozen of +the rascal's servants sprang forward, and in a moment we were +helpless, with our hands bound behind us. We so loudly and so +earnestly proclaimed ourselves freemen, that we got the interested +attention of that liberty-mouthing orator and his patriotic crowd, +and they gathered about us and assumed a very determined attitude. +The orator said: + +"If, indeed, ye are freemen, ye have nought to fear--the God-given +liberties of Britain are about ye for your shield and shelter! +(Applause.) Ye shall soon see. Bring forth your proofs." + +"What proofs?" + +"Proof that ye are freemen." + +Ah--I remembered! I came to myself; I said nothing. But the +king stormed out: + +"Thou'rt insane, man. It were better, and more in reason, that +this thief and scoundrel here prove that we are _not_ freemen." + +You see, he knew his own laws just as other people so often know +the laws; by words, not by effects. They take a _meaning_, and get +to be very vivid, when you come to apply them to yourself. + +All hands shook their heads and looked disappointed; some turned +away, no longer interested. The orator said--and this time in the +tones of business, not of sentiment: + +"An ye do not know your country's laws, it were time ye learned +them. Ye are strangers to us; ye will not deny that. Ye may be +freemen, we do not deny that; but also ye may be slaves. The law +is clear: it doth not require the claimant to prove ye are slaves, +it requireth you to prove ye are not." + +I said: + +"Dear sir, give us only time to send to Astolat; or give us only +time to send to the Valley of Holiness--" + +"Peace, good man, these are extraordinary requests, and you may +not hope to have them granted. It would cost much time, and would +unwarrantably inconvenience your master--" + +"_Master_, idiot!" stormed the king. "I have no master, I myself +am the m--" + +"Silence, for God's sake!" + +I got the words out in time to stop the king. We were in trouble +enough already; it could not help us any to give these people +the notion that we were lunatics. + +There is no use in stringing out the details. The earl put us up +and sold us at auction. This same infernal law had existed in +our own South in my own time, more than thirteen hundred years +later, and under it hundreds of freemen who could not prove that +they were freemen had been sold into lifelong slavery without +the circumstance making any particular impression upon me; but the +minute law and the auction block came into my personal experience, +a thing which had been merely improper before became suddenly +hellish. Well, that's the way we are made. + +Yes, we were sold at auction, like swine. In a big town and an +active market we should have brought a good price; but this place +was utterly stagnant and so we sold at a figure which makes me +ashamed, every time I think of it. The King of England brought +seven dollars, and his prime minister nine; whereas the king was +easily worth twelve dollars and I as easily worth fifteen. But +that is the way things always go; if you force a sale on a dull +market, I don't care what the property is, you are going to make +a poor business of it, and you can make up your mind to it. If +the earl had had wit enough to-- + +However, there is no occasion for my working my sympathies up +on his account. Let him go, for the present; I took his number, +so to speak. + +The slave-dealer bought us both, and hitched us onto that long +chain of his, and we constituted the rear of his procession. We +took up our line of march and passed out of Cambenet at noon; +and it seemed to me unaccountably strange and odd that the King +of England and his chief minister, marching manacled and fettered +and yoked, in a slave convoy, could move by all manner of idle men +and women, and under windows where sat the sweet and the lovely, +and yet never attract a curious eye, never provoke a single remark. +Dear, dear, it only shows that there is nothing diviner about a king +than there is about a tramp, after all. He is just a cheap and +hollow artificiality when you don't know he is a king. But reveal +his quality, and dear me it takes your very breath away to look +at him. I reckon we are all fools. Born so, no doubt. + + + +CHAPTER XXXV + +A PITIFUL INCIDENT + +It's a world of surprises. The king brooded; this was natural. +What would he brood about, should you say? Why, about the prodigious +nature of his fall, of course--from the loftiest place in the world +to the lowest; from the most illustrious station in the world to +the obscurest; from the grandest vocation among men to the basest. +No, I take my oath that the thing that graveled him most, to start +with, was not this, but the price he had fetched! He couldn't +seem to get over that seven dollars. Well, it stunned me so, when +I first found it out, that I couldn't believe it; it didn't seem +natural. But as soon as my mental sight cleared and I got a right +focus on it, I saw I was mistaken; it _was_ natural. For this +reason: a king is a mere artificiality, and so a king's feelings, +like the impulses of an automatic doll, are mere artificialities; +but as a man, he is a reality, and his feelings, as a man, are +real, not phantoms. It shames the average man to be valued below +his own estimate of his worth, and the king certainly wasn't +anything more than an average man, if he was up that high. + +Confound him, he wearied me with arguments to show that in anything +like a fair market he would have fetched twenty-five dollars, +sure--a thing which was plainly nonsense, and full or the baldest +conceit; I wasn't worth it myself. But it was tender ground for +me to argue on. In fact, I had to simply shirk argument and do +the diplomatic instead. I had to throw conscience aside, and +brazenly concede that he ought to have brought twenty-five dollars; +whereas I was quite well aware that in all the ages, the world had +never seen a king that was worth half the money, and during the +next thirteen centuries wouldn't see one that was worth the fourth +of it. Yes, he tired me. If he began to talk about the crops; +or about the recent weather; or about the condition of politics; +or about dogs, or cats, or morals, or theology--no matter what +--I sighed, for I knew what was coming; he was going to get out of it +a palliation of that tiresome seven-dollar sale. Wherever we +halted where there was a crowd, he would give me a look which +said plainly: "if that thing could be tried over again now, with +this kind of folk, you would see a different result." Well, when +he was first sold, it secretly tickled me to see him go for seven +dollars; but before he was done with his sweating and worrying +I wished he had fetched a hundred. The thing never got a chance +to die, for every day, at one place or another, possible purchasers +looked us over, and, as often as any other way, their comment on +the king was something like this: + +"Here's a two-dollar-and-a-half chump with a thirty-dollar style. +Pity but style was marketable." + +At last this sort of remark produced an evil result. Our owner +was a practical person and he perceived that this defect must be +mended if he hoped to find a purchaser for the king. So he went +to work to take the style out of his sacred majesty. I could have +given the man some valuable advice, but I didn't; you mustn't +volunteer advice to a slave-driver unless you want to damage +the cause you are arguing for. I had found it a sufficiently +difficult job to reduce the king's style to a peasant's style, +even when he was a willing and anxious pupil; now then, to undertake +to reduce the king's style to a slave's style--and by force--go to! +it was a stately contract. Never mind the details--it will save me +trouble to let you imagine them. I will only remark that at the +end of a week there was plenty of evidence that lash and club +and fist had done their work well; the king's body was a sight +to see--and to weep over; but his spirit?--why, it wasn't even +phased. Even that dull clod of a slave-driver was able to see +that there can be such a thing as a slave who will remain a man +till he dies; whose bones you can break, but whose manhood you +can't. This man found that from his first effort down to his +latest, he couldn't ever come within reach of the king, but the +king was ready to plunge for him, and did it. So he gave up +at last, and left the king in possession of his style unimpaired. +The fact is, the king was a good deal more than a king, he was +a man; and when a man is a man, you can't knock it out of him. + +We had a rough time for a month, tramping to and fro in the earth, +and suffering. And what Englishman was the most interested in +the slavery question by that time? His grace the king! Yes; from +being the most indifferent, he was become the most interested. +He was become the bitterest hater of the institution I had ever +heard talk. And so I ventured to ask once more a question which +I had asked years before and had gotten such a sharp answer that +I had not thought it prudent to meddle in the matter further. +Would he abolish slavery? + +His answer was as sharp as before, but it was music this time; +I shouldn't ever wish to hear pleasanter, though the profanity +was not good, being awkwardly put together, and with the crash-word +almost in the middle instead of at the end, where, of course, it +ought to have been. + +I was ready and willing to get free now; I hadn't wanted to get +free any sooner. No, I cannot quite say that. I had wanted to, +but I had not been willing to take desperate chances, and had +always dissuaded the king from them. But now--ah, it was a new +atmosphere! Liberty would be worth any cost that might be put +upon it now. I set about a plan, and was straightway charmed +with it. It would require time, yes, and patience, too, a great +deal of both. One could invent quicker ways, and fully as sure +ones; but none that would be as picturesque as this; none that +could be made so dramatic. And so I was not going to give this +one up. It might delay us months, but no matter, I would carry +it out or break something. + +Now and then we had an adventure. One night we were overtaken +by a snow-storm while still a mile from the village we were making +for. Almost instantly we were shut up as in a fog, the driving +snow was so thick. You couldn't see a thing, and we were soon +lost. The slave-driver lashed us desperately, for he saw ruin +before him, but his lashings only made matters worse, for they +drove us further from the road and from likelihood of succor. +So we had to stop at last and slump down in the snow where we +were. The storm continued until toward midnight, then ceased. +By this time two of our feebler men and three of our women were +dead, and others past moving and threatened with death. Our +master was nearly beside himself. He stirred up the living, and +made us stand, jump, slap ourselves, to restore our circulation, +and he helped as well as he could with his whip. + +Now came a diversion. We heard shrieks and yells, and soon a +woman came running and crying; and seeing our group, she flung +herself into our midst and begged for protection. A mob of people +came tearing after her, some with torches, and they said she was a +witch who had caused several cows to die by a strange disease, +and practiced her arts by help of a devil in the form of a black +cat. This poor woman had been stoned until she hardly looked +human, she was so battered and bloody. The mob wanted to burn her. + +Well, now, what do you suppose our master did? When we closed +around this poor creature to shelter her, he saw his chance. He +said, burn her here, or they shouldn't have her at all. Imagine +that! They were willing. They fastened her to a post; they +brought wood and piled it about her; they applied the torch while +she shrieked and pleaded and strained her two young daughters +to her breast; and our brute, with a heart solely for business, +lashed us into position about the stake and warmed us into life +and commercial value by the same fire which took away the innocent +life of that poor harmless mother. That was the sort of master we +had. I took _his_ number. That snow-storm cost him nine of his +flock; and he was more brutal to us than ever, after that, for +many days together, he was so enraged over his loss. + +We had adventures all along. One day we ran into a procession. +And such a procession! All the riffraff of the kingdom seemed +to be comprehended in it; and all drunk at that. In the van was +a cart with a coffin in it, and on the coffin sat a comely young +girl of about eighteen suckling a baby, which she squeezed to her +breast in a passion of love every little while, and every little +while wiped from its face the tears which her eyes rained down +upon it; and always the foolish little thing smiled up at her, +happy and content, kneading her breast with its dimpled fat hand, +which she patted and fondled right over her breaking heart. + +Men and women, boys and girls, trotted along beside or after +the cart, hooting, shouting profane and ribald remarks, singing +snatches of foul song, skipping, dancing--a very holiday of +hellions, a sickening sight. We had struck a suburb of London, +outside the walls, and this was a sample of one sort of London +society. Our master secured a good place for us near the gallows. +A priest was in attendance, and he helped the girl climb up, and +said comforting words to her, and made the under-sheriff provide +a stool for her. Then he stood there by her on the gallows, and +for a moment looked down upon the mass of upturned faces at his +feet, then out over the solid pavement of heads that stretched away +on every side occupying the vacancies far and near, and then began +to tell the story of the case. And there was pity in his voice +--how seldom a sound that was in that ignorant and savage land! +I remember every detail of what he said, except the words he said +it in; and so I change it into my own words: + +"Law is intended to mete out justice. Sometimes it fails. This +cannot be helped. We can only grieve, and be resigned, and pray +for the soul of him who falls unfairly by the arm of the law, and +that his fellows may be few. A law sends this poor young thing +to death--and it is right. But another law had placed her where +she must commit her crime or starve with her child--and before God +that law is responsible for both her crime and her ignominious death! + +"A little while ago this young thing, this child of eighteen years, +was as happy a wife and mother as any in England; and her lips +were blithe with song, which is the native speech of glad and +innocent hearts. Her young husband was as happy as she; for he was +doing his whole duty, he worked early and late at his handicraft, +his bread was honest bread well and fairly earned, he was prospering, +he was furnishing shelter and sustenance to his family, he was +adding his mite to the wealth of the nation. By consent of a +treacherous law, instant destruction fell upon this holy home and +swept it away! That young husband was waylaid and impressed, +and sent to sea. The wife knew nothing of it. She sought him +everywhere, she moved the hardest hearts with the supplications +of her tears, the broken eloquence of her despair. Weeks dragged +by, she watching, waiting, hoping, her mind going slowly to wreck +under the burden of her misery. Little by little all her small +possessions went for food. When she could no longer pay her rent, +they turned her out of doors. She begged, while she had strength; +when she was starving at last, and her milk failing, she stole a +piece of linen cloth of the value of a fourth part of a cent, +thinking to sell it and save her child. But she was seen by the +owner of the cloth. She was put in jail and brought to trial. +The man testified to the facts. A plea was made for her, and her +sorrowful story was told in her behalf. She spoke, too, by +permission, and said she did steal the cloth, but that her mind +was so disordered of late by trouble that when she was overborne +with hunger all acts, criminal or other, swam meaningless through +her brain and she knew nothing rightly, except that she was so +hungry! For a moment all were touched, and there was disposition +to deal mercifully with her, seeing that she was so young and +friendless, and her case so piteous, and the law that robbed her +of her support to blame as being the first and only cause of her +transgression; but the prosecuting officer replied that whereas +these things were all true, and most pitiful as well, still there +was much small theft in these days, and mistimed mercy here would +be a danger to property--oh, my God, is there no property in ruined +homes, and orphaned babes, and broken hearts that British law +holds precious!--and so he must require sentence. + +"When the judge put on his black cap, the owner of the stolen +linen rose trembling up, his lip quivering, his face as gray as +ashes; and when the awful words came, he cried out, 'Oh, poor +child, poor child, I did not know it was death!' and fell as a +tree falls. When they lifted him up his reason was gone; before +the sun was set, he had taken his own life. A kindly man; a man +whose heart was right, at bottom; add his murder to this that +is to be now done here; and charge them both where they belong +--to the rulers and the bitter laws of Britain. The time is come, my +child; let me pray over thee--not _for_ thee, dear abused poor heart +and innocent, but for them that be guilty of thy ruin and death, +who need it more." + +After his prayer they put the noose around the young girl's neck, +and they had great trouble to adjust the knot under her ear, +because she was devouring the baby all the time, wildly kissing it, +and snatching it to her face and her breast, and drenching it +with tears, and half moaning, half shrieking all the while, and the +baby crowing, and laughing, and kicking its feet with delight over +what it took for romp and play. Even the hangman couldn't stand it, +but turned away. When all was ready the priest gently pulled and +tugged and forced the child out of the mother's arms, and stepped +quickly out of her reach; but she clasped her hands, and made a +wild spring toward him, with a shriek; but the rope--and the +under-sheriff--held her short. Then she went on her knees and +stretched out her hands and cried: + +"One more kiss--oh, my God, one more, one more,--it is the dying +that begs it!" + +She got it; she almost smothered the little thing. And when they +got it away again, she cried out: + +"Oh, my child, my darling, it will die! It has no home, it has +no father, no friend, no mother--" + +"It has them all!" said that good priest. "All these will I be +to it till I die." + +You should have seen her face then! Gratitude? Lord, what do +you want with words to express that? Words are only painted fire; +a look is the fire itself. She gave that look, and carried it away +to the treasury of heaven, where all things that are divine belong. + + + +CHAPTER XXXVI + +AN ENCOUNTER IN THE DARK + +London--to a slave--was a sufficiently interesting place. It was +merely a great big village; and mainly mud and thatch. The streets +were muddy, crooked, unpaved. The populace was an ever flocking +and drifting swarm of rags, and splendors, of nodding plumes and +shining armor. The king had a palace there; he saw the outside +of it. It made him sigh; yes, and swear a little, in a poor +juvenile sixth century way. We saw knights and grandees whom +we knew, but they didn't know us in our rags and dirt and raw +welts and bruises, and wouldn't have recognized us if we had hailed +them, nor stopped to answer, either, it being unlawful to speak +with slaves on a chain. Sandy passed within ten yards of me on +a mule--hunting for me, I imagined. But the thing which clean +broke my heart was something which happened in front of our old +barrack in a square, while we were enduring the spectacle of a man +being boiled to death in oil for counterfeiting pennies. It was +the sight of a newsboy--and I couldn't get at him! Still, I had +one comfort--here was proof that Clarence was still alive and +banging away. I meant to be with him before long; the thought was +full of cheer. + +I had one little glimpse of another thing, one day, which gave me +a great uplift. It was a wire stretching from housetop to housetop. +Telegraph or telephone, sure. I did very much wish I had a little +piece of it. It was just what I needed, in order to carry out my +project of escape. My idea was to get loose some night, along with +the king, then gag and bind our master, change clothes with him, +batter him into the aspect of a stranger, hitch him to the slave-chain, +assume possession of the property, march to Camelot, and-- + +But you get my idea; you see what a stunning dramatic surprise +I would wind up with at the palace. It was all feasible, if +I could only get hold of a slender piece of iron which I could +shape into a lock-pick. I could then undo the lumbering padlocks +with which our chains were fastened, whenever I might choose. +But I never had any luck; no such thing ever happened to fall +in my way. However, my chance came at last. A gentleman who +had come twice before to dicker for me, without result, or indeed +any approach to a result, came again. I was far from expecting +ever to belong to him, for the price asked for me from the time +I was first enslaved was exorbitant, and always provoked either +anger or derision, yet my master stuck stubbornly to it--twenty-two +dollars. He wouldn't bate a cent. The king was greatly admired, +because of his grand physique, but his kingly style was against +him, and he wasn't salable; nobody wanted that kind of a slave. +I considered myself safe from parting from him because of my +extravagant price. No, I was not expecting to ever belong to +this gentleman whom I have spoken of, but he had something which +I expected would belong to me eventually, if he would but visit +us often enough. It was a steel thing with a long pin to it, with +which his long cloth outside garment was fastened together in +front. There were three of them. He had disappointed me twice, +because he did not come quite close enough to me to make my project +entirely safe; but this time I succeeded; I captured the lower +clasp of the three, and when he missed it he thought he had lost +it on the way. + +I had a chance to be glad about a minute, then straightway a chance +to be sad again. For when the purchase was about to fail, as usual, +the master suddenly spoke up and said what would be worded thus +--in modern English: + +"I'll tell you what I'll do. I'm tired supporting these two for +no good. Give me twenty-two dollars for this one, and I'll throw +the other one in." + +The king couldn't get his breath, he was in such a fury. He began +to choke and gag, and meantime the master and the gentleman moved +away discussing. + +"An ye will keep the offer open--" + +"'Tis open till the morrow at this hour." + +"Then I will answer you at that time," said the gentleman, and +disappeared, the master following him. + +I had a time of it to cool the king down, but I managed it. +I whispered in his ear, to this effect: + +"Your grace _will_ go for nothing, but after another fashion. And +so shall I. To-night we shall both be free." + +"Ah! How is that?" + +"With this thing which I have stolen, I will unlock these locks +and cast off these chains to-night. When he comes about nine-thirty +to inspect us for the night, we will seize him, gag him, batter +him, and early in the morning we will march out of this town, +proprietors of this caravan of slaves." + +That was as far as I went, but the king was charmed and satisfied. +That evening we waited patiently for our fellow-slaves to get +to sleep and signify it by the usual sign, for you must not take +many chances on those poor fellows if you can avoid it. It is +best to keep your own secrets. No doubt they fidgeted only about +as usual, but it didn't seem so to me. It seemed to me that they +were going to be forever getting down to their regular snoring. +As the time dragged on I got nervously afraid we shouldn't have +enough of it left for our needs; so I made several premature +attempts, and merely delayed things by it; for I couldn't seem +to touch a padlock, there in the dark, without starting a rattle +out of it which interrupted somebody's sleep and made him turn +over and wake some more of the gang. + +But finally I did get my last iron off, and was a free man once +more. I took a good breath of relief, and reached for the king's +irons. Too late! in comes the master, with a light in one hand +and his heavy walking-staff in the other. I snuggled close among +the wallow of snorers, to conceal as nearly as possible that I was +naked of irons; and I kept a sharp lookout and prepared to spring +for my man the moment he should bend over me. + +But he didn't approach. He stopped, gazed absently toward our +dusky mass a minute, evidently thinking about something else; +then set down his light, moved musingly toward the door, and before +a body could imagine what he was going to do, he was out of the +door and had closed it behind him. + +"Quick!" said the king. "Fetch him back!" + +Of course, it was the thing to do, and I was up and out in a +moment. But, dear me, there were no lamps in those days, and +it was a dark night. But I glimpsed a dim figure a few steps +away. I darted for it, threw myself upon it, and then there was +a state of things and lively! We fought and scuffled and struggled, +and drew a crowd in no time. They took an immense interest in +the fight and encouraged us all they could, and, in fact, couldn't +have been pleasanter or more cordial if it had been their own +fight. Then a tremendous row broke out behind us, and as much +as half of our audience left us, with a rush, to invest some +sympathy in that. Lanterns began to swing in all directions; +it was the watch gathering from far and near. Presently a halberd +fell across my back, as a reminder, and I knew what it meant. +I was in custody. So was my adversary. We were marched off toward +prison, one on each side of the watchman. Here was disaster, +here was a fine scheme gone to sudden destruction! I tried to +imagine what would happen when the master should discover that +it was I who had been fighting him; and what would happen if they +jailed us together in the general apartment for brawlers and petty +law-breakers, as was the custom; and what might-- + +Just then my antagonist turned his face around in my direction, +the freckled light from the watchman's tin lantern fell on it, +and, by George, he was the wrong man! + + + +CHAPTER XXXVII + +AN AWFUL PREDICAMENT + +Sleep? It was impossible. It would naturally have been impossible +in that noisome cavern of a jail, with its mangy crowd of drunken, +quarrelsome, and song-singing rapscallions. But the thing that +made sleep all the more a thing not to be dreamed of, was my +racking impatience to get out of this place and find out the whole +size of what might have happened yonder in the slave-quarters +in consequence of that intolerable miscarriage of mine. + +It was a long night, but the morning got around at last. I made +a full and frank explanation to the court. I said I was a slave, +the property of the great Earl Grip, who had arrived just after +dark at the Tabard inn in the village on the other side of the +water, and had stopped there over night, by compulsion, he being +taken deadly sick with a strange and sudden disorder. I had been +ordered to cross to the city in all haste and bring the best +physician; I was doing my best; naturally I was running with all +my might; the night was dark, I ran against this common person +here, who seized me by the throat and began to pummel me, although +I told him my errand, and implored him, for the sake of the great +earl my master's mortal peril-- + +The common person interrupted and said it was a lie; and was going +to explain how I rushed upon him and attacked him without a word-- + +"Silence, sirrah!" from the court. "Take him hence and give him +a few stripes whereby to teach him how to treat the servant of +a nobleman after a different fashion another time. Go!" + +Then the court begged my pardon, and hoped I would not fail +to tell his lordship it was in no wise the court's fault that this +high-handed thing had happened. I said I would make it all right, +and so took my leave. Took it just in time, too; he was starting +to ask me why I didn't fetch out these facts the moment I was +arrested. I said I would if I had thought of it--which was true +--but that I was so battered by that man that all my wit was knocked +out of me--and so forth and so on, and got myself away, still +mumbling. I didn't wait for breakfast. No grass grew under my +feet. I was soon at the slave quarters. Empty--everybody gone! +That is, everybody except one body--the slave-master's. It lay +there all battered to pulp; and all about were the evidences of +a terrific fight. There was a rude board coffin on a cart at +the door, and workmen, assisted by the police, were thinning a +road through the gaping crowd in order that they might bring it in. + +I picked out a man humble enough in life to condescend to talk +with one so shabby as I, and got his account of the matter. + +"There were sixteen slaves here. They rose against their master +in the night, and thou seest how it ended." + +"Yes. How did it begin?" + +"There was no witness but the slaves. They said the slave that +was most valuable got free of his bonds and escaped in some strange +way--by magic arts 'twas thought, by reason that he had no key, +and the locks were neither broke nor in any wise injured. When +the master discovered his loss, he was mad with despair, and threw +himself upon his people with his heavy stick, who resisted and +brake his back and in other and divers ways did give him hurts +that brought him swiftly to his end." + +"This is dreadful. It will go hard with the slaves, no doubt, +upon the trial." + +"Marry, the trial is over." + +"Over!" + +"Would they be a week, think you--and the matter so simple? They +were not the half of a quarter of an hour at it." + +"Why, I don't see how they could determine which were the guilty +ones in so short a time." + +"_Which_ ones? Indeed, they considered not particulars like to that. +They condemned them in a body. Wit ye not the law?--which men +say the Romans left behind them here when they went--that if one +slave killeth his master all the slaves of that man must die for it." + +"True. I had forgotten. And when will these die?" + +"Belike within a four and twenty hours; albeit some say they will +wait a pair of days more, if peradventure they may find the missing +one meantime." + +The missing one! It made me feel uncomfortable. + +"Is it likely they will find him?" + +"Before the day is spent--yes. They seek him everywhere. They +stand at the gates of the town, with certain of the slaves who +will discover him to them if he cometh, and none can pass out +but he will be first examined." + +"Might one see the place where the rest are confined?" + +"The outside of it--yes. The inside of it--but ye will not want +to see that." + +I took the address of that prison for future reference and then +sauntered off. At the first second-hand clothing shop I came to, +up a back street, I got a rough rig suitable for a common seaman +who might be going on a cold voyage, and bound up my face with +a liberal bandage, saying I had a toothache. This concealed my +worst bruises. It was a transformation. I no longer resembled my +former self. Then I struck out for that wire, found it and +followed it to its den. It was a little room over a butcher's +shop--which meant that business wasn't very brisk in the telegraphic +line. The young chap in charge was drowsing at his table. I locked +the door and put the vast key in my bosom. This alarmed the young +fellow, and he was going to make a noise; but I said: + +"Save your wind; if you open your mouth you are dead, sure. Tackle +your instrument. Lively, now! Call Camelot." + +"This doth amaze me! How should such as you know aught of such +matters as--" + +"Call Camelot! I am a desperate man. Call Camelot, or get away +from the instrument and I will do it myself." + +"What--you?" + +"Yes--certainly. Stop gabbling. Call the palace." + +He made the call. + +"Now, then, call Clarence." + +"Clarence _who_?" + +"Never mind Clarence who. Say you want Clarence; you'll get +an answer." + +He did so. We waited five nerve-straining minutes--ten minutes +--how long it did seem!--and then came a click that was as familiar +to me as a human voice; for Clarence had been my own pupil. + +"Now, my lad, vacate! They would have known _my_ touch, maybe, +and so your call was surest; but I'm all right now." + +He vacated the place and cocked his ear to listen--but it didn't +win. I used a cipher. I didn't waste any time in sociabilities +with Clarence, but squared away for business, straight-off--thus: + +"The king is here and in danger. We were captured and brought +here as slaves. We should not be able to prove our identity +--and the fact is, I am not in a position to try. Send a telegram +for the palace here which will carry conviction with it." + +His answer came straight back: + +"They don't know anything about the telegraph; they haven't had +any experience yet, the line to London is so new. Better not +venture that. They might hang you. Think up something else." + +Might hang us! Little he knew how closely he was crowding the +facts. I couldn't think up anything for the moment. Then an idea +struck me, and I started it along: + +"Send five hundred picked knights with Launcelot in the lead; and +send them on the jump. Let them enter by the southwest gate, and +look out for the man with a white cloth around his right arm." + +The answer was prompt: + +"They shall start in half an hour." + +"All right, Clarence; now tell this lad here that I'm a friend +of yours and a dead-head; and that he must be discreet and say +nothing about this visit of mine." + +The instrument began to talk to the youth and I hurried away. +I fell to ciphering. In half an hour it would be nine o'clock. +Knights and horses in heavy armor couldn't travel very fast. +These would make the best time they could, and now that the ground +was in good condition, and no snow or mud, they would probably +make a seven-mile gait; they would have to change horses a couple +of times; they would arrive about six, or a little after; it would +still be plenty light enough; they would see the white cloth which +I should tie around my right arm, and I would take command. We +would surround that prison and have the king out in no time. +It would be showy and picturesque enough, all things considered, +though I would have preferred noonday, on account of the more +theatrical aspect the thing would have. + +Now, then, in order to increase the strings to my bow, I thought +I would look up some of those people whom I had formerly recognized, +and make myself known. That would help us out of our scrape, +without the knights. But I must proceed cautiously, for it was +a risky business. I must get into sumptuous raiment, and it +wouldn't do to run and jump into it. No, I must work up to it +by degrees, buying suit after suit of clothes, in shops wide apart, +and getting a little finer article with each change, until I should +finally reach silk and velvet, and be ready for my project. So +I started. + +But the scheme fell through like scat! The first corner I turned, +I came plump upon one of our slaves, snooping around with a watchman. +I coughed at the moment, and he gave me a sudden look that bit right +into my marrow. I judge he thought he had heard that cough before. +I turned immediately into a shop and worked along down the counter, +pricing things and watching out of the corner of my eye. Those +people had stopped, and were talking together and looking in at +the door. I made up my mind to get out the back way, if there +was a back way, and I asked the shopwoman if I could step out +there and look for the escaped slave, who was believed to be in +hiding back there somewhere, and said I was an officer in disguise, +and my pard was yonder at the door with one of the murderers in +charge, and would she be good enough to step there and tell him +he needn't wait, but had better go at once to the further end of +the back alley and be ready to head him off when I rousted him out. + +She was blazing with eagerness to see one of those already celebrated +murderers, and she started on the errand at once. I slipped out +the back way, locked the door behind me, put the key in my pocket +and started off, chuckling to myself and comfortable. + +Well, I had gone and spoiled it again, made another mistake. +A double one, in fact. There were plenty of ways to get rid of +that officer by some simple and plausible device, but no, I must +pick out a picturesque one; it is the crying defect of my character. +And then, I had ordered my procedure upon what the officer, being +human, would _naturally_ do; whereas when you are least expecting it, +a man will now and then go and do the very thing which it's _not_ +natural for him to do. The natural thing for the officer to do, +in this case, was to follow straight on my heels; he would find +a stout oaken door, securely locked, between him and me; before +he could break it down, I should be far away and engaged in slipping +into a succession of baffling disguises which would soon get me +into a sort of raiment which was a surer protection from meddling +law-dogs in Britain than any amount of mere innocence and purity +of character. But instead of doing the natural thing, the officer +took me at my word, and followed my instructions. And so, as I +came trotting out of that cul de sac, full of satisfaction with my +own cleverness, he turned the corner and I walked right into his +handcuffs. If I had known it was a cul de sac--however, there +isn't any excusing a blunder like that, let it go. Charge it up +to profit and loss. + +Of course, I was indignant, and swore I had just come ashore from +a long voyage, and all that sort of thing--just to see, you know, +if it would deceive that slave. But it didn't. He knew me. Then +I reproached him for betraying me. He was more surprised than +hurt. He stretched his eyes wide, and said: + +"What, wouldst have me let thee, of all men, escape and not hang +with us, when thou'rt the very _cause_ of our hanging? Go to!" + +"Go to" was their way of saying "I should smile!" or "I like that!" +Queer talkers, those people. + +Well, there was a sort of bastard justice in his view of the case, +and so I dropped the matter. When you can't cure a disaster by +argument, what is the use to argue? It isn't my way. So I only said: + +"You're not going to be hanged. None of us are." + +Both men laughed, and the slave said: + +"Ye have not ranked as a fool--before. You might better keep +your reputation, seeing the strain would not be for long." + +"It will stand it, I reckon. Before to-morrow we shall be out +of prison, and free to go where we will, besides." + +The witty officer lifted at his left ear with his thumb, made +a rasping noise in his throat, and said: + +"Out of prison--yes--ye say true. And free likewise to go where +ye will, so ye wander not out of his grace the Devil's sultry realm." + +I kept my temper, and said, indifferently: + +"Now I suppose you really think we are going to hang within +a day or two." + +"I thought it not many minutes ago, for so the thing was decided +and proclaimed." + +"Ah, then you've changed your mind, is that it?" + +"Even that. I only _thought_, then; I _know_, now." + +I felt sarcastical, so I said: + +"Oh, sapient servant of the law, condescend to tell us, then, +what you _know_." + +"That ye will all be hanged _to-day_, at mid-afternoon! Oho! that +shot hit home! Lean upon me." + +The fact is I did need to lean upon somebody. My knights couldn't +arrive in time. They would be as much as three hours too late. +Nothing in the world could save the King of England; nor me, which +was more important. More important, not merely to me, but to +the nation--the only nation on earth standing ready to blossom +into civilization. I was sick. I said no more, there wasn't +anything to say. I knew what the man meant; that if the missing +slave was found, the postponement would be revoked, the execution +take place to-day. Well, the missing slave was found. + + + +CHAPTER XXXVIII + +SIR LAUNCELOT AND KNIGHTS TO THE RESCUE + +Nearing four in the afternoon. The scene was just outside the +walls of London. A cool, comfortable, superb day, with a brilliant +sun; the kind of day to make one want to live, not die. The +multitude was prodigious and far-reaching; and yet we fifteen +poor devils hadn't a friend in it. There was something painful +in that thought, look at it how you might. There we sat, on our +tall scaffold, the butt of the hate and mockery of all those +enemies. We were being made a holiday spectacle. They had built +a sort of grand stand for the nobility and gentry, and these were +there in full force, with their ladies. We recognized a good +many of them. + +The crowd got a brief and unexpected dash of diversion out of +the king. The moment we were freed of our bonds he sprang up, +in his fantastic rags, with face bruised out of all recognition, and +proclaimed himself Arthur, King of Britain, and denounced the +awful penalties of treason upon every soul there present if hair +of his sacred head were touched. It startled and surprised him +to hear them break into a vast roar of laughter. It wounded his +dignity, and he locked himself up in silence. Then, although +the crowd begged him to go on, and tried to provoke him to it +by catcalls, jeers, and shouts of: + +"Let him speak! The king! The king! his humble subjects hunger +and thirst for words of wisdom out of the mouth of their master +his Serene and Sacred Raggedness!" + +But it went for nothing. He put on all his majesty and sat under +this rain of contempt and insult unmoved. He certainly was great +in his way. Absently, I had taken off my white bandage and wound +it about my right arm. When the crowd noticed this, they began +upon me. They said: + +"Doubtless this sailor-man is his minister--observe his costly +badge of office!" + +I let them go on until they got tired, and then I said: + +"Yes, I am his minister, The Boss; and to-morrow you will hear +that from Camelot which--" + +I got no further. They drowned me out with joyous derision. But +presently there was silence; for the sheriffs of London, in their +official robes, with their subordinates, began to make a stir which +indicated that business was about to begin. In the hush which +followed, our crime was recited, the death warrant read, then +everybody uncovered while a priest uttered a prayer. + +Then a slave was blindfolded; the hangman unslung his rope. There +lay the smooth road below us, we upon one side of it, the banked +multitude wailing its other side--a good clear road, and kept free +by the police--how good it would be to see my five hundred horsemen +come tearing down it! But no, it was out of the possibilities. +I followed its receding thread out into the distance--not a horseman +on it, or sign of one. + +There was a jerk, and the slave hung dangling; dangling and hideously +squirming, for his limbs were not tied. + +A second rope was unslung, in a moment another slave was dangling. + +In a minute a third slave was struggling in the air. It was +dreadful. I turned away my head a moment, and when I turned back +I missed the king! They were blindfolding him! I was paralyzed; +I couldn't move, I was choking, my tongue was petrified. They +finished blindfolding him, they led him under the rope. I couldn't +shake off that clinging impotence. But when I saw them put the +noose around his neck, then everything let go in me and I made +a spring to the rescue--and as I made it I shot one more glance +abroad--by George! here they came, a-tilting!--five hundred mailed +and belted knights on bicycles! + +The grandest sight that ever was seen. Lord, how the plumes +streamed, how the sun flamed and flashed from the endless procession +of webby wheels! + +I waved my right arm as Launcelot swept in--he recognized my rag +--I tore away noose and bandage, and shouted: + +"On your knees, every rascal of you, and salute the king! Who +fails shall sup in hell to-night!" + +I always use that high style when I'm climaxing an effect. Well, +it was noble to see Launcelot and the boys swarm up onto that +scaffold and heave sheriffs and such overboard. And it was fine +to see that astonished multitude go down on their knees and beg +their lives of the king they had just been deriding and insulting. +And as he stood apart there, receiving this homage in rags, +I thought to myself, well, really there is something peculiarly +grand about the gait and bearing of a king, after all. + +I was immensely satisfied. Take the whole situation all around, +it was one of the gaudiest effects I ever instigated. + +And presently up comes Clarence, his own self! and winks, and +says, very modernly: + +"Good deal of a surprise, wasn't it? I knew you'd like it. I've +had the boys practicing this long time, privately; and just hungry +for a chance to show off." + + + +CHAPTER XXXIX + +THE YANKEE'S FIGHT WITH THE KNIGHTS + +Home again, at Camelot. A morning or two later I found the paper, +damp from the press, by my plate at the breakfast table. I turned +to the advertising columns, knowing I should find something of +personal interest to me there. It was this: + + DE PAR LE ROI. + + Know that the great lord and illus- + trious Kni8ht, SIR SAGRAMOR LE + DESIROUS having condescended to + meet the King's Minister, Hank Mor- + gan, the which is surnamed The Boss, + for satisfgction of offence anciently given, + these wilL engage in the lists by + Camelot about the fourth hour of the + morning of the sixteenth day of this + next succeeding month. The battle + will be a l outrance, sith the said offence + was of a deadly sort, admitting of no + comPosition. + + DE PAR LE ROI + + +Clarence's editorial reference to this affair was to this effect: + + It will be observed, by a gl7nce at our + advertising columns, that the commu- + nity is to be favored with a treat of un- + usual interest in the tournament line. + The names of the artists are warrant of + good enterrainment. The box-office + will be open at noon of the 13th; ad- + mission 3 cents, reserved seatsh 5; pro- + ceeds to go to the hospital fund The + royal pair and all the Court will be pres- + ent. With these exceptions, and the + press and the clergy, the free list is strict- + ly susPended. Parties are hereby warn- + ed against buying tickets of speculators; + they will not be good at the door. + Everybody knows and likes The Boss, + everybody knows and likes Sir Sag.; + come, let us give the lads a good send- + off. ReMember, the proceeds go to a + great and free charity, and one whose + broad begevolence stretches out its help- + ing hand, warm with the blood of a lov- + ing heart, to all that suffer, regardless of + race, creed, condition or color--the + only charity yet established in the earth + which has no politico-religious stop- + cock on its compassion, but says Here + flows the stream, let ALL come and + drink! Turn out, all hands! fetch along + your dou3hnuts and your gum-drops + and have a good time. Pie for sale on + the grounds, and rocks to crack it with; + and ciRcus-lemonade--three drops of + lime juice to a barrel of water. + + N.B. This is the first tournament + under the new law, whidh allow each + combatant to use any weapon he may pre- + fer. You may want to make a note of that. + +Up to the day set, there was no talk in all Britain of anything +but this combat. All other topics sank into insignificance and +passed out of men's thoughts and interest. It was not because +a tournament was a great matter, it was not because Sir Sagramor +had found the Holy Grail, for he had not, but had failed; it was +not because the second (official) personage in the kingdom was +one of the duellists; no, all these features were commonplace. +Yet there was abundant reason for the extraordinary interest which +this coming fight was creating. It was born of the fact that all +the nation knew that this was not to be a duel between mere men, +so to speak, but a duel between two mighty magicians; a duel not +of muscle but of mind, not of human skill but of superhuman art +and craft; a final struggle for supremacy between the two master +enchanters of the age. It was realized that the most prodigious +achievements of the most renowned knights could not be worthy +of comparison with a spectacle like this; they could be but child's +play, contrasted with this mysterious and awful battle of the gods. +Yes, all the world knew it was going to be in reality a duel +between Merlin and me, a measuring of his magic powers against +mine. It was known that Merlin had been busy whole days and nights +together, imbuing Sir Sagramor's arms and armor with supernal +powers of offense and defense, and that he had procured for him +from the spirits of the air a fleecy veil which would render the +wearer invisible to his antagonist while still visible to other +men. Against Sir Sagramor, so weaponed and protected, a thousand +knights could accomplish nothing; against him no known enchantments +could prevail. These facts were sure; regarding them there was +no doubt, no reason for doubt. There was but one question: might +there be still other enchantments, _unknown_ to Merlin, which could +render Sir Sagramor's veil transparent to me, and make his enchanted +mail vulnerable to my weapons? This was the one thing to be +decided in the lists. Until then the world must remain in suspense. + +So the world thought there was a vast matter at stake here, and +the world was right, but it was not the one they had in their +minds. No, a far vaster one was upon the cast of this die: +_the life of knight-errantry_. I was a champion, it was true, but +not the champion of the frivolous black arts, I was the champion +of hard unsentimental common-sense and reason. I was entering +the lists to either destroy knight-errantry or be its victim. + +Vast as the show-grounds were, there were no vacant spaces in them +outside of the lists, at ten o'clock on the morning of the 16th. +The mammoth grand-stand was clothed in flags, streamers, and rich +tapestries, and packed with several acres of small-fry tributary +kings, their suites, and the British aristocracy; with our own +royal gang in the chief place, and each and every individual +a flashing prism of gaudy silks and velvets--well, I never saw +anything to begin with it but a fight between an Upper Mississippi +sunset and the aurora borealis. The huge camp of beflagged and +gay-colored tents at one end of the lists, with a stiff-standing +sentinel at every door and a shining shield hanging by him for +challenge, was another fine sight. You see, every knight was +there who had any ambition or any caste feeling; for my feeling +toward their order was not much of a secret, and so here was their +chance. If I won my fight with Sir Sagramor, others would have +the right to call me out as long as I might be willing to respond. + +Down at our end there were but two tents; one for me, and another +for my servants. At the appointed hour the king made a sign, and +the heralds, in their tabards, appeared and made proclamation, +naming the combatants and stating the cause of quarrel. There +was a pause, then a ringing bugle-blast, which was the signal for +us to come forth. All the multitude caught their breath, and +an eager curiosity flashed into every face. + +Out from his tent rode great Sir Sagramor, an imposing tower +of iron, stately and rigid, his huge spear standing upright in its +socket and grasped in his strong hand, his grand horse's face and +breast cased in steel, his body clothed in rich trappings that +almost dragged the ground--oh, a most noble picture. A great +shout went up, of welcome and admiration. + +And then out I came. But I didn't get any shout. There was +a wondering and eloquent silence for a moment, then a great wave +of laughter began to sweep along that human sea, but a warning +bugle-blast cut its career short. I was in the simplest and +comfortablest of gymnast costumes--flesh-colored tights from neck +to heel, with blue silk puffings about my loins, and bareheaded. +My horse was not above medium size, but he was alert, slender-limbed, +muscled with watchsprings, and just a greyhound to go. He was +a beauty, glossy as silk, and naked as he was when he was born, +except for bridle and ranger-saddle. + +The iron tower and the gorgeous bedquilt came cumbrously but +gracefully pirouetting down the lists, and we tripped lightly up +to meet them. We halted; the tower saluted, I responded; then +we wheeled and rode side by side to the grand-stand and faced +our king and queen, to whom we made obeisance. The queen exclaimed: + +"Alack, Sir Boss, wilt fight naked, and without lance or sword or--" + +But the king checked her and made her understand, with a polite +phrase or two, that this was none of her business. The bugles +rang again; and we separated and rode to the ends of the lists, +and took position. Now old Merlin stepped into view and cast +a dainty web of gossamer threads over Sir Sagramor which turned +him into Hamlet's ghost; the king made a sign, the bugles blew, +Sir Sagramor laid his great lance in rest, and the next moment here +he came thundering down the course with his veil flying out behind, +and I went whistling through the air like an arrow to meet him +--cocking my ear the while, as if noting the invisible knight's +position and progress by hearing, not sight. A chorus of encouraging +shouts burst out for him, and one brave voice flung out a heartening +word for me--said: + +"Go it, slim Jim!" + +It was an even bet that Clarence had procured that favor for me +--and furnished the language, too. When that formidable lance-point +was within a yard and a half of my breast I twitched my horse aside +without an effort, and the big knight swept by, scoring a blank. +I got plenty of applause that time. We turned, braced up, and +down we came again. Another blank for the knight, a roar of +applause for me. This same thing was repeated once more; and +it fetched such a whirlwind of applause that Sir Sagramor lost his +temper, and at once changed his tactics and set himself the task +of chasing me down. Why, he hadn't any show in the world at that; +it was a game of tag, with all the advantage on my side; I whirled +out of his path with ease whenever I chose, and once I slapped him +on the back as I went to the rear. Finally I took the chase into +my own hands; and after that, turn, or twist, or do what he would, +he was never able to get behind me again; he found himself always +in front at the end of his maneuver. So he gave up that business +and retired to his end of the lists. His temper was clear gone now, +and he forgot himself and flung an insult at me which disposed +of mine. I slipped my lasso from the horn of my saddle, and +grasped the coil in my right hand. This time you should have seen +him come!--it was a business trip, sure; by his gait there was +blood in his eye. I was sitting my horse at ease, and swinging +the great loop of my lasso in wide circles about my head; the +moment he was under way, I started for him; when the space between +us had narrowed to forty feet, I sent the snaky spirals of the rope +a-cleaving through the air, then darted aside and faced about and +brought my trained animal to a halt with all his feet braced under +him for a surge. The next moment the rope sprang taut and yanked +Sir Sagramor out of the saddle! Great Scott, but there was +a sensation! + +Unquestionably, the popular thing in this world is novelty. These +people had never seen anything of that cowboy business before, +and it carried them clear off their feet with delight. From all +around and everywhere, the shout went up: + +"Encore! encore!" + +I wondered where they got the word, but there was no time to cipher +on philological matters, because the whole knight-errantry hive +was just humming now, and my prospect for trade couldn't have +been better. The moment my lasso was released and Sir Sagramor +had been assisted to his tent, I hauled in the slack, took my +station and began to swing my loop around my head again. I was +sure to have use for it as soon as they could elect a successor +for Sir Sagramor, and that couldn't take long where there were +so many hungry candidates. Indeed, they elected one straight off +--Sir Hervis de Revel. + +_Bzz_! Here he came, like a house afire; I dodged: he passed like +a flash, with my horse-hair coils settling around his neck; +a second or so later, _fst_! his saddle was empty. + +I got another encore; and another, and another, and still another. +When I had snaked five men out, things began to look serious to +the ironclads, and they stopped and consulted together. As a +result, they decided that it was time to waive etiquette and send +their greatest and best against me. To the astonishment of that +little world, I lassoed Sir Lamorak de Galis, and after him +Sir Galahad. So you see there was simply nothing to be done now, +but play their right bower--bring out the superbest of the superb, +the mightiest of the mighty, the great Sir Launcelot himself! + +A proud moment for me? I should think so. Yonder was Arthur, +King of Britain; yonder was Guenever; yes, and whole tribes of +little provincial kings and kinglets; and in the tented camp yonder, +renowned knights from many lands; and likewise the selectest body +known to chivalry, the Knights of the Table Round, the most +illustrious in Christendom; and biggest fact of all, the very sun +of their shining system was yonder couching his lance, the focal +point of forty thousand adoring eyes; and all by myself, here was +I laying for him. Across my mind flitted the dear image of a +certain hello-girl of West Hartford, and I wished she could see +me now. In that moment, down came the Invincible, with the rush +of a whirlwind--the courtly world rose to its feet and bent forward +--the fateful coils went circling through the air, and before you +could wink I was towing Sir Launcelot across the field on his +back, and kissing my hand to the storm of waving kerchiefs and +the thunder-crash of applause that greeted me! + +Said I to myself, as I coiled my lariat and hung it on my saddle-horn, +and sat there drunk with glory, "The victory is perfect--no other +will venture against me--knight-errantry is dead." Now imagine my +astonishment--and everybody else's, too--to hear the peculiar +bugle-call which announces that another competitor is about to +enter the lists! There was a mystery here; I couldn't account for +this thing. Next, I noticed Merlin gliding away from me; and then +I noticed that my lasso was gone! The old sleight-of-hand expert +had stolen it, sure, and slipped it under his robe. + +The bugle blew again. I looked, and down came Sagramor riding +again, with his dust brushed off and his veil nicely re-arranged. +I trotted up to meet him, and pretended to find him by the sound +of his horse's hoofs. He said: + +"Thou'rt quick of ear, but it will not save thee from this!" and +he touched the hilt of his great sword. "An ye are not able to see +it, because of the influence of the veil, know that it is no cumbrous +lance, but a sword--and I ween ye will not be able to avoid it." + +His visor was up; there was death in his smile. I should never +be able to dodge his sword, that was plain. Somebody was going +to die this time. If he got the drop on me, I could name the +corpse. We rode forward together, and saluted the royalties. +This time the king was disturbed. He said: + +"Where is thy strange weapon?" + +"It is stolen, sire." + +"Hast another at hand?" + +"No, sire, I brought only the one." + +Then Merlin mixed in: + +"He brought but the one because there was but the one to bring. +There exists none other but that one. It belongeth to the king +of the Demons of the Sea. This man is a pretender, and ignorant, +else he had known that that weapon can be used in but eight bouts +only, and then it vanisheth away to its home under the sea." + +"Then is he weaponless," said the king. "Sir Sagramore, ye will +grant him leave to borrow." + +"And I will lend!" said Sir Launcelot, limping up. "He is as +brave a knight of his hands as any that be on live, and he shall +have mine." + +He put his hand on his sword to draw it, but Sir Sagramor said: + +"Stay, it may not be. He shall fight with his own weapons; it +was his privilege to choose them and bring them. If he has erred, +on his head be it." + +"Knight!" said the king. "Thou'rt overwrought with passion; it +disorders thy mind. Wouldst kill a naked man?" + +"An he do it, he shall answer it to me," said Sir Launcelot. + +"I will answer it to any he that desireth!" retorted Sir Sagramor hotly. + +Merlin broke in, rubbing his hands and smiling his lowdownest +smile of malicious gratification: + +"'Tis well said, right well said! And 'tis enough of parleying, +let my lord the king deliver the battle signal." + +The king had to yield. The bugle made proclamation, and we turned +apart and rode to our stations. There we stood, a hundred yards +apart, facing each other, rigid and motionless, like horsed statues. +And so we remained, in a soundless hush, as much as a full minute, +everybody gazing, nobody stirring. It seemed as if the king could +not take heart to give the signal. But at last he lifted his hand, +the clear note of the bugle followed, Sir Sagramor's long blade +described a flashing curve in the air, and it was superb to see him +come. I sat still. On he came. I did not move. People got so +excited that they shouted to me: + +"Fly, fly! Save thyself! This is murther!" + +I never budged so much as an inch till that thundering apparition +had got within fifteen paces of me; then I snatched a dragoon +revolver out of my holster, there was a flash and a roar, and +the revolver was back in the holster before anybody could tell +what had happened. + +Here was a riderless horse plunging by, and yonder lay Sir Sagramor, +stone dead. + +The people that ran to him were stricken dumb to find that the life +was actually gone out of the man and no reason for it visible, +no hurt upon his body, nothing like a wound. There was a hole +through the breast of his chain-mail, but they attached no importance +to a little thing like that; and as a bullet wound there produces +but little blood, none came in sight because of the clothing and +swaddlings under the armor. The body was dragged over to let +the king and the swells look down upon it. They were stupefied +with astonishment naturally. I was requested to come and explain +the miracle. But I remained in my tracks, like a statue, and said: + +"If it is a command, I will come, but my lord the king knows that +I am where the laws of combat require me to remain while any desire +to come against me." + +I waited. Nobody challenged. Then I said: + +"If there are any who doubt that this field is well and fairly won, +I do not wait for them to challenge me, I challenge them." + +"It is a gallant offer," said the king, "and well beseems you. +Whom will you name first?" + +"I name none, I challenge all! Here I stand, and dare the chivalry +of England to come against me--not by individuals, but in mass!" + +"What!" shouted a score of knights. + +"You have heard the challenge. Take it, or I proclaim you recreant +knights and vanquished, every one!" + +It was a "bluff" you know. At such a time it is sound judgment +to put on a bold face and play your hand for a hundred times what +it is worth; forty-nine times out of fifty nobody dares to "call," +and you rake in the chips. But just this once--well, things looked +squally! In just no time, five hundred knights were scrambling +into their saddles, and before you could wink a widely scattering +drove were under way and clattering down upon me. I snatched +both revolvers from the holsters and began to measure distances +and calculate chances. + +Bang! One saddle empty. Bang! another one. Bang--bang, and +I bagged two. Well, it was nip and tuck with us, and I knew it. +If I spent the eleventh shot without convincing these people, +the twelfth man would kill me, sure. And so I never did feel +so happy as I did when my ninth downed its man and I detected +the wavering in the crowd which is premonitory of panic. An instant +lost now could knock out my last chance. But I didn't lose it. +I raised both revolvers and pointed them--the halted host stood +their ground just about one good square moment, then broke and fled. + +The day was mine. Knight-errantry was a doomed institution. The +march of civilization was begun. How did I feel? Ah, you never +could imagine it. + +And Brer Merlin? His stock was flat again. Somehow, every time +the magic of fol-de-rol tried conclusions with the magic of science, +the magic of fol-de-rol got left. + + + +CHAPTER XL + +THREE YEARS LATER + +When I broke the back of knight-errantry that time, I no longer +felt obliged to work in secret. So, the very next day I exposed +my hidden schools, my mines, and my vast system of clandestine +factories and workshops to an astonished world. That is to say, +I exposed the nineteenth century to the inspection of the sixth. + +Well, it is always a good plan to follow up an advantage promptly. +The knights were temporarily down, but if I would keep them so +I must just simply paralyze them--nothing short of that would +answer. You see, I was "bluffing" that last time in the field; +it would be natural for them to work around to that conclusion, +if I gave them a chance. So I must not give them time; and I didn't. + +I renewed my challenge, engraved it on brass, posted it up where +any priest could read it to them, and also kept it standing in +the advertising columns of the paper. + +I not only renewed it, but added to its proportions. I said, +name the day, and I would take fifty assistants and stand up +_against the massed chivalry of the whole earth and destroy it_. + +I was not bluffing this time. I meant what I said; I could do +what I promised. There wasn't any way to misunderstand the language +of that challenge. Even the dullest of the chivalry perceived +that this was a plain case of "put up, or shut up." They were +wise and did the latter. In all the next three years they gave +me no trouble worth mentioning. + +Consider the three years sped. Now look around on England. A happy +and prosperous country, and strangely altered. Schools everywhere, +and several colleges; a number of pretty good newspapers. Even +authorship was taking a start; Sir Dinadan the Humorist was first +in the field, with a volume of gray-headed jokes which I had been +familiar with during thirteen centuries. If he had left out that +old rancid one about the lecturer I wouldn't have said anything; +but I couldn't stand that one. I suppressed the book and hanged +the author. + +Slavery was dead and gone; all men were equal before the law; +taxation had been equalized. The telegraph, the telephone, the +phonograph, the typewriter, the sewing-machine, and all the thousand +willing and handy servants of steam and electricity were working +their way into favor. We had a steamboat or two on the Thames, +we had steam warships, and the beginnings of a steam commercial +marine; I was getting ready to send out an expedition to discover +America. + +We were building several lines of railway, and our line from +Camelot to London was already finished and in operation. I was +shrewd enough to make all offices connected with the passenger +service places of high and distinguished honor. My idea was +to attract the chivalry and nobility, and make them useful and keep +them out of mischief. The plan worked very well, the competition +for the places was hot. The conductor of the 4.33 express was +a duke; there wasn't a passenger conductor on the line below +the degree of earl. They were good men, every one, but they had +two defects which I couldn't cure, and so had to wink at: they +wouldn't lay aside their armor, and they would "knock down" fare +--I mean rob the company. + +There was hardly a knight in all the land who wasn't in some useful +employment. They were going from end to end of the country in all +manner of useful missionary capacities; their penchant for wandering, +and their experience in it, made them altogether the most effective +spreaders of civilization we had. They went clothed in steel and +equipped with sword and lance and battle-axe, and if they couldn't +persuade a person to try a sewing-machine on the installment plan, +or a melodeon, or a barbed-wire fence, or a prohibition journal, +or any of the other thousand and one things they canvassed for, +they removed him and passed on. + +I was very happy. Things were working steadily toward a secretly +longed-for point. You see, I had two schemes in my head which +were the vastest of all my projects. The one was to overthrow the +Catholic Church and set up the Protestant faith on its ruins +--not as an Established Church, but a go-as-you-please one; and +the other project was to get a decree issued by and by, commanding +that upon Arthur's death unlimited suffrage should be introduced, +and given to men and women alike--at any rate to all men, wise +or unwise, and to all mothers who at middle age should be found +to know nearly as much as their sons at twenty-one. Arthur was +good for thirty years yet, he being about my own age--that is +to say, forty--and I believed that in that time I could easily +have the active part of the population of that day ready and eager +for an event which should be the first of its kind in the history +of the world--a rounded and complete governmental revolution +without bloodshed. The result to be a republic. Well, I may +as well confess, though I do feel ashamed when I think of it: +I was beginning to have a base hankering to be its first president +myself. Yes, there was more or less human nature in me; I found +that out. + +Clarence was with me as concerned the revolution, but in a modified +way. His idea was a republic, without privileged orders, but with +a hereditary royal family at the head of it instead of an elective +chief magistrate. He believed that no nation that had ever known +the joy of worshiping a royal family could ever be robbed of it +and not fade away and die of melancholy. I urged that kings were +dangerous. He said, then have cats. He was sure that a royal +family of cats would answer every purpose. They would be as useful +as any other royal family, they would know as much, they would +have the same virtues and the same treacheries, the same disposition +to get up shindies with other royal cats, they would be laughably +vain and absurd and never know it, they would be wholly inexpensive; +finally, they would have as sound a divine right as any other +royal house, and "Tom VII, or Tom XI, or Tom XIV by the grace +of God King," would sound as well as it would when applied to +the ordinary royal tomcat with tights on. "And as a rule," said +he, in his neat modern English, "the character of these cats would +be considerably above the character of the average king, and this +would be an immense moral advantage to the nation, for the reason +that a nation always models its morals after its monarch's. The +worship of royalty being founded in unreason, these graceful and +harmless cats would easily become as sacred as any other royalties, +and indeed more so, because it would presently be noticed that +they hanged nobody, beheaded nobody, imprisoned nobody, inflicted +no cruelties or injustices of any sort, and so must be worthy of +a deeper love and reverence than the customary human king, and +would certainly get it. The eyes of the whole harried world would +soon be fixed upon this humane and gentle system, and royal butchers +would presently begin to disappear; their subjects would fill +the vacancies with catlings from our own royal house; we should +become a factory; we should supply the thrones of the world; within +forty years all Europe would be governed by cats, and we should +furnish the cats. The reign of universal peace would begin then, +to end no more forever.... Me-e-e-yow-ow-ow-ow--fzt!--wow!" + +Hang him, I supposed he was in earnest, and was beginning to be +persuaded by him, until he exploded that cat-howl and startled me +almost out of my clothes. But he never could be in earnest. He +didn't know what it was. He had pictured a distinct and perfectly +rational and feasible improvement upon constitutional monarchy, +but he was too feather-headed to know it, or care anything about +it, either. I was going to give him a scolding, but Sandy came +flying in at that moment, wild with terror, and so choked with sobs +that for a minute she could not get her voice. I ran and took her +in my arms, and lavished caresses upon her and said, beseechingly: + +"Speak, darling, speak! What is it?" + +Her head fell limp upon my bosom, and she gasped, almost inaudibly: + +"HELLO-CENTRAL!" + +"Quick!" I shouted to Clarence; "telephone the king's homeopath +to come!" + +In two minutes I was kneeling by the child's crib, and Sandy was +dispatching servants here, there, and everywhere, all over the +palace. I took in the situation almost at a glance--membranous +croup! I bent down and whispered: + +"Wake up, sweetheart! Hello-Central." + +She opened her soft eyes languidly, and made out to say: + +"Papa." + +That was a comfort. She was far from dead yet. I sent for +preparations of sulphur, I rousted out the croup-kettle myself; +for I don't sit down and wait for doctors when Sandy or the child +is sick. I knew how to nurse both of them, and had had experience. +This little chap had lived in my arms a good part of its small life, +and often I could soothe away its troubles and get it to laugh +through the tear-dews on its eye-lashes when even its mother couldn't. + +Sir Launcelot, in his richest armor, came striding along the great +hall now on his way to the stock-board; he was president of the +stock-board, and occupied the Siege Perilous, which he had bought +of Sir Galahad; for the stock-board consisted of the Knights of +the Round Table, and they used the Round Table for business purposes +now. Seats at it were worth--well, you would never believe the +figure, so it is no use to state it. Sir Launcelot was a bear, and +he had put up a corner in one of the new lines, and was just getting +ready to squeeze the shorts to-day; but what of that? He was +the same old Launcelot, and when he glanced in as he was passing +the door and found out that his pet was sick, that was enough +for him; bulls and bears might fight it out their own way for all +him, he would come right in here and stand by little Hello-Central +for all he was worth. And that was what he did. He shied his +helmet into the corner, and in half a minute he had a new wick +in the alcohol lamp and was firing up on the croup-kettle. By this +time Sandy had built a blanket canopy over the crib, and everything +was ready. + +Sir Launcelot got up steam, he and I loaded up the kettle with +unslaked lime and carbolic acid, with a touch of lactic acid added +thereto, then filled the thing up with water and inserted the +steam-spout under the canopy. Everything was ship-shape now, +and we sat down on either side of the crib to stand our watch. +Sandy was so grateful and so comforted that she charged a couple +of church-wardens with willow-bark and sumach-tobacco for us, +and told us to smoke as much as we pleased, it couldn't get under +the canopy, and she was used to smoke, being the first lady in the +land who had ever seen a cloud blown. Well, there couldn't be +a more contented or comfortable sight than Sir Launcelot in his +noble armor sitting in gracious serenity at the end of a yard +of snowy church-warden. He was a beautiful man, a lovely man, +and was just intended to make a wife and children happy. But, of +course Guenever--however, it's no use to cry over what's done and +can't be helped. + +Well, he stood watch-and-watch with me, right straight through, +for three days and nights, till the child was out of danger; then +he took her up in his great arms and kissed her, with his plumes +falling about her golden head, then laid her softly in Sandy's +lap again and took his stately way down the vast hall, between +the ranks of admiring men-at-arms and menials, and so disappeared. +And no instinct warned me that I should never look upon him again +in this world! Lord, what a world of heart-break it is. + +The doctors said we must take the child away, if we would coax +her back to health and strength again. And she must have sea-air. +So we took a man-of-war, and a suite of two hundred and sixty +persons, and went cruising about, and after a fortnight of this we +stepped ashore on the French coast, and the doctors thought it +would be a good idea to make something of a stay there. The little +king of that region offered us his hospitalities, and we were glad +to accept. If he had had as many conveniences as he lacked, we +should have been plenty comfortable enough; even as it was, we +made out very well, in his queer old castle, by the help of comforts +and luxuries from the ship. + +At the end of a month I sent the vessel home for fresh supplies, +and for news. We expected her back in three or four days. She +would bring me, along with other news, the result of a certain +experiment which I had been starting. It was a project of mine +to replace the tournament with something which might furnish an +escape for the extra steam of the chivalry, keep those bucks +entertained and out of mischief, and at the same time preserve +the best thing in them, which was their hardy spirit of emulation. +I had had a choice band of them in private training for some time, +and the date was now arriving for their first public effort. + +This experiment was baseball. In order to give the thing vogue +from the start, and place it out of the reach of criticism, I chose +my nines by rank, not capacity. There wasn't a knight in either +team who wasn't a sceptered sovereign. As for material of this +sort, there was a glut of it always around Arthur. You couldn't +throw a brick in any direction and not cripple a king. Of course, +I couldn't get these people to leave off their armor; they wouldn't +do that when they bathed. They consented to differentiate the +armor so that a body could tell one team from the other, but that +was the most they would do. So, one of the teams wore chain-mail +ulsters, and the other wore plate-armor made of my new Bessemer +steel. Their practice in the field was the most fantastic thing I +ever saw. Being ball-proof, they never skipped out of the way, +but stood still and took the result; when a Bessemer was at the bat +and a ball hit him, it would bound a hundred and fifty yards +sometimes. And when a man was running, and threw himself on his +stomach to slide to his base, it was like an iron-clad coming into +port. At first I appointed men of no rank to act as umpires, but +I had to discontinue that. These people were no easier to please +than other nines. The umpire's first decision was usually his +last; they broke him in two with a bat, and his friends toted him +home on a shutter. When it was noticed that no umpire ever survived +a game, umpiring got to be unpopular. So I was obliged to appoint +somebody whose rank and lofty position under the government would +protect him. + +Here are the names of the nines: + + BESSEMERS ULSTERS + + KING ARTHUR. EMPEROR LUCIUS. + KING LOT OF LOTHIAN. KING LOGRIS. + KING OF NORTHGALIS. KING MARHALT OF IRELAND. + KING MARSIL. KING MORGANORE. + KING OF LITTLE BRITAIN. KING MARK OF CORNWALL. + KING LABOR. KING NENTRES OF GARLOT. + KING PELLAM OF LISTENGESE. KING MELIODAS OF LIONES. + KING BAGDEMAGUS. KING OF THE LAKE. + KING TOLLEME LA FEINTES. THE SOWDAN OF SYRIA. + + Umpire--CLARENCE. + +The first public game would certainly draw fifty thousand people; +and for solid fun would be worth going around the world to see. +Everything would be favorable; it was balmy and beautiful spring +weather now, and Nature was all tailored out in her new clothes. + + + +CHAPTER XLI + +THE INTERDICT + +However, my attention was suddenly snatched from such matters; +our child began to lose ground again, and we had to go to sitting +up with her, her case became so serious. We couldn't bear to allow +anybody to help in this service, so we two stood watch-and-watch, +day in and day out. Ah, Sandy, what a right heart she had, how +simple, and genuine, and good she was! She was a flawless wife +and mother; and yet I had married her for no other particular +reasons, except that by the customs of chivalry she was my property +until some knight should win her from me in the field. She had +hunted Britain over for me; had found me at the hanging-bout +outside of London, and had straightway resumed her old place at +my side in the placidest way and as of right. I was a New Englander, +and in my opinion this sort of partnership would compromise her, +sooner or later. She couldn't see how, but I cut argument short +and we had a wedding. + +Now I didn't know I was drawing a prize, yet that was what I did +draw. Within the twelvemonth I became her worshiper; and ours +was the dearest and perfectest comradeship that ever was. People +talk about beautiful friendships between two persons of the same +sex. What is the best of that sort, as compared with the friendship +of man and wife, where the best impulses and highest ideals of +both are the same? There is no place for comparison between +the two friendships; the one is earthly, the other divine. + +In my dreams, along at first, I still wandered thirteen centuries +away, and my unsatisfied spirit went calling and harking all up +and down the unreplying vacancies of a vanished world. Many a +time Sandy heard that imploring cry come from my lips in my sleep. +With a grand magnanimity she saddled that cry of mine upon our +child, conceiving it to be the name of some lost darling of mine. +It touched me to tears, and it also nearly knocked me off my feet, +too, when she smiled up in my face for an earned reward, and played +her quaint and pretty surprise upon me: + +"The name of one who was dear to thee is here preserved, here made +holy, and the music of it will abide alway in our ears. Now +thou'lt kiss me, as knowing the name I have given the child." + +But I didn't know it, all the same. I hadn't an idea in the +world; but it would have been cruel to confess it and spoil her +pretty game; so I never let on, but said: + +"Yes, I know, sweetheart--how dear and good it is of you, too! +But I want to hear these lips of yours, which are also mine, utter +it first--then its music will be perfect." + +Pleased to the marrow, she murmured: + +"HELLO-CENTRAL!" + +I didn't laugh--I am always thankful for that--but the strain +ruptured every cartilage in me, and for weeks afterward I could +hear my bones clack when I walked. She never found out her mistake. +The first time she heard that form of salute used at the telephone +she was surprised, and not pleased; but I told her I had given +order for it: that henceforth and forever the telephone must +always be invoked with that reverent formality, in perpetual honor +and remembrance of my lost friend and her small namesake. This +was not true. But it answered. + +Well, during two weeks and a half we watched by the crib, and in +our deep solicitude we were unconscious of any world outside of +that sick-room. Then our reward came: the center of the universe +turned the corner and began to mend. Grateful? It isn't the term. +There _isn't_ any term for it. You know that yourself, if you've +watched your child through the Valley of the Shadow and seen it +come back to life and sweep night out of the earth with one +all-illuminating smile that you could cover with your hand. + +Why, we were back in this world in one instant! Then we looked +the same startled thought into each other's eyes at the same +moment; more than two weeks gone, and that ship not back yet! + +In another minute I appeared in the presence of my train. They +had been steeped in troubled bodings all this time--their faces +showed it. I called an escort and we galloped five miles to a +hilltop overlooking the sea. Where was my great commerce that +so lately had made these glistening expanses populous and beautiful +with its white-winged flocks? Vanished, every one! Not a sail, +from verge to verge, not a smoke-bank--just a dead and empty +solitude, in place of all that brisk and breezy life. + +I went swiftly back, saying not a word to anybody. I told Sandy +this ghastly news. We could imagine no explanation that would +begin to explain. Had there been an invasion? an earthquake? +a pestilence? Had the nation been swept out of existence? But +guessing was profitless. I must go--at once. I borrowed the king's +navy--a "ship" no bigger than a steam launch--and was soon ready. + +The parting--ah, yes, that was hard. As I was devouring the child +with last kisses, it brisked up and jabbered out its vocabulary! +--the first time in more than two weeks, and it made fools of us +for joy. The darling mispronunciations of childhood!--dear me, +there's no music that can touch it; and how one grieves when it +wastes away and dissolves into correctness, knowing it will never +visit his bereaved ear again. Well, how good it was to be able +to carry that gracious memory away with me! + +I approached England the next morning, with the wide highway of +salt water all to myself. There were ships in the harbor, at +Dover, but they were naked as to sails, and there was no sign +of life about them. It was Sunday; yet at Canterbury the streets +were empty; strangest of all, there was not even a priest in sight, +and no stroke of a bell fell upon my ear. The mournfulness of +death was everywhere. I couldn't understand it. At last, in +the further edge of that town I saw a small funeral procession +--just a family and a few friends following a coffin--no priest; +a funeral without bell, book, or candle; there was a church there +close at hand, but they passed it by weeping, and did not enter it; +I glanced up at the belfry, and there hung the bell, shrouded in +black, and its tongue tied back. Now I knew! Now I understood +the stupendous calamity that had overtaken England. Invasion? +Invasion is a triviality to it. It was the INTERDICT! + +I asked no questions; I didn't need to ask any. The Church had +struck; the thing for me to do was to get into a disguise, and +go warily. One of my servants gave me a suit of clothes, and +when we were safe beyond the town I put them on, and from that time +I traveled alone; I could not risk the embarrassment of company. + +A miserable journey. A desolate silence everywhere. Even in +London itself. Traffic had ceased; men did not talk or laugh, or +go in groups, or even in couples; they moved aimlessly about, each +man by himself, with his head down, and woe and terror at his heart. +The Tower showed recent war-scars. Verily, much had been happening. + +Of course, I meant to take the train for Camelot. Train! Why, +the station was as vacant as a cavern. I moved on. The journey +to Camelot was a repetition of what I had already seen. The Monday +and the Tuesday differed in no way from the Sunday. I arrived +far in the night. From being the best electric-lighted town in +the kingdom and the most like a recumbent sun of anything you ever +saw, it was become simply a blot--a blot upon darkness--that is +to say, it was darker and solider than the rest of the darkness, +and so you could see it a little better; it made me feel as if +maybe it was symbolical--a sort of sign that the Church was going to +_keep_ the upper hand now, and snuff out all my beautiful civilization +just like that. I found no life stirring in the somber streets. +I groped my way with a heavy heart. The vast castle loomed black +upon the hilltop, not a spark visible about it. The drawbridge +was down, the great gate stood wide, I entered without challenge, +my own heels making the only sound I heard--and it was sepulchral +enough, in those huge vacant courts. + + + +CHAPTER XLII + +WAR! + +I found Clarence alone in his quarters, drowned in melancholy; +and in place of the electric light, he had reinstituted the ancient +rag-lamp, and sat there in a grisly twilight with all curtains +drawn tight. He sprang up and rushed for me eagerly, saying: + +"Oh, it's worth a billion milrays to look upon a live person again!" + +He knew me as easily as if I hadn't been disguised at all. Which +frightened me; one may easily believe that. + +"Quick, now, tell me the meaning of this fearful disaster," I said. +"How did it come about?" + +"Well, if there hadn't been any Queen Guenever, it wouldn't have +come so early; but it would have come, anyway. It would have +come on your own account by and by; by luck, it happened to come +on the queen's." + +"_And_ Sir Launcelot's?" + +"Just so." + +"Give me the details." + +"I reckon you will grant that during some years there has been +only one pair of eyes in these kingdoms that has not been looking +steadily askance at the queen and Sir Launcelot--" + +"Yes, King Arthur's." + +"--and only one heart that was without suspicion--" + +"Yes--the king's; a heart that isn't capable of thinking evil +of a friend." + +"Well, the king might have gone on, still happy and unsuspecting, +to the end of his days, but for one of your modern improvements +--the stock-board. When you left, three miles of the London, +Canterbury and Dover were ready for the rails, and also ready and +ripe for manipulation in the stock-market. It was wildcat, and +everybody knew it. The stock was for sale at a give-away. What +does Sir Launcelot do, but--" + +"Yes, I know; he quietly picked up nearly all of it for a song; +then he bought about twice as much more, deliverable upon call; +and he was about to call when I left." + +"Very well, he did call. The boys couldn't deliver. Oh, he had +them--and he just settled his grip and squeezed them. They were +laughing in their sleeves over their smartness in selling stock +to him at 15 and 16 and along there that wasn't worth 10. Well, +when they had laughed long enough on that side of their mouths, +they rested-up that side by shifting the laugh to the other side. +That was when they compromised with the Invincible at 283!" + +"Good land!" + +"He skinned them alive, and they deserved it--anyway, the whole +kingdom rejoiced. Well, among the flayed were Sir Agravaine and +Sir Mordred, nephews to the king. End of the first act. Act +second, scene first, an apartment in Carlisle castle, where the +court had gone for a few days' hunting. Persons present, the +whole tribe of the king's nephews. Mordred and Agravaine propose +to call the guileless Arthur's attention to Guenever and Sir +Launcelot. Sir Gawaine, Sir Gareth, and Sir Gaheris will have +nothing to do with it. A dispute ensues, with loud talk; in the +midst of it enter the king. Mordred and Agravaine spring their +devastating tale upon him. _Tableau_. A trap is laid for Launcelot, +by the king's command, and Sir Launcelot walks into it. He made +it sufficiently uncomfortable for the ambushed witnesses--to wit, +Mordred, Agravaine, and twelve knights of lesser rank, for he +killed every one of them but Mordred; but of course that couldn't +straighten matters between Launcelot and the king, and didn't." + +"Oh, dear, only one thing could result--I see that. War, and +the knights of the realm divided into a king's party and a +Sir Launcelot's party." + +"Yes--that was the way of it. The king sent the queen to the +stake, proposing to purify her with fire. Launcelot and his +knights rescued her, and in doing it slew certain good old friends +of yours and mine--in fact, some of the best we ever had; to wit, +Sir Belias le Orgulous, Sir Segwarides, Sir Griflet le Fils de Dieu, +Sir Brandiles, Sir Aglovale--" + +"Oh, you tear out my heartstrings." + +"--wait, I'm not done yet--Sir Tor, Sir Gauter, Sir Gillimer--" + +"The very best man in my subordinate nine. What a handy right-fielder +he was!" + +"--Sir Reynold's three brothers, Sir Damus, Sir Priamus, Sir Kay +the Stranger--" + +"My peerless short-stop! I've seen him catch a daisy-cutter in +his teeth. Come, I can't stand this!" + +"--Sir Driant, Sir Lambegus, Sir Herminde, Sir Pertilope, +Sir Perimones, and--whom do you think?" + +"Rush! Go on." + +"Sir Gaheris, and Sir Gareth--both!" + +"Oh, incredible! Their love for Launcelot was indestructible." + +"Well, it was an accident. They were simply onlookers; they were +unarmed, and were merely there to witness the queen's punishment. +Sir Launcelot smote down whoever came in the way of his blind fury, +and he killed these without noticing who they were. Here is an +instantaneous photograph one of our boys got of the battle; it's +for sale on every news-stand. There--the figures nearest the queen +are Sir Launcelot with his sword up, and Sir Gareth gasping his +latest breath. You can catch the agony in the queen's face through +the curling smoke. It's a rattling battle-picture." + +"Indeed, it is. We must take good care of it; its historical value +is incalculable. Go on." + +"Well, the rest of the tale is just war, pure and simple. Launcelot +retreated to his town and castle of Joyous Gard, and gathered +there a great following of knights. The king, with a great host, +went there, and there was desperate fighting during several days, +and, as a result, all the plain around was paved with corpses +and cast-iron. Then the Church patched up a peace between Arthur +and Launcelot and the queen and everybody--everybody but Sir Gawaine. +He was bitter about the slaying of his brothers, Gareth and Gaheris, +and would not be appeased. He notified Launcelot to get him +thence, and make swift preparation, and look to be soon attacked. +So Launcelot sailed to his Duchy of Guienne with his following, and +Gawaine soon followed with an army, and he beguiled Arthur to go +with him. Arthur left the kingdom in Sir Mordred's hands until +you should return--" + +"Ah--a king's customary wisdom!" + +"Yes. Sir Mordred set himself at once to work to make his kingship +permanent. He was going to marry Guenever, as a first move; but +she fled and shut herself up in the Tower of London. Mordred +attacked; the Bishop of Canterbury dropped down on him with the +Interdict. The king returned; Mordred fought him at Dover, at +Canterbury, and again at Barham Down. Then there was talk of peace +and a composition. Terms, Mordred to have Cornwall and Kent during +Arthur's life, and the whole kingdom afterward." + +"Well, upon my word! My dream of a republic to _be_ a dream, and +so remain." + +"Yes. The two armies lay near Salisbury. Gawaine--Gawaine's head +is at Dover Castle, he fell in the fight there--Gawaine appeared to +Arthur in a dream, at least his ghost did, and warned him to +refrain from conflict for a month, let the delay cost what it might. +But battle was precipitated by an accident. Arthur had given +order that if a sword was raised during the consultation over +the proposed treaty with Mordred, sound the trumpet and fall on! +for he had no confidence in Mordred. Mordred had given a similar +order to _his_ people. Well, by and by an adder bit a knight's heel; +the knight forgot all about the order, and made a slash at the +adder with his sword. Inside of half a minute those two prodigious +hosts came together with a crash! They butchered away all day. +Then the king--however, we have started something fresh since +you left--our paper has." + +"No? What is that?" + +"War correspondence!" + +"Why, that's good." + +"Yes, the paper was booming right along, for the Interdict made +no impression, got no grip, while the war lasted. I had war +correspondents with both armies. I will finish that battle by +reading you what one of the boys says: + + 'Then the king looked about him, and then was he + ware of all his host and of all his good knights + were left no more on live but two knights, that + was Sir Lucan de Butlere, and his brother Sir + Bedivere: and they were full sore wounded. Jesu + mercy, said the king, where are all my noble + knights becomen? Alas that ever I should see this + doleful day. For now, said Arthur, I am come to + mine end. But would to God that I wist where were + that traitor Sir Mordred, that hath caused all + this mischief. Then was King Arthur ware where Sir + Mordred leaned upon his sword among a great heap + of dead men. Now give me my spear, said Arthur + unto Sir Lucan, for yonder I have espied the + traitor that all this woe hath wrought. Sir, let + him be, said Sir Lucan, for he is unhappy; and if + ye pass this unhappy day, ye shall be right well + revenged upon him. Good lord, remember ye of your + night's dream, and what the spirit of Sir Gawaine + told you this night, yet God of his great goodness + hath preserved you hitherto. Therefore, for God's + sake, my lord, leave off by this. For blessed be + God ye have won the field: for here we be three + on live, and with Sir Mordred is none on live. + And if ye leave off now, this wicked day of + destiny is past. Tide me death, betide me life, + saith the king, now I see him yonder alone, he + shall never escape mine hands, for at a better + avail shall I never have him. God speed you well, + said Sir Bedivere. Then the king gat his spear + in both his hands, and ran toward Sir Mordred + crying, Traitor, now is thy death day come. And + when Sir Mordred heard Sir Arthur, he ran until + him with his sword drawn in his hand. And then + King Arthur smote Sir Mordred under the shield, + with a foin of his spear throughout the body more + than a fathom. And when Sir Mordred felt that he + had his death's wound, he thrust himself, with + the might that he had, up to the butt of King + Arthur's spear. And right so he smote his father + Arthur with his sword holden in both his hands, + on the side of the head, that the sword pierced + the helmet and the brain-pan, and therewithal + Sir Mordred fell stark dead to the earth. And + the noble Arthur fell in a swoon to the earth, + and there he swooned oft-times--'" + +"That is a good piece of war correspondence, Clarence; you are +a first-rate newspaper man. Well--is the king all right? Did +he get well?" + +"Poor soul, no. He is dead." + +I was utterly stunned; it had not seemed to me that any wound +could be mortal to him. + +"And the queen, Clarence?" + +"She is a nun, in Almesbury." + +"What changes! and in such a short while. It is inconceivable. +What next, I wonder?" + +"I can tell you what next." + +"Well?" + +"Stake our lives and stand by them!" + +"What do you mean by that?" + +"The Church is master now. The Interdict included you with Mordred; +it is not to be removed while you remain alive. The clans are +gathering. The Church has gathered all the knights that are left +alive, and as soon as you are discovered we shall have business +on our hands." + +"Stuff! With our deadly scientific war-material; with our hosts +of trained--" + +"Save your breath--we haven't sixty faithful left!" + +"What are you saying? Our schools, our colleges, our vast +workshops, our--" + +"When those knights come, those establishments will empty themselves +and go over to the enemy. Did you think you had educated the +superstition out of those people?" + +"I certainly did think it." + +"Well, then, you may unthink it. They stood every strain easily +--until the Interdict. Since then, they merely put on a bold +outside--at heart they are quaking. Make up your mind to it +--when the armies come, the mask will fall." + +"It's hard news. We are lost. They will turn our own science +against us." + +"No they won't." + +"Why?" + +"Because I and a handful of the faithful have blocked that game. +I'll tell you what I've done, and what moved me to it. Smart as +you are, the Church was smarter. It was the Church that sent +you cruising--through her servants, the doctors." + +"Clarence!" + +"It is the truth. I know it. Every officer of your ship was +the Church's picked servant, and so was every man of the crew." + +"Oh, come!" + +"It is just as I tell you. I did not find out these things at once, +but I found them out finally. Did you send me verbal information, +by the commander of the ship, to the effect that upon his return +to you, with supplies, you were going to leave Cadiz--" + +"Cadiz! I haven't been at Cadiz at all!" + +"--going to leave Cadiz and cruise in distant seas indefinitely, +for the health of your family? Did you send me that word?" + +"Of course not. I would have written, wouldn't I?" + +"Naturally. I was troubled and suspicious. When the commander +sailed again I managed to ship a spy with him. I have never +heard of vessel or spy since. I gave myself two weeks to hear +from you in. Then I resolved to send a ship to Cadiz. There was +a reason why I didn't." + +"What was that?" + +"Our navy had suddenly and mysteriously disappeared! Also, as +suddenly and as mysteriously, the railway and telegraph and +telephone service ceased, the men all deserted, poles were cut +down, the Church laid a ban upon the electric light! I had to be +up and doing--and straight off. Your life was safe--nobody in +these kingdoms but Merlin would venture to touch such a magician +as you without ten thousand men at his back--I had nothing to +think of but how to put preparations in the best trim against your +coming. I felt safe myself--nobody would be anxious to touch +a pet of yours. So this is what I did. From our various works +I selected all the men--boys I mean--whose faithfulness under +whatsoever pressure I could swear to, and I called them together +secretly and gave them their instructions. There are fifty-two of +them; none younger than fourteen, and none above seventeen years old." + +"Why did you select boys?" + +"Because all the others were born in an atmosphere of superstition +and reared in it. It is in their blood and bones. We imagined +we had educated it out of them; they thought so, too; the Interdict +woke them up like a thunderclap! It revealed them to themselves, +and it revealed them to me, too. With boys it was different. Such +as have been under our training from seven to ten years have had +no acquaintance with the Church's terrors, and it was among these +that I found my fifty-two. As a next move, I paid a private visit +to that old cave of Merlin's--not the small one--the big one--" + +"Yes, the one where we secretly established our first great electric +plant when I was projecting a miracle." + +"Just so. And as that miracle hadn't become necessary then, +I thought it might be a good idea to utilize the plant now. I've +provisioned the cave for a siege--" + +"A good idea, a first-rate idea." + +"I think so. I placed four of my boys there as a guard--inside, +and out of sight. Nobody was to be hurt--while outside; but any +attempt to enter--well, we said just let anybody try it! Then +I went out into the hills and uncovered and cut the secret wires +which connected your bedroom with the wires that go to the dynamite +deposits under all our vast factories, mills, workshops, magazines, +etc., and about midnight I and my boys turned out and connected +that wire with the cave, and nobody but you and I suspects where +the other end of it goes to. We laid it under ground, of course, and +it was all finished in a couple of hours or so. We sha'n't have +to leave our fortress now when we want to blow up our civilization." + +"It was the right move--and the natural one; military necessity, +in the changed condition of things. Well, what changes _have_ come! +We expected to be besieged in the palace some time or other, but +--however, go on." + +"Next, we built a wire fence." + +"Wire fence?" + +"Yes. You dropped the hint of it yourself, two or three years ago." + +"Oh, I remember--the time the Church tried her strength against +us the first time, and presently thought it wise to wait for a +hopefuler season. Well, how have you arranged the fence?" + +"I start twelve immensely strong wires--naked, not insulated +--from a big dynamo in the cave--dynamo with no brushes except +a positive and a negative one--" + +"Yes, that's right." + +"The wires go out from the cave and fence in a circle of level +ground a hundred yards in diameter; they make twelve independent +fences, ten feet apart--that is to say, twelve circles within +circles--and their ends come into the cave again." + +"Right; go on." + +"The fences are fastened to heavy oaken posts only three feet apart, +and these posts are sunk five feet in the ground." + +"That is good and strong." + +"Yes. The wires have no ground-connection outside of the cave. +They go out from the positive brush of the dynamo; there is a +ground-connection through the negative brush; the other ends of +the wire return to the cave, and each is grounded independently." + +"No, no, that won't do!" + +"Why?" + +"It's too expensive--uses up force for nothing. You don't want +any ground-connection except the one through the negative brush. +The other end of every wire must be brought back into the cave +and fastened independently, and _without_ any ground-connection. +Now, then, observe the economy of it. A cavalry charge hurls +itself against the fence; you are using no power, you are spending +no money, for there is only one ground-connection till those horses +come against the wire; the moment they touch it they form a +connection with the negative brush _through the ground_, and drop +dead. Don't you see?--you are using no energy until it is needed; +your lightning is there, and ready, like the load in a gun; but +it isn't costing you a cent till you touch it off. Oh, yes, the +single ground-connection--" + +"Of course! I don't know how I overlooked that. It's not only +cheaper, but it's more effectual than the other way, for if wires +break or get tangled, no harm is done." + +"No, especially if we have a tell-tale in the cave and disconnect +the broken wire. Well, go on. The gatlings?" + +"Yes--that's arranged. In the center of the inner circle, on a +spacious platform six feet high, I've grouped a battery of thirteen +gatling guns, and provided plenty of ammunition." + +"That's it. They command every approach, and when the Church's +knights arrive, there's going to be music. The brow of the +precipice over the cave--" + +"I've got a wire fence there, and a gatling. They won't drop any +rocks down on us." + +"Well, and the glass-cylinder dynamite torpedoes?" + +"That's attended to. It's the prettiest garden that was ever +planted. It's a belt forty feet wide, and goes around the outer +fence--distance between it and the fence one hundred yards--kind of +neutral ground that space is. There isn't a single square yard +of that whole belt but is equipped with a torpedo. We laid them +on the surface of the ground, and sprinkled a layer of sand over +them. It's an innocent looking garden, but you let a man start +in to hoe it once, and you'll see." + +"You tested the torpedoes?" + +"Well, I was going to, but--" + +"But what? Why, it's an immense oversight not to apply a--" + +"Test? Yes, I know; but they're all right; I laid a few in the +public road beyond our lines and they've been tested." + +"Oh, that alters the case. Who did it?" + +"A Church committee." + +"How kind!" + +"Yes. They came to command us to make submission. You see they +didn't really come to test the torpedoes; that was merely an incident." + +"Did the committee make a report?" + +"Yes, they made one. You could have heard it a mile." + +"Unanimous?" + +"That was the nature of it. After that I put up some signs, for the +protection of future committees, and we have had no intruders since." + +"Clarence, you've done a world of work, and done it perfectly." + +"We had plenty of time for it; there wasn't any occasion for hurry." + +We sat silent awhile, thinking. Then my mind was made up, and +I said: + +"Yes, everything is ready; everything is shipshape, no detail is +wanting. I know what to do now." + +"So do I; sit down and wait." + +"No, _sir_! rise up and _strike_!" + +"Do you mean it?" + +"Yes, indeed! The _de_fensive isn't in my line, and the _of_fensive +is. That is, when I hold a fair hand--two-thirds as good a hand +as the enemy. Oh, yes, we'll rise up and strike; that's our game." + +"A hundred to one you are right. When does the performance begin?" + +"_Now!_ We'll proclaim the Republic." + +"Well, that _will_ precipitate things, sure enough!" + +"It will make them buzz, I tell you! England will be a hornets' +nest before noon to-morrow, if the Church's hand hasn't lost its +cunning--and we know it hasn't. Now you write and I'll dictate thus: + + "PROCLAMATION + + --- + + "BE IT KNOWN UNTO ALL. Whereas the king having died + and left no heir, it becomes my duty to continue the + executive authority vested in me, until a government + shall have been created and set in motion. The + monarchy has lapsed, it no longer exists. By + consequence, all political power has reverted to its + original source, the people of the nation. With the + monarchy, its several adjuncts died also; wherefore + there is no longer a nobility, no longer a privileged + class, no longer an Established Church; all men are + become exactly equal; they are upon one common + level, and religion is free. _A Republic is hereby + proclaimed_, as being the natural estate of a nation + when other authority has ceased. It is the duty of + the British people to meet together immediately, + and by their votes elect representatives and deliver + into their hands the government." + +I signed it "The Boss," and dated it from Merlin's Cave. +Clarence said-- + +"Why, that tells where we are, and invites them to call right away." + +"That is the idea. We _strike_--by the Proclamation--then it's +their innings. Now have the thing set up and printed and posted, +right off; that is, give the order; then, if you've got a couple +of bicycles handy at the foot of the hill, ho for Merlin's Cave!" + +"I shall be ready in ten minutes. What a cyclone there is going +to be to-morrow when this piece of paper gets to work!... It's a +pleasant old palace, this is; I wonder if we shall ever again +--but never mind about that." + + + +CHAPTER XLIII + +THE BATTLE OF THE SAND BELT + +In Merlin's Cave--Clarence and I and fifty-two fresh, bright, +well-educated, clean-minded young British boys. At dawn I sent +an order to the factories and to all our great works to stop +operations and remove all life to a safe distance, as everything +was going to be blown up by secret mines, "_and no telling at what +moment--therefore, vacate at once_." These people knew me, and +had confidence in my word. They would clear out without waiting +to part their hair, and I could take my own time about dating the +explosion. You couldn't hire one of them to go back during the +century, if the explosion was still impending. + +We had a week of waiting. It was not dull for me, because I was +writing all the time. During the first three days, I finished +turning my old diary into this narrative form; it only required +a chapter or so to bring it down to date. The rest of the week +I took up in writing letters to my wife. It was always my habit +to write to Sandy every day, whenever we were separate, and now +I kept up the habit for love of it, and of her, though I couldn't +do anything with the letters, of course, after I had written them. +But it put in the time, you see, and was almost like talking; +it was almost as if I was saying, "Sandy, if you and Hello-Central +were here in the cave, instead of only your photographs, what +good times we could have!" And then, you know, I could imagine +the baby goo-gooing something out in reply, with its fists in its +mouth and itself stretched across its mother's lap on its back, +and she a-laughing and admiring and worshipping, and now and then +tickling under the baby's chin to set it cackling, and then maybe +throwing in a word of answer to me herself--and so on and so on +--well, don't you know, I could sit there in the cave with my pen, +and keep it up, that way, by the hour with them. Why, it was +almost like having us all together again. + +I had spies out every night, of course, to get news. Every report +made things look more and more impressive. The hosts were gathering, +gathering; down all the roads and paths of England the knights were +riding, and priests rode with them, to hearten these original +Crusaders, this being the Church's war. All the nobilities, big +and little, were on their way, and all the gentry. This was all +as was expected. We should thin out this sort of folk to such +a degree that the people would have nothing to do but just step +to the front with their republic and-- + +Ah, what a donkey I was! Toward the end of the week I began to get +this large and disenchanting fact through my head: that the mass +of the nation had swung their caps and shouted for the republic for +about one day, and there an end! The Church, the nobles, and +the gentry then turned one grand, all-disapproving frown upon them +and shriveled them into sheep! From that moment the sheep had +begun to gather to the fold--that is to say, the camps--and offer +their valueless lives and their valuable wool to the "righteous +cause." Why, even the very men who had lately been slaves were +in the "righteous cause," and glorifying it, praying for it, +sentimentally slabbering over it, just like all the other commoners. +Imagine such human muck as this; conceive of this folly! + +Yes, it was now "Death to the Republic!" everywhere--not a dissenting +voice. All England was marching against us! Truly, this was more +than I had bargained for. + +I watched my fifty-two boys narrowly; watched their faces, their +walk, their unconscious attitudes: for all these are a language +--a language given us purposely that it may betray us in times of +emergency, when we have secrets which we want to keep. I knew +that that thought would keep saying itself over and over again +in their minds and hearts, _All England is marching against us!_ +and ever more strenuously imploring attention with each repetition, +ever more sharply realizing itself to their imaginations, until +even in their sleep they would find no rest from it, but hear +the vague and flitting creatures of the dreams say, _All England_ +--ALL ENGLAND!--_is marching against you_! I knew all this would +happen; I knew that ultimately the pressure would become so great +that it would compel utterance; therefore, I must be ready with an +answer at that time--an answer well chosen and tranquilizing. + +I was right. The time came. They HAD to speak. Poor lads, it +was pitiful to see, they were so pale, so worn, so troubled. At +first their spokesman could hardly find voice or words; but he +presently got both. This is what he said--and he put it in the +neat modern English taught him in my schools: + +"We have tried to forget what we are--English boys! We have tried +to put reason before sentiment, duty before love; our minds +approve, but our hearts reproach us. While apparently it was +only the nobility, only the gentry, only the twenty-five or thirty +thousand knights left alive out of the late wars, we were of one +mind, and undisturbed by any troubling doubt; each and every one +of these fifty-two lads who stand here before you, said, 'They +have chosen--it is their affair.' But think!--the matter is +altered--_All England is marching against us_! Oh, sir, consider! +--reflect!--these people are our people, they are bone of our bone, +flesh of our flesh, we love them--do not ask us to destroy our nation!" + +Well, it shows the value of looking ahead, and being ready for +a thing when it happens. If I hadn't foreseen this thing and been +fixed, that boy would have had me!--I couldn't have said a word. +But I was fixed. I said: + +"My boys, your hearts are in the right place, you have thought the +worthy thought, you have done the worthy thing. You are English +boys, you will remain English boys, and you will keep that name +unsmirched. Give yourselves no further concern, let your minds be +at peace. Consider this: while all England is marching against +us, who is in the van? Who, by the commonest rules of war, will +march in the front? Answer me." + +"The mounted host of mailed knights." + +"True. They are thirty thousand strong. Acres deep they will march. +Now, observe: none but _they_ will ever strike the sand-belt! Then +there will be an episode! Immediately after, the civilian multitude +in the rear will retire, to meet business engagements elsewhere. +None but nobles and gentry are knights, and _none but these_ will +remain to dance to our music after that episode. It is absolutely +true that we shall have to fight nobody but these thirty thousand +knights. Now speak, and it shall be as you decide. Shall we +avoid the battle, retire from the field?" + +"NO!!!" + +The shout was unanimous and hearty. + +"Are you--are you--well, afraid of these thirty thousand knights?" + +That joke brought out a good laugh, the boys' troubles vanished +away, and they went gaily to their posts. Ah, they were a darling +fifty-two! As pretty as girls, too. + +I was ready for the enemy now. Let the approaching big day come +along--it would find us on deck. + +The big day arrived on time. At dawn the sentry on watch in the +corral came into the cave and reported a moving black mass under +the horizon, and a faint sound which he thought to be military +music. Breakfast was just ready; we sat down and ate it. + +This over, I made the boys a little speech, and then sent out +a detail to man the battery, with Clarence in command of it. + +The sun rose presently and sent its unobstructed splendors over +the land, and we saw a prodigious host moving slowly toward us, +with the steady drift and aligned front of a wave of the sea. +Nearer and nearer it came, and more and more sublimely imposing +became its aspect; yes, all England was there, apparently. Soon +we could see the innumerable banners fluttering, and then the sun +struck the sea of armor and set it all aflash. Yes, it was a fine +sight; I hadn't ever seen anything to beat it. + +At last we could make out details. All the front ranks, no telling +how many acres deep, were horsemen--plumed knights in armor. +Suddenly we heard the blare of trumpets; the slow walk burst into +a gallop, and then--well, it was wonderful to see! Down swept +that vast horse-shoe wave--it approached the sand-belt--my breath +stood still; nearer, nearer--the strip of green turf beyond the +yellow belt grew narrow--narrower still--became a mere ribbon in +front of the horses--then disappeared under their hoofs. Great +Scott! Why, the whole front of that host shot into the sky with +a thunder-crash, and became a whirling tempest of rags and fragments; +and along the ground lay a thick wall of smoke that hid what was +left of the multitude from our sight. + +Time for the second step in the plan of campaign! I touched +a button, and shook the bones of England loose from her spine! + +In that explosion all our noble civilization-factories went up in +the air and disappeared from the earth. It was a pity, but it +was necessary. We could not afford to let the enemy turn our own +weapons against us. + +Now ensued one of the dullest quarter-hours I had ever endured. +We waited in a silent solitude enclosed by our circles of wire, +and by a circle of heavy smoke outside of these. We couldn't +see over the wall of smoke, and we couldn't see through it. But +at last it began to shred away lazily, and by the end of another +quarter-hour the land was clear and our curiosity was enabled +to satisfy itself. No living creature was in sight! We now +perceived that additions had been made to our defenses. The +dynamite had dug a ditch more than a hundred feet wide, all around +us, and cast up an embankment some twenty-five feet high on both +borders of it. As to destruction of life, it was amazing. Moreover, +it was beyond estimate. Of course, we could not _count_ the dead, +because they did not exist as individuals, but merely as homogeneous +protoplasm, with alloys of iron and buttons. + +No life was in sight, but necessarily there must have been some +wounded in the rear ranks, who were carried off the field under +cover of the wall of smoke; there would be sickness among the +others--there always is, after an episode like that. But there +would be no reinforcements; this was the last stand of the chivalry +of England; it was all that was left of the order, after the recent +annihilating wars. So I felt quite safe in believing that the +utmost force that could for the future be brought against us +would be but small; that is, of knights. I therefore issued a +congratulatory proclamation to my army in these words: + + SOLDIERS, CHAMPIONS OF HUMAN LIBERTY AND EQUALITY: + Your General congratulates you! In the pride of his + strength and the vanity of his renown, an arrogant + enemy came against you. You were ready. The conflict + was brief; on your side, glorious. This mighty + victory, having been achieved utterly without loss, + stands without example in history. So long as the + planets shall continue to move in their orbits, the + BATTLE OF THE SAND-BELT will not perish out of the + memories of men. + + THE BOSS. + +I read it well, and the applause I got was very gratifying to me. +I then wound up with these remarks: + +"The war with the English nation, as a nation, is at an end. +The nation has retired from the field and the war. Before it can +be persuaded to return, war will have ceased. This campaign is +the only one that is going to be fought. It will be brief +--the briefest in history. Also the most destructive to life, +considered from the standpoint of proportion of casualties to +numbers engaged. We are done with the nation; henceforth we deal +only with the knights. English knights can be killed, but they +cannot be conquered. We know what is before us. While one of +these men remains alive, our task is not finished, the war is not +ended. We will kill them all." [Loud and long continued applause.] + +I picketed the great embankments thrown up around our lines by +the dynamite explosion--merely a lookout of a couple of boys +to announce the enemy when he should appear again. + +Next, I sent an engineer and forty men to a point just beyond +our lines on the south, to turn a mountain brook that was there, +and bring it within our lines and under our command, arranging +it in such a way that I could make instant use of it in an emergency. +The forty men were divided into two shifts of twenty each, and +were to relieve each other every two hours. In ten hours the +work was accomplished. + +It was nightfall now, and I withdrew my pickets. The one who +had had the northern outlook reported a camp in sight, but visible +with the glass only. He also reported that a few knights had been +feeling their way toward us, and had driven some cattle across our +lines, but that the knights themselves had not come very near. +That was what I had been expecting. They were feeling us, you +see; they wanted to know if we were going to play that red terror +on them again. They would grow bolder in the night, perhaps. +I believed I knew what project they would attempt, because it was +plainly the thing I would attempt myself if I were in their places +and as ignorant as they were. I mentioned it to Clarence. + +"I think you are right," said he; "it is the obvious thing for +them to try." + +"Well, then," I said, "if they do it they are doomed." + +"Certainly." + +"They won't have the slightest show in the world." + +"Of course they won't." + +"It's dreadful, Clarence. It seems an awful pity." + +The thing disturbed me so that I couldn't get any peace of mind +for thinking of it and worrying over it. So, at last, to quiet +my conscience, I framed this message to the knights: + + TO THE HONORABLE THE COMMANDER OF THE INSURGENT + CHIVALRY OF ENGLAND: YOU fight in vain. We know + your strength--if one may call it by that name. + We know that at the utmost you cannot bring + against us above five and twenty thousand knights. + Therefore, you have no chance--none whatever. + Reflect: we are well equipped, well fortified, we + number 54. Fifty-four what? Men? No, MINDS--the + capablest in the world; a force against which + mere animal might may no more hope to prevail than + may the idle waves of the sea hope to prevail + against the granite barriers of England. Be advised. + We offer you your lives; for the sake of your + families, do not reject the gift. We offer you + this chance, and it is the last: throw down your + arms; surrender unconditionally to the Republic, + and all will be forgiven. + + (Signed) THE BOSS. + +I read it to Clarence, and said I proposed to send it by a flag +of truce. He laughed the sarcastic laugh he was born with, and said: + +"Somehow it seems impossible for you to ever fully realize what +these nobilities are. Now let us save a little time and trouble. +Consider me the commander of the knights yonder. Now, then, +you are the flag of truce; approach and deliver me your message, +and I will give you your answer." + +I humored the idea. I came forward under an imaginary guard of +the enemy's soldiers, produced my paper, and read it through. +For answer, Clarence struck the paper out of my hand, pursed up +a scornful lip and said with lofty disdain: + +"Dismember me this animal, and return him in a basket to the +base-born knave who sent him; other answer have I none!" + +How empty is theory in presence of fact! And this was just fact, +and nothing else. It was the thing that would have happened, +there was no getting around that. I tore up the paper and granted +my mistimed sentimentalities a permanent rest. + +Then, to business. I tested the electric signals from the gatling +platform to the cave, and made sure that they were all right; +I tested and retested those which commanded the fences--these +were signals whereby I could break and renew the electric current +in each fence independently of the others at will. I placed the +brook-connection under the guard and authority of three of my +best boys, who would alternate in two-hour watches all night and +promptly obey my signal, if I should have occasion to give it +--three revolver-shots in quick succession. Sentry-duty was discarded +for the night, and the corral left empty of life; I ordered that +quiet be maintained in the cave, and the electric lights turned +down to a glimmer. + +As soon as it was good and dark, I shut off the current from all +the fences, and then groped my way out to the embankment bordering +our side of the great dynamite ditch. I crept to the top of it +and lay there on the slant of the muck to watch. But it was +too dark to see anything. As for sounds, there were none. The +stillness was deathlike. True, there were the usual night-sounds +of the country--the whir of night-birds, the buzzing of insects, +the barking of distant dogs, the mellow lowing of far-off kine +--but these didn't seem to break the stillness, they only intensified +it, and added a grewsome melancholy to it into the bargain. + +I presently gave up looking, the night shut down so black, but +I kept my ears strained to catch the least suspicious sound, for +I judged I had only to wait, and I shouldn't be disappointed. +However, I had to wait a long time. At last I caught what you +may call in distinct glimpses of sound dulled metallic sound. +I pricked up my ears, then, and held my breath, for this was the +sort of thing I had been waiting for. This sound thickened, and +approached--from toward the north. Presently, I heard it at my +own level--the ridge-top of the opposite embankment, a hundred +feet or more away. Then I seemed to see a row of black dots appear +along that ridge--human heads? I couldn't tell; it mightn't be +anything at all; you can't depend on your eyes when your imagination +is out of focus. However, the question was soon settled. I heard +that metallic noise descending into the great ditch. It augmented +fast, it spread all along, and it unmistakably furnished me this +fact: an armed host was taking up its quarters in the ditch. Yes, +these people were arranging a little surprise party for us. We +could expect entertainment about dawn, possibly earlier. + +I groped my way back to the corral now; I had seen enough. I went +to the platform and signaled to turn the current on to the two +inner fences. Then I went into the cave, and found everything +satisfactory there--nobody awake but the working-watch. I woke +Clarence and told him the great ditch was filling up with men, +and that I believed all the knights were coming for us in a body. +It was my notion that as soon as dawn approached we could expect +the ditch's ambuscaded thousands to swarm up over the embankment +and make an assault, and be followed immediately by the rest +of their army. + +Clarence said: + +"They will be wanting to send a scout or two in the dark to make +preliminary observations. Why not take the lightning off the +outer fences, and give them a chance?" + +"I've already done it, Clarence. Did you ever know me to be +inhospitable?" + +"No, you are a good heart. I want to go and--" + +"Be a reception committee? I will go, too." + +We crossed the corral and lay down together between the two inside +fences. Even the dim light of the cave had disordered our eyesight +somewhat, but the focus straightway began to regulate itself and +soon it was adjusted for present circumstances. We had had to feel +our way before, but we could make out to see the fence posts now. +We started a whispered conversation, but suddenly Clarence broke +off and said: + +"What is that?" + +"What is what?" + +"That thing yonder." + +"What thing--where?" + +"There beyond you a little piece--dark something--a dull shape +of some kind--against the second fence." + +I gazed and he gazed. I said: + +"Could it be a man, Clarence?" + +"No, I think not. If you notice, it looks a lit--why, it _is_ +a man!--leaning on the fence." + +"I certainly believe it is; let us go and see." + +We crept along on our hands and knees until we were pretty close, +and then looked up. Yes, it was a man--a dim great figure in armor, +standing erect, with both hands on the upper wire--and, of course, +there was a smell of burning flesh. Poor fellow, dead as a +door-nail, and never knew what hurt him. He stood there like a +statue--no motion about him, except that his plumes swished about +a little in the night wind. We rose up and looked in through +the bars of his visor, but couldn't make out whether we knew him +or not--features too dim and shadowed. + +We heard muffled sounds approaching, and we sank down to the ground +where we were. We made out another knight vaguely; he was coming +very stealthily, and feeling his way. He was near enough now for +us to see him put out a hand, find an upper wire, then bend and +step under it and over the lower one. Now he arrived at the +first knight--and started slightly when he discovered him. He +stood a moment--no doubt wondering why the other one didn't move +on; then he said, in a low voice, "Why dreamest thou here, good +Sir Mar--" then he laid his hand on the corpse's shoulder--and just +uttered a little soft moan and sunk down dead. Killed by a dead +man, you see--killed by a dead friend, in fact. There was something +awful about it. + +These early birds came scattering along after each other, about +one every five minutes in our vicinity, during half an hour. +They brought no armor of offense but their swords; as a rule, +they carried the sword ready in the hand, and put it forward and +found the wires with it. We would now and then see a blue spark +when the knight that caused it was so far away as to be invisible +to us; but we knew what had happened, all the same; poor fellow, +he had touched a charged wire with his sword and been electrocuted. +We had brief intervals of grim stillness, interrupted with piteous +regularity by the clash made by the falling of an iron-clad; and +this sort of thing was going on, right along, and was very creepy +there in the dark and lonesomeness. + +We concluded to make a tour between the inner fences. We elected +to walk upright, for convenience's sake; we argued that if discerned, +we should be taken for friends rather than enemies, and in any case +we should be out of reach of swords, and these gentry did not seem +to have any spears along. Well, it was a curious trip. Everywhere +dead men were lying outside the second fence--not plainly visible, +but still visible; and we counted fifteen of those pathetic +statues--dead knights standing with their hands on the upper wire. + +One thing seemed to be sufficiently demonstrated: our current +was so tremendous that it killed before the victim could cry out. +Pretty soon we detected a muffled and heavy sound, and next moment +we guessed what it was. It was a surprise in force coming! I whispered +Clarence to go and wake the army, and notify it to wait in silence +in the cave for further orders. He was soon back, and we stood +by the inner fence and watched the silent lightning do its awful +work upon that swarming host. One could make out but little of +detail; but he could note that a black mass was piling itself up +beyond the second fence. That swelling bulk was dead men! Our +camp was enclosed with a solid wall of the dead--a bulwark, +a breastwork, of corpses, you may say. One terrible thing about +this thing was the absence of human voices; there were no cheers, +no war cries; being intent upon a surprise, these men moved as +noiselessly as they could; and always when the front rank was near +enough to their goal to make it proper for them to begin to get +a shout ready, of course they struck the fatal line and went down +without testifying. + +I sent a current through the third fence now; and almost immediately +through the fourth and fifth, so quickly were the gaps filled up. +I believed the time was come now for my climax; I believed that +that whole army was in our trap. Anyway, it was high time to find +out. So I touched a button and set fifty electric suns aflame +on the top of our precipice. + +Land, what a sight! We were enclosed in three walls of dead men! +All the other fences were pretty nearly filled with the living, +who were stealthily working their way forward through the wires. +The sudden glare paralyzed this host, petrified them, you may say, +with astonishment; there was just one instant for me to utilize +their immobility in, and I didn't lose the chance. You see, in +another instant they would have recovered their faculties, then +they'd have burst into a cheer and made a rush, and my wires +would have gone down before it; but that lost instant lost them +their opportunity forever; while even that slight fragment of time +was still unspent, I shot the current through all the fences and +struck the whole host dead in their tracks! _There_ was a groan +you could _hear_! It voiced the death-pang of eleven thousand men. +It swelled out on the night with awful pathos. + +A glance showed that the rest of the enemy--perhaps ten thousand +strong--were between us and the encircling ditch, and pressing +forward to the assault. Consequently we had them _all!_ and had +them past help. Time for the last act of the tragedy. I fired +the three appointed revolver shots--which meant: + +"Turn on the water!" + +There was a sudden rush and roar, and in a minute the mountain +brook was raging through the big ditch and creating a river a +hundred feet wide and twenty-five deep. + +"Stand to your guns, men! Open fire!" + +The thirteen gatlings began to vomit death into the fated ten +thousand. They halted, they stood their ground a moment against +that withering deluge of fire, then they broke, faced about and +swept toward the ditch like chaff before a gale. A full fourth +part of their force never reached the top of the lofty embankment; +the three-fourths reached it and plunged over--to death by drowning. + +Within ten short minutes after we had opened fire, armed resistance +was totally annihilated, the campaign was ended, we fifty-four were +masters of England. Twenty-five thousand men lay dead around us. + +But how treacherous is fortune! In a little while--say an hour +--happened a thing, by my own fault, which--but I have no heart +to write that. Let the record end here. + + + +CHAPTER XLIV + +A POSTSCRIPT BY CLARENCE + +I, Clarence, must write it for him. He proposed that we two +go out and see if any help could be accorded the wounded. I was +strenuous against the project. I said that if there were many, +we could do but little for them; and it would not be wise for us to +trust ourselves among them, anyway. But he could seldom be turned +from a purpose once formed; so we shut off the electric current +from the fences, took an escort along, climbed over the enclosing +ramparts of dead knights, and moved out upon the field. The first +wounded mall who appealed for help was sitting with his back +against a dead comrade. When The Boss bent over him and spoke +to him, the man recognized him and stabbed him. That knight was +Sir Meliagraunce, as I found out by tearing off his helmet. He +will not ask for help any more. + +We carried The Boss to the cave and gave his wound, which was +not very serious, the best care we could. In this service we had +the help of Merlin, though we did not know it. He was disguised +as a woman, and appeared to be a simple old peasant goodwife. +In this disguise, with brown-stained face and smooth shaven, he +had appeared a few days after The Boss was hurt and offered to cook +for us, saying her people had gone off to join certain new camps +which the enemy were forming, and that she was starving. The Boss +had been getting along very well, and had amused himself with +finishing up his record. + +We were glad to have this woman, for we were short handed. We +were in a trap, you see--a trap of our own making. If we stayed +where we were, our dead would kill us; if we moved out of our +defenses, we should no longer be invincible. We had conquered; +in turn we were conquered. The Boss recognized this; we all +recognized it. If we could go to one of those new camps and +patch up some kind of terms with the enemy--yes, but The Boss +could not go, and neither could I, for I was among the first that +were made sick by the poisonous air bred by those dead thousands. +Others were taken down, and still others. To-morrow-- + +_To-morrow._ It is here. And with it the end. About midnight +I awoke, and saw that hag making curious passes in the air about +The Boss's head and face, and wondered what it meant. Everybody +but the dynamo-watch lay steeped in sleep; there was no sound. +The woman ceased from her mysterious foolery, and started tip-toeing +toward the door. I called out: + +"Stop! What have you been doing?" + +She halted, and said with an accent of malicious satisfaction: + +"Ye were conquerors; ye are conquered! These others are perishing +--you also. Ye shall all die in this place--every one--except _him_. +He sleepeth now--and shall sleep thirteen centuries. I am Merlin!" + +Then such a delirium of silly laughter overtook him that he reeled +about like a drunken man, and presently fetched up against one +of our wires. His mouth is spread open yet; apparently he is still +laughing. I suppose the face will retain that petrified laugh until +the corpse turns to dust. + +The Boss has never stirred--sleeps like a stone. If he does not +wake to-day we shall understand what kind of a sleep it is, and +his body will then be borne to a place in one of the remote recesses +of the cave where none will ever find it to desecrate it. As for +the rest of us--well, it is agreed that if any one of us ever +escapes alive from this place, he will write the fact here, and +loyally hide this Manuscript with The Boss, our dear good chief, +whose property it is, be he alive or dead. + + + +THE END OF THE MANUSCRIPT + + + + + +FINAL P.S. BY M.T. + +The dawn was come when I laid the Manuscript aside. The rain +had almost ceased, the world was gray and sad, the exhausted storm +was sighing and sobbing itself to rest. I went to the stranger's +room, and listened at his door, which was slightly ajar. I could +hear his voice, and so I knocked. There was no answer, but I still +heard the voice. I peeped in. The man lay on his back in bed, +talking brokenly but with spirit, and punctuating with his arms, +which he thrashed about, restlessly, as sick people do in delirium. +I slipped in softly and bent over him. His mutterings and +ejaculations went on. I spoke--merely a word, to call his attention. +His glassy eyes and his ashy face were alight in an instant with +pleasure, gratitude, gladness, welcome: + +"Oh, Sandy, you are come at last--how I have longed for you! Sit +by me--do not leave me--never leave me again, Sandy, never again. +Where is your hand?--give it me, dear, let me hold it--there +--now all is well, all is peace, and I am happy again--_we_ are happy +again, isn't it so, Sandy? You are so dim, so vague, you are but +a mist, a cloud, but you are _here_, and that is blessedness sufficient; +and I have your hand; don't take it away--it is for only a little +while, I shall not require it long.... Was that the child?... +Hello-Central!... she doesn't answer. Asleep, perhaps? Bring her +when she wakes, and let me touch her hands, her face, her hair, +and tell her good-bye.... Sandy! Yes, you are there. I lost +myself a moment, and I thought you were gone.... Have I been +sick long? It must be so; it seems months to me. And such dreams! +such strange and awful dreams, Sandy! Dreams that were as real +as reality--delirium, of course, but _so_ real! Why, I thought +the king was dead, I thought you were in Gaul and couldn't get +home, I thought there was a revolution; in the fantastic frenzy +of these dreams, I thought that Clarence and I and a handful of +my cadets fought and exterminated the whole chivalry of England! +But even that was not the strangest. I seemed to be a creature +out of a remote unborn age, centuries hence, and even _that_ was +as real as the rest! Yes, I seemed to have flown back out of that +age into this of ours, and then forward to it again, and was set +down, a stranger and forlorn in that strange England, with an +abyss of thirteen centuries yawning between me and you! between +me and my home and my friends! between me and all that is dear +to me, all that could make life worth the living! It was awful +--awfuler than you can ever imagine, Sandy. Ah, watch by me, Sandy +--stay by me every moment--_don't_ let me go out of my mind again; +death is nothing, let it come, but not with those dreams, not with +the torture of those hideous dreams--I cannot endure _that_ again.... +Sandy?..." + +He lay muttering incoherently some little time; then for a time he +lay silent, and apparently sinking away toward death. Presently +his fingers began to pick busily at the coverlet, and by that sign +I knew that his end was at hand with the first suggestion of the +death-rattle in his throat he started up slightly, and seemed +to listen: then he said: + +"A bugle?... It is the king! The drawbridge, there! Man the +battlements!--turn out the--" + +He was getting up his last "effect"; but he never finished it. + + + + + +End of the Project Gutenberg EBook of A Connecticut Yankee in King Arthur's +Court, Complete, by Mark Twain (Samuel Clemens) + +*** END OF THIS PROJECT GUTENBERG EBOOK CONNECTICUT YANKEE *** + +***** This file should be named 86.txt or 86.zip ***** +This and all associated files of various formats will be found in: + http://www.gutenberg.net/8/86/ + +Produced by David Widger and Janet Blenkinship + + +Updated editions will replace the previous one--the old editions +will be renamed. + +Creating the works from public domain print editions means that no +one owns a United States copyright in these works, so the Foundation +(and you!) can copy and distribute it in the United States without +permission and without paying copyright royalties. Special rules, +set forth in the General Terms of Use part of this license, apply to +copying and distributing Project Gutenberg-tm electronic works to +protect the PROJECT GUTENBERG-tm concept and trademark. Project +Gutenberg is a registered trademark, and may not be used if you +charge for the eBooks, unless you receive specific permission. If you +do not charge anything for copies of this eBook, complying with the +rules is very easy. You may use this eBook for nearly any purpose +such as creation of derivative works, reports, performances and +research. They may be modified and printed and given away--you may do +practically ANYTHING with public domain eBooks. Redistribution is +subject to the trademark license, especially commercial +redistribution. + + + +*** START: FULL LICENSE *** + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase "Project +Gutenberg"), you agree to comply with all the terms of the Full Project +Gutenberg-tm License (available with this file or online at +http://gutenberg.net/license). + + +Section 1. General Terms of Use and Redistributing Project Gutenberg-tm +electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or destroy +all copies of Project Gutenberg-tm electronic works in your possession. +If you paid a fee for obtaining a copy of or access to a Project +Gutenberg-tm electronic work and you do not agree to be bound by the +terms of this agreement, you may obtain a refund from the person or +entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. "Project Gutenberg" is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this agreement +and help preserve free future access to Project Gutenberg-tm electronic +works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" +or PGLAF), owns a compilation copyright in the collection of Project +Gutenberg-tm electronic works. Nearly all the individual works in the +collection are in the public domain in the United States. If an +individual work is in the public domain in the United States and you are +located in the United States, we do not claim a right to prevent you from +copying, distributing, performing, displaying or creating derivative +works based on the work as long as all references to Project Gutenberg +are removed. Of course, we hope that you will support the Project +Gutenberg-tm mission of promoting free access to electronic works by +freely sharing Project Gutenberg-tm works in compliance with the terms of +this agreement for keeping the Project Gutenberg-tm name associated with +the work. You can easily comply with the terms of this agreement by +keeping this work in the same format with its attached full Project +Gutenberg-tm License when you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are in +a constant state of change. If you are outside the United States, check +the laws of your country in addition to the terms of this agreement +before downloading, copying, displaying, performing, distributing or +creating derivative works based on this work or any other Project +Gutenberg-tm work. The Foundation makes no representations concerning +the copyright status of any work in any country outside the United +States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other immediate +access to, the full Project Gutenberg-tm License must appear prominently +whenever any copy of a Project Gutenberg-tm work (any work on which the +phrase "Project Gutenberg" appears, or with which the phrase "Project +Gutenberg" is associated) is accessed, displayed, performed, viewed, +copied or distributed: + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.net + +1.E.2. If an individual Project Gutenberg-tm electronic work is derived +from the public domain (does not contain a notice indicating that it is +posted with permission of the copyright holder), the work can be copied +and distributed to anyone in the United States without paying any fees +or charges. If you are redistributing or providing access to a work +with the phrase "Project Gutenberg" associated with or appearing on the +work, you must comply either with the requirements of paragraphs 1.E.1 +through 1.E.7 or obtain permission for the use of the work and the +Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or +1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any additional +terms imposed by the copyright holder. Additional terms will be linked +to the Project Gutenberg-tm License for all works posted with the +permission of the copyright holder found at the beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including any +word processing or hypertext form. However, if you provide access to or +distribute copies of a Project Gutenberg-tm work in a format other than +"Plain Vanilla ASCII" or other format used in the official version +posted on the official Project Gutenberg-tm web site (www.gutenberg.net), +you must, at no additional cost, fee or expense to the user, provide a +copy, a means of exporting a copy, or a means of obtaining a copy upon +request, of the work in its original "Plain Vanilla ASCII" or other +form. Any alternate format must include the full Project Gutenberg-tm +License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works provided +that + +- You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is + owed to the owner of the Project Gutenberg-tm trademark, but he + has agreed to donate royalties under this paragraph to the + Project Gutenberg Literary Archive Foundation. Royalty payments + must be paid within 60 days following each date on which you + prepare (or are legally required to prepare) your periodic tax + returns. Royalty payments should be clearly marked as such and + sent to the Project Gutenberg Literary Archive Foundation at the + address specified in Section 4, "Information about donations to + the Project Gutenberg Literary Archive Foundation." + +- You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or + destroy all copies of the works possessed in a physical medium + and discontinue all use of and all access to other copies of + Project Gutenberg-tm works. + +- You provide, in accordance with paragraph 1.F.3, a full refund of any + money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days + of receipt of the work. + +- You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm +electronic work or group of works on different terms than are set +forth in this agreement, you must obtain permission in writing from +both the Project Gutenberg Literary Archive Foundation and Michael +Hart, the owner of the Project Gutenberg-tm trademark. Contact the +Foundation as set forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +public domain works in creating the Project Gutenberg-tm +collection. Despite these efforts, Project Gutenberg-tm electronic +works, and the medium on which they may be stored, may contain +"Defects," such as, but not limited to, incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other intellectual +property infringement, a defective or damaged disk or other medium, a +computer virus, or computer codes that damage or cannot be read by +your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right +of Replacement or Refund" described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium with +your written explanation. The person or entity that provided you with +the defective work may elect to provide a replacement copy in lieu of a +refund. If you received the work electronically, the person or entity +providing it to you may choose to give you a second opportunity to +receive the work electronically in lieu of a refund. If the second copy +is also defective, you may demand a refund in writing without further +opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of damages. +If any disclaimer or limitation set forth in this agreement violates the +law of the state applicable to this agreement, the agreement shall be +interpreted to make the maximum disclaimer or limitation permitted by +the applicable state law. The invalidity or unenforceability of any +provision of this agreement shall not void the remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in accordance +with this agreement, and any volunteers associated with the production, +promotion and distribution of Project Gutenberg-tm electronic works, +harmless from all liability, costs and expenses, including legal fees, +that arise directly or indirectly from any of the following which you do +or cause to occur: (a) distribution of this or any Project Gutenberg-tm +work, (b) alteration, modification, or additions or deletions to any +Project Gutenberg-tm work, and (c) any Defect you cause. + + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of computers +including obsolete, old, middle-aged and new computers. It exists +because of the efforts of hundreds of volunteers and donations from +people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need, is critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future generations. +To learn more about the Project Gutenberg Literary Archive Foundation +and how your efforts and donations can help, see Sections 3 and 4 +and the Foundation web page at http://www.pglaf.org. + + +Section 3. Information about the Project Gutenberg Literary Archive +Foundation + +The Project Gutenberg Literary Archive Foundation is a non profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Its 501(c)(3) letter is posted at +http://pglaf.org/fundraising. Contributions to the Project Gutenberg +Literary Archive Foundation are tax deductible to the full extent +permitted by U.S. federal laws and your state's laws. + +The Foundation's principal office is located at 4557 Melan Dr. S. +Fairbanks, AK, 99712., but its volunteers and employees are scattered +throughout numerous locations. Its business office is located at +809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email +business@pglaf.org. Email contact links and up to date contact +information can be found at the Foundation's web site and official +page at http://pglaf.org + +For additional contact information: + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without wide +spread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To +SEND DONATIONS or determine the status of compliance for any +particular state visit http://pglaf.org + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg Web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including including checks, online payments and credit card +donations. To donate, please visit: http://pglaf.org/donate + + +Section 5. General Information About Project Gutenberg-tm electronic +works. + +Professor Michael S. Hart is the originator of the Project Gutenberg-tm +concept of a library of electronic works that could be freely shared +with anyone. For thirty years, he produced and distributed Project +Gutenberg-tm eBooks with only a loose network of volunteer support. + + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the U.S. +unless a copyright notice is included. Thus, we do not necessarily +keep eBooks in compliance with any particular paper edition. + + +Most people start at our Web site which has the main PG search facility: + + http://www.gutenberg.net + +This Web site includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. From f183195928e81841eee16106daa14eba329b775a Mon Sep 17 00:00:00 2001 From: Nicholas Audo Date: Wed, 15 Oct 2014 10:10:33 -0700 Subject: [PATCH 086/135] Update the logo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c273dbe..a70f86c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Logo](http://www.hackbrightacademy.com/assets/Hackbright-6c7b7cf9a39c92964e3fde0c682f48e8.png) +![Logo](http://hb-website-assets-production.s3.amazonaws.com/assets/Hackbright-defd4deb316e265c983704d78e65f926.png) Hackbright Curriculum ===================== From e0b1a93539b420ac3b5fe847d2c5be22c667d699 Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Mon, 8 Dec 2014 00:02:59 -0800 Subject: [PATCH 087/135] Switch to doctest for recursion whiteboarding. --- Whiteboarding/Recursion/README.md | 106 +++++-- Whiteboarding/Recursion/recursion.py | 339 ++++++++++++++++++---- Whiteboarding/Recursion/test_recursion.py | 82 ------ 3 files changed, 374 insertions(+), 153 deletions(-) delete mode 100644 Whiteboarding/Recursion/test_recursion.py diff --git a/Whiteboarding/Recursion/README.md b/Whiteboarding/Recursion/README.md index 0fcb622..792e0e7 100644 --- a/Whiteboarding/Recursion/README.md +++ b/Whiteboarding/Recursion/README.md @@ -1,25 +1,36 @@ Whiteboarding Practice: Recursion -======= +================================= Introduction ------------ -Remember when you used to point a video camera at the screen that was displaying the video feed, or tried to put two mirrors face-to-face and peer into infinity? Yeah, recursion is kind of like that. + +Remember when you used to point a video camera at the screen that was displaying +the video feed, or tried to put two mirrors face-to-face and peer into infinity? +Yeah, recursion is kind of like that. Take the following function: + ``` def func_a(): print "Function a is the haps right now." func_b() ``` -So far, nothing out of the ordinary. It is perfectly permissible to call func_b from func_a. But, in an M. Night Shyamalan-worthy twist, look at the definition of func_b -- + +So far, nothing out of the ordinary. It is perfectly permissible to call func_b +from func_a. But, in an M. Night Shyamalan-worthy twist, look at the definition +of func_b -- + ``` def func_b(): print "FUNCTION B IN THE HIZOUSE." func_a() ``` + Uh-oh. -Running this beastly combination of functions together produces the following output (assuming we start from func_a) +Running this beastly combination of functions together produces the following output +(assuming we start from func_a) + ``` Function a is the haps right now. FUNCTION B IN THE HIZOUSE. @@ -36,15 +47,26 @@ FUNCTION B IN THE HIZOUSE. Actually, eventually the computer explodes in a fiery blaze. Better stop your program. -Let's take the idea one step further. If func_a can call func_b which just ends up calling func_a, what happens if we eliminate the middle man? +Let's take the idea one step further. If func_a can call func_b which just ends up +calling func_a, what happens if we eliminate the middle man? + ``` def func_c(): print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" func_c() ``` -This is a recursive call. Any function that calls itself is said to be recursive. For the full definition of recursion, look up recursion in a dictionary, but the important part here is that the function calls itself. While you were busy panicking, trying to stop the computer from exploding, you may have noticed that a side effect of recursion is that it causes a chunk of code to repeat. As it stands, func_c is effectively an infinite loop. With slight changes, we can harness the power of recursion for evil. I mean good. We can harness it for good. I mean loops. + +This is a recursive call. Any function that calls itself is said to be +recursive. For the full definition of recursion, look up recursion in a +dictionary, but the important part here is that the function calls itself. +While you were busy panicking, trying to stop the computer from exploding, you +may have noticed that a side effect of recursion is that it causes a chunk of +code to repeat. As it stands, func_c is effectively an infinite loop. With +slight changes, we can harness the power of recursion for evil. I mean good. We +can harness it for good. I mean loops. Consider the following scenario. I have two functions, func_d, and func_e. + ``` def func_d(): func_e() @@ -53,13 +75,23 @@ def func_d(): def func_e(): print "Sup." ``` -Neither function is recursive. At this point, it's helpful to imagine that the call to func_e is _nested_ inside func_d. If we call func_d, the text "I'm done" won't print until after func_e has been called and completed. The same idea applies to our recursive function: + +Neither function is recursive. At this point, it's helpful to imagine that the +call to func_e is _nested_ inside func_d. If we call func_d, the text "I'm +done" won't print until after func_e has been called and completed. The same +idea applies to our recursive function: + ``` def func_c(): print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" func_c() ``` -If we call func_c, it won't complete until after it calls and completes.. func_c, which never completes until it calls func_c and.. arrrrgh. Func_c is nested inside func_c which is nested inside func_c and it never stops. Okay, let's try a different tack. What if we randomly forced func_c to end? + +If we call func_c, it won't complete until after it calls and completes.. +func_c, which never completes until it calls func_c and.. arrrrgh. Func_c is +nested inside func_c which is nested inside func_c and it never stops. Okay, +let's try a different tack. What if we randomly forced func_c to end? + ``` def func_c(): if random.choice([True, False]): @@ -67,7 +99,13 @@ def func_c(): print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" func_c() ``` -In this case, each call to func_c might randomly end, allowing the enclosing call to func_c to end, allowing the enclosing one to end, until we finally reach the outer enclosure. Now we're getting somewhere. Let's make one more change. Instead of randomly ending, let's control when we end. In this case, we'll end when the argument to func_c is 0. + +In this case, each call to func_c might randomly end, allowing the enclosing +call to func_c to end, allowing the enclosing one to end, until we finally +reach the outer enclosure. Now we're getting somewhere. Let's make one more +change. Instead of randomly ending, let's control when we end. In this case, +we'll end when the argument to func_c is 0. + ``` def func_c(n): if n == 0: @@ -75,7 +113,13 @@ def func_c(n): print "OH MY GOD I DON'T UNDERSTAND WHAT'S HAPPENING" func_c(n) ``` -So now func_c takes an argument, n. And if n is 0, it stops. If it's not 0, it repeats. So far, things are still not better. We have some control, the function either repeats forever, or doesn't. Let's look at the last line. If the function repeats while n is 0, what if, when we called func_c, we inched n towards 0, like so. + +So now func_c takes an argument, n. And if n is 0, it stops. If it's not 0, it +repeats. So far, things are still not better. We have some control, the +function either repeats forever, or doesn't. Let's look at the last line. If +the function repeats while n is 0, what if, when we called func_c, we inched n +towards 0, like so. + ``` def func_c(n): if n == 0: @@ -83,18 +127,46 @@ def func_c(n): print n func_c(n-1) ``` -If you run this, you'll find that this function counts down from n to 1, printing each number, then stopping. This is a (semi) useful recursive function. Without looping, we can repeat a piece of code and we can control how many times it repeats. There are three rules to writing a recursive function: - 1. The recursive function must have a base case where it decides to end, here, it's when n reaches 0. - 2. The function must accept some argument that can be moved _towards_ the base case, here, it's our argument n. - 3. The function must call itself. This happens on the last line. +If you run this, you'll find that this function counts down from n to 1, +printing each number, then stopping. This is a (semi) useful recursive +function. Without looping, we can repeat a piece of code and we can control +how many times it repeats. There are three rules to writing a recursive +function: + +1. The recursive function must have a base case where it decides to end, here, + it's when n reaches 0. -One note about base cases, consider the base case to be the most degenerate input your function can take and still be considered to do it's job. If your function is going to print the numbers from n to 0, the simplest version of that is to just print 0. If your function manipulates a list or a string in some way, say, to count the length, the easiest length string to count is 0. +2. The function must accept some argument that can be moved _towards_ the base + case, here, it's our argument n. + +3. The function must call itself. This happens on the last line. + +One note about base cases, consider the base case to be the most degenerate +input your function can take and still be considered to do it's job. If your +function is going to print the numbers from n to 0, the simplest version of +that is to just print 0. If your function manipulates a list or a string in +some way, say, to count the length, the easiest length string to count is 0. If you need some extra reading, refer to this link: * http://interactivepython.org/runestone/static/pythonds/Recursion/recursionsimple.html Description -------- -Here, you'll find a series of tasks you can already do. But as in the demo, a wizard has taken away your powers of iteration and you're left to accomplish them recursively. +----------- + +In recursion.py, you'll find a number of functions that should be solved +using recursion. Each function has a description and some test examples +so you can see what the expected output should be for your function. + +Edit this file to file in the body of each function. When you'd like to +test your work, run the script: + +``` +$ python recursion.py +``` + +If there are errors or failed tests, they will print out. + +When you have passed all of the tests, it will print a message congratulating +you. diff --git a/Whiteboarding/Recursion/recursion.py b/Whiteboarding/Recursion/recursion.py index 2771990..27de39c 100644 --- a/Whiteboarding/Recursion/recursion.py +++ b/Whiteboarding/Recursion/recursion.py @@ -1,82 +1,313 @@ """ Recursion ---------------------- The Evil Wizard Malloc has attacked you and taken away your ability -to use loops! The only way you can defeat him is by fighting back +to use loops! The only way you can defeat him is by fighting back using the power of recursion! Below are function stubs for a variety of functions that are able -to be solved recursively. For this exercise, you are not allowed +to be solved recursively. For this exercise, you are not allowed to use: * for loops + * "while" loops + * You may use list slicing, but you may not use the "reverse" slice (e.g, list[::-1]) + * Any built-in function that achieves the same result -You can use the included test_recursion.py script to test that your -functions work (and if you need hints for what the expected input/output -should be). +If you run this script from the command line, it will execute the +built-in tests, and let you know which functions are either not +complete or not correct. + +When all tests pass, this program will output: + + ** ALL TESTS PASS; GOOD WORK! ** """ -# Multiply all the elements in a list using recursion -def multiply_list(l): - return 1 -# Return the factorial of n +def multiply_list(lst): + """Multiply all the elements in a list using recursion. + + + >>> multiply_list([5, 2, 1, 4, 3, 6]) + 720 + + >>> multiply_list([5, 24, 48, 88]) + 506880 + + >>> multiply_list([5, 24, 48, 88, 0]) + 0 + """ + + if not lst: + return 1 + + return lst[0] * multiply_list(lst[1:]) + + def factorial(n): - return 1 + """Return the factorial of n. + + The factorial is the result of multiplying all integers from 1...n. + + >>> factorial(1) + 1 + + >>> factorial(2) + 2 + + >>> factorial(3) + 6 + + >>> factorial(4) + 24 + """ + + if n == 1: + return 1 + + return n * factorial(n - 1) + + +def count_list(lst): + """Count the number of elements in the list without using loops or len(). + + >>> count_list([5, 2, 1, 4, 3, 6]) + 6 + + >>> count_list([5, 24, 48, 88]) + 4 + """ + + if not lst: + return 0 + + return 1 + count_list(lst[1:]) -# Count the number of elements in the list l without using loops or the len() function -def count_list(l): - return 0 -# Sum all of the elements in a list without using loops or the sum() function -def sum_list(l): - return 0 +def sum_list(lst): + """Sum the items in the list without using loops or the sum() function. + + >>> sum_list([5, 2, 1, 4, 3, 6]) + 21 + + >>> sum_list([5, 24, 48, 88]) + 165 + """ + + if not lst: + return 0 + + return lst[0] + sum_list(lst[1:]) + + +def reverse(lst): + """Reverse a list recursively, without loops, reverse() function or list[::-1]. + + >>> reverse([1, 2, 3, 4]) + [4, 3, 2, 1] + + >>> reverse([]) + [] + """ + + if not lst: + return [] + + return [lst[-1]] + reverse(lst[0:-1]) -# Reverse a list recursively without loops, the reverse() function or list[::-1] -def reverse(l): - return [] -# Fibonacci returns the nth fibonacci number. The nth fibonacci number is -# defined as fib(n) = fib(n-1) + fib(n-2) def fibonacci(n): - return 1 - -# Finds the item i in the list l.... RECURSIVELY -# Return the item if it is in the list or None if not found. -def find(l, i): - return None - -# Determines if a string is a palindrome -# A palindrome is any string that is the same forwards and backwords. -# (e.g. radar, racecar, aibohphobia) -# Solve recursively, -def palindrome(some_string): - return False - -# Given the width and height of a sheet of paper, and the number of times to fold it, -# return the final dimensions of the sheet as a tuple. -# NOTE: Assume that you always fold in half along the longest edge of the sheet. + """Return the nth fibonacci number. + + The nth fibonacci number is defined as: + + fibonacci(n) = fibonacci(n-1) + fibonacci(n-2) + + Use recursion to solve this. + + >>> fibonacci(1) + 1 + + >>> fibonacci(2) + 1 + + >>> fibonacci(3) + 2 + + >>> fibonacci(4) + 3 + + >>> fibonacci(5) + 5 + + >>> fibonacci(6) + 8 + + >>> fibonacci(7) + 13 + + >>> fibonacci(8) + 21 + + >>> fibonacci(9) + 34 + """ + + if n < 1: + return 0 + + if n == 1: + return 1 + + return fibonacci(n - 1) + fibonacci(n - 2) + + +def find(lst, i): + """Find item i in the list lst. + + If the item is in the list, return it. Otherwise, return None. + + Use recursion to solve this. + + >>> find(["a", "b", "c"], "a") + 'a' + + >>> find(["a", "b", "c"], "c") + 'c' + + >>> find(["a", "b", "c"], "d") + """ + + if not lst: + return None + + if lst[0] == i: + return i + + return find(lst[1:], i) + + +def is_palindrome(some_string): + """Is some_string a palindrome? + + A palindrome is any string that is the same forwards and backwords + (e.g., "radar", "racecar", "aibohphobia") + + Solve this using recursion. + + >>> is_palindrome("a") + True + + >>> is_palindrome("hello") + False + + >>> is_palindrome("racecar") + True + + >>> is_palindrome("foof") + True + + >>> is_palindrome("foaf") + False + """ + + if not some_string: + return True + + if some_string[0] != some_string[-1]: + return False + + return is_palindrome(some_string[1:-1]) + + def fold_paper(width, height, folds): - return (0, 0) - -# Count up -# Print all the numbers from 0 to target. -# Use n to keep track of where you're at -# ex, to count from 1 - 100, call count_up(100, 1) -# -# Note: we don't have a test case for this one, so just run this -# script directly -# -# Note #2: We're printing out the numbers, so this script does not -# need to return anything! -def count_up(target, n): - pass + """Find the dimensions of a folded piece of paper. + + Given a width and height of a piece of paper, and the number of times to fold it, + return the final dimensions (as a tuple of width, height) of the paper. Assume that + you always fold in half along the longest edge of the sheet (if they are the same + length, fold along the width first.) + + >>> fold_paper(8.5, 11, 1) + (8.5, 5.5) + + >>> fold_paper(8.5, 11, 2) + (4.25, 5.5) + + >>> fold_paper(8.5, 11, 3) + (4.25, 2.75) + + >>> fold_paper(8.5, 11, 4) + (2.125, 2.75) + + >>> fold_paper(8.5, 11, 5) + (2.125, 1.375) + + >>> fold_paper(10, 10, 2) + (5.0, 5.0) + + >>> fold_paper(10, 10, 4) + (2.5, 2.5) + + Let's make sure we handle the case of even sizes: + + >>> fold_paper(10, 10, 1) + (5.0, 10.0) + """ + + if folds == 0: + return float(width), float(height) + + if width >= height: + return fold_paper(width / 2.0, height, folds - 1) + + else: + return fold_paper(width, height / 2.0, folds - 1) + + +def count_up(n, target): + """Print all integers from n to target, inclusive. + + >>> count_up(1, 5) + 1 + 2 + 3 + 4 + 5 + + >>> count_up(0, 2) + 0 + 1 + 2 + + >>> count_up(-1, 1) + -1 + 0 + 1 + + >>> count_up(0, 0) + 0 + + >>> count_up(1, 0) + """ + + if n > target: + return + + print n + count_up(n + 1, target) + + +########################################################################################### if __name__ == "__main__": - count_up(100, 0) + from doctest import testmod + print + if testmod().failed == 0: + print " ** ALL TESTS PASS. GOOD WORK! **" + print diff --git a/Whiteboarding/Recursion/test_recursion.py b/Whiteboarding/Recursion/test_recursion.py deleted file mode 100644 index 96f40d5..0000000 --- a/Whiteboarding/Recursion/test_recursion.py +++ /dev/null @@ -1,82 +0,0 @@ -import unittest -import math - -from recursion import * - -class TestRecursionOperations(unittest.TestCase): - - def setUp(self): - self.numbers1 = [5, 2, 1, 4, 3, 6] - self.numbers2 = [5, 24, 48, 88] - self.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', - 'Sep', 'Oct', 'Nov', 'Dec'] - - - ### Tests for recursion.py ### - def test_multiply_list(self): - self.assertEqual(multiply_list(self.numbers1), 720) - self.assertEqual(multiply_list(self.numbers2), 506880) - - def test_factorial(self): - self.assertEqual(factorial(1), math.factorial(1)) - self.assertEqual(factorial(2), math.factorial(2)) - self.assertEqual(factorial(3), math.factorial(3)) - self.assertEqual(factorial(4), math.factorial(4)) - self.assertEqual(factorial(5), math.factorial(5)) - self.assertEqual(factorial(10), math.factorial(10)) - self.assertEqual(factorial(20), math.factorial(20)) - - def test_count_list(self): - self.assertEqual(count_list(self.numbers1), len(self.numbers1)) - self.assertEqual(count_list(self.numbers2), len(self.numbers2)) - self.assertEqual(count_list(self.months), len(self.months)) - - def test_sum_list(self): - self.assertEqual(sum_list(self.numbers1), sum(self.numbers1)) - self.assertEqual(sum_list(self.numbers2), sum(self.numbers2)) - - def test_reverse_list(self): - self.assertEqual(reverse(self.numbers1), self.numbers1[::-1]) - self.assertEqual(reverse(self.numbers2), self.numbers2[::-1]) - self.assertEqual(reverse(self.months), self.months[::-1]) - - def test_fibonacci(self): - self.assertEqual(fibonacci(1), 1) - self.assertEqual(fibonacci(2), 1) - self.assertEqual(fibonacci(3), 2) - self.assertEqual(fibonacci(4), 3) - self.assertEqual(fibonacci(5), 5) - self.assertEqual(fibonacci(6), 8) - self.assertEqual(fibonacci(7), 13) - self.assertEqual(fibonacci(8), 21) - self.assertEqual(fibonacci(9), 34) - - def test_find(self): - self.assertEqual(find(self.numbers1, 4), 4) - self.assertEqual(find(self.numbers1, 5), 5) - self.assertEqual(find(self.months, "Jan"), "Jan") - self.assertEqual(find(self.months, "Feb"), "Feb") - self.assertEqual(find(self.months, "Dec"), "Dec") - self.assertEqual(find(self.months, "Jul"), "Jul") - self.assertEqual(find(self.months, "Hex"), None) - - def test_palindrome(self): - self.assertTrue(palindrome("radar")) - self.assertTrue(palindrome("racecar")) - self.assertTrue(palindrome("poop")) - self.assertFalse(palindrome("palindrome")) - self.assertFalse(palindrome("abcdecba")) - - def test_fold_paper(self): - self.assertEqual(fold_paper(8.5, 11, 1), (8.5, 11.0/2)) - self.assertEqual(fold_paper(8.5, 11, 2), (8.5/2, 11.0/2)) - self.assertEqual(fold_paper(8.5, 11, 3), (8.5/2, 11.0/2/2)) - self.assertEqual(fold_paper(8.5, 11, 4), (8.5/2/2, 11.0/2/2)) - self.assertEqual(fold_paper(8.5, 11, 5), (8.5/2/2, 11.0/2/2/2)) - - self.assertEqual(fold_paper(10, 10, 2), (10.0/2, 10.0/2)) - self.assertEqual(fold_paper(10, 10, 4), (10.0/2/2, 10.0/2/2)) - - -if __name__ == '__main__': - unittest.main() From 0f9b864ee73140014ec49f1601cc3fb61b637b50 Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Mon, 8 Dec 2014 00:05:51 -0800 Subject: [PATCH 088/135] Remove answers. --- Whiteboarding/Recursion/recursion.py | 64 +++++----------------------- 1 file changed, 10 insertions(+), 54 deletions(-) diff --git a/Whiteboarding/Recursion/recursion.py b/Whiteboarding/Recursion/recursion.py index 27de39c..70186b4 100644 --- a/Whiteboarding/Recursion/recursion.py +++ b/Whiteboarding/Recursion/recursion.py @@ -43,10 +43,7 @@ def multiply_list(lst): 0 """ - if not lst: - return 1 - - return lst[0] * multiply_list(lst[1:]) + pass def factorial(n): @@ -67,10 +64,7 @@ def factorial(n): 24 """ - if n == 1: - return 1 - - return n * factorial(n - 1) + pass def count_list(lst): @@ -83,10 +77,7 @@ def count_list(lst): 4 """ - if not lst: - return 0 - - return 1 + count_list(lst[1:]) + pass def sum_list(lst): @@ -99,10 +90,7 @@ def sum_list(lst): 165 """ - if not lst: - return 0 - - return lst[0] + sum_list(lst[1:]) + pass def reverse(lst): @@ -115,10 +103,7 @@ def reverse(lst): [] """ - if not lst: - return [] - - return [lst[-1]] + reverse(lst[0:-1]) + pass def fibonacci(n): @@ -158,13 +143,7 @@ def fibonacci(n): 34 """ - if n < 1: - return 0 - - if n == 1: - return 1 - - return fibonacci(n - 1) + fibonacci(n - 2) + pass def find(lst, i): @@ -183,13 +162,7 @@ def find(lst, i): >>> find(["a", "b", "c"], "d") """ - if not lst: - return None - - if lst[0] == i: - return i - - return find(lst[1:], i) + pass def is_palindrome(some_string): @@ -216,13 +189,7 @@ def is_palindrome(some_string): False """ - if not some_string: - return True - - if some_string[0] != some_string[-1]: - return False - - return is_palindrome(some_string[1:-1]) + pass def fold_paper(width, height, folds): @@ -260,14 +227,7 @@ def fold_paper(width, height, folds): (5.0, 10.0) """ - if folds == 0: - return float(width), float(height) - - if width >= height: - return fold_paper(width / 2.0, height, folds - 1) - - else: - return fold_paper(width, height / 2.0, folds - 1) + pass def count_up(n, target): @@ -296,11 +256,7 @@ def count_up(n, target): >>> count_up(1, 0) """ - if n > target: - return - - print n - count_up(n + 1, target) + pass ########################################################################################### From a754b4383354081fe1f0814f0ab83f6e864ec24a Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Mon, 29 Dec 2014 11:47:48 -0800 Subject: [PATCH 089/135] minor reordering, ask for code review and then talk about extra credit --- Exercise01/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index ee4adf2..70981b3 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -133,11 +133,12 @@ So if you're code is broken or you explored an idea that didn't turn out the way *WARNING:* This will erase any changes you have not committed to git, so please use with care! +When you think you've finished, call an instructor over for a code review. + Extra Credit ------- -When you think you've finished, call an instructor over for a code review. -After that, make your program a little more user friendly: +Make your program a little more user friendly: 1. If the user inputs something that is not a number, mock them for their crimes and ask them to enter a valid number. 2. If the user inputs a number that isn't between 1-100 as requested, mock them for their crimes and ask them to enter a valid number. From 585f048918e31aa0786329616aed133207cd82d4 Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Mon, 29 Dec 2014 11:52:13 -0800 Subject: [PATCH 090/135] Add line asking for code review, make Spark extra credit --- Exercise05/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Exercise05/README.md b/Exercise05/README.md index 2a8f63c..3222a98 100644 --- a/Exercise05/README.md +++ b/Exercise05/README.md @@ -49,10 +49,17 @@ Write a program, lettercount.py, that opens a file named on the command line and Note: you may not use dictionaries in your program for this exercise. +We have provided a file 'twain.txt' for you to test your code on. + +When you think you've finished, call an instructor over for a code review. + +Extra Credit +------- + Once you've produced appropriate output, you can visualize it by piping the contents of your program to the 'spark' utility installed on your computer: $ python lettercount.py inputfile.txt | spark ▃▂▄▁▇▅█▁▇▂▁▁▅▃▅▇▁▄▄▂▂▇▆▄▂▄ -We have provided a file 'twain.txt' for you to test your code on. + From 0eeba2ad4676fc644aeef0f5f8a77048488cb1e3 Mon Sep 17 00:00:00 2001 From: ktel1218 Date: Mon, 29 Dec 2014 12:21:29 -0800 Subject: [PATCH 091/135] By request, clearer comments for each step --- Exercise04/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Exercise04/README.md b/Exercise04/README.md index 4bb4535..363b0cb 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -1,3 +1,5 @@ +---- comments under review by Katie ----- + List Operations =============== From 3fed447ea1f4b360728c724606635469ac02113f Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Mon, 29 Dec 2014 13:46:22 -0800 Subject: [PATCH 092/135] fixing typo + wording on git reset portion --- Exercise01/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 70981b3..56f82cc 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -123,10 +123,9 @@ So if you take the rough pseudocode outline from above, you'll probably want to As you get more comfortable with git, you won't need to do a 'git status' at every step. We're only having you do that here so you can see what is happening at each step and get used to the messages that git returns. ## Go Back! +At some point, commit your working code as is, and then go ahead and break something. Yes, make something stop working. And then save, but do NOT commit, these changes. Once you've wreaked some amount of havoc, continue reading. -At some point, if you didn't make a mistake in your code, go ahead and break something (though make sure you've commited your working code before you go breaking things). - -So if you're code is broken or you explored an idea that didn't turn out the way you wanted it to and you just want to go back to your last commit, try: +Often, you will explore an idea that didn't turn out the way you wanted it to, or accidental changes get saved. In these cases, you'll just want to go back to your last commit, and throw out the changes you've made. Try: git reset --hard From 9bc47a9fa214eb0c6a321ef642dd4b5868ba7a15 Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Mon, 29 Dec 2014 14:08:37 -0800 Subject: [PATCH 093/135] add examples to part 1 comments, added descriptions to part 2 --- Exercise04/list_operations.py | 137 ++++++++++++++++++++++++++-------- 1 file changed, 104 insertions(+), 33 deletions(-) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index fb54350..1681ee9 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -19,71 +19,110 @@ """ def head(input_list): - """Return the first element of the input list.""" + """ + Return the first element of the input list. + [ A, B, C, D, E, F ] --> A + """ pass def tail(input_list): - """Return all elements of the input list except the first.""" + """ + Return all elements of the input list except the first. + [ A, B, C, D ] --> [ B, C, D ] + """ pass def last(input_list): - """Return the last element of the input list.""" + """ + Return the last element of the input list. + [ A, B, C, D ] --> D + """ pass def init(input_list): - """Return all elements of the input list except the last.""" + """ + Return all elements of the input list except the last. + [ A, B, C, D ] --> [ A, B, C ] + """ pass def first_three(input_list): - """Return the first three elements of the input list.""" + """ + Return the first three elements of the input list. + [ A, B, C, D, E, F ] --> [ A, B, C ] + """ pass def last_five(input_list): - """Return the last five elements of the input list.""" + """ + Return the last five elements of the input list. + [ A, B, C, D, E, F ] --> [ B, C, D, E, F ] + """ pass def middle(input_list): - """Return all elements of the input list except the first two and the last - two. + """ + Return all elements of the input list except the first two and the last two. + [ A, B, C, D, E, F ] --> [ C, D ] """ pass def inner_four(input_list): - """Return the third, fourth, fifth, and sixth elements of the input list.""" + """ + Return the third, fourth, fifth, and sixth elements of the input list. + [ A, B, C, D, E, F, G ] --> [ C, D, E, F ] + """ + pass def inner_four_end(input_list): - """Return the sixth, fifth, fourth, and third elements from the end of the - list, in that order. + """ + Return the sixth, fifth, fourth, and third elements from the end of the + list, in that order. + [ A, B, C, D, E, F, G ] --> [ F, E, D, C ] """ pass def replace_head(input_list): - """Replace the head of the input list with the value 42.""" + """ + Replace the head of the input list with the value 42. + [ A, B, C, D ] --> [ 42, B, C, D] + """ pass def replace_third_and_last(input_list): - """Replace the third and last elements of the input list with the value 37.""" + """ + Replace the third and last elements of the input list with the value 37. + [ A, B, C, D, E, F ] --> [ A, B, 37, D, E, 37 ] + """ pass def replace_middle(input_list): - """Replace all elements of the input list with the the values 42 and 37, in - that order, except for the first two and last two elements. """ + Replace all elements of the input list with the the values 42 and 37, in + that order, except for the first two and last two elements. + [ A, B, C, D, E, F, G, H, I ] --> [ A, B, 42, 37, H, I ] + """ + pass def delete_third_and_seventh(input_list): - """Remove the third and seventh elements of the input list.""" + """ + Remove the third and seventh elements of the input list. + [ A, B, C, D, E, F, G, H ] --> [ A, B, D, E, F, H ] + """ pass def delete_middle(input_list): - """Remove all elements from the input list except for the first two and the - last two. + """ + Remove all elements from the input list except for the first two and the + last two. + [ A, B, C, D, E, F, G, H ] --> [ A, B, G, H ] """ pass """ -Now would be a great time to ask for a code review. +Part 1 is finished! Ask for a code review before proceeding to Part 2. """ """ @@ -103,50 +142,82 @@ def delete_middle(input_list): """ def custom_len(input_list): - """custom_len(input_list) imitates len(input_list)""" + """ + like len(input_list), should return the number of items in the list + """ pass # For the next four functions, get clever using slice operations described in the first half def custom_append(input_list, value): - """custom_append(input_list, value) imitates input_list.append(value)""" + """ + like input_list.append(value), should add the value to the end of the list + and return nothing + """ pass -def custom_extend(input_list, values): - """custom_extend(input_list, values) imitates input_list.extend(values)""" +def custom_extend(input_list, second_list): + """ + like input_list.extend(second_list), should append every item in the second + list to the end of the first list and return nothing + """ pass def custom_insert(input_list, index, value): - """custom_insert(input_list, index, value) imitates - input_list.insert(index, value) + """ + like input_list.insert(index, value), should insert (not replace) the value + at the specified index of the input list and return nothing """ pass def custom_remove(input_list, value): - """custom_remove(input_list, value) imitates input_list.remove(value)""" + """ + like input_list.remove(value), should remove the first item of the + value specified and return nothing + """ pass def custom_pop(input_list): - """custom_pop(input_list) imitates input_list.pop()""" + """ + like input_list.pop(), should remove the last item in the list and + return it + """ pass def custom_index(input_list, value): - """custom_index(input_list, value) imitates input_list.index(value)""" + """ + like input_list.index(value), should return the index of the first item + which matches the specified value + """ pass def custom_count(input_list, value): - """custom_count(input_list, value) imitates input_list.count(value)""" + """ + like input_list.count(value), should return the number of times the specified + value appears in the list. + """ pass def custom_reverse(input_list): - """custom_reverse(input_list) imitates input_list.reverse()""" + """ + like input_list.reverse(), should reverse the elements of the original list + and return nothing (we call this reversing "in place") + """ pass def custom_contains(input_list, value): - """custom_contains(input_list, value) imitates (value in input_list)""" + """ + like (value in input_list), should return True if the list contains the + specified value and False if it does not + """ pass def custom_equality(some_list, another_list): - """custom_equality(some_list, another_list) imitates - (some_list == another_list) + """ + like (some_list == another_list), should return True if both lists contain + the same values in the same indexes """ pass + +""" +Part 2 is finished! Required: Ask for a code review. Optional: High-Five +""" \ No newline at end of file From 4e272a6f71009c41c385d92d2bc5a9ef2266e490 Mon Sep 17 00:00:00 2001 From: ktel1218 Date: Mon, 29 Dec 2014 14:32:57 -0800 Subject: [PATCH 094/135] wrong one, no changes made --- Exercise04/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/Exercise04/README.md b/Exercise04/README.md index 363b0cb..4bb4535 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -1,5 +1,3 @@ ----- comments under review by Katie ----- - List Operations =============== From 7c7fa5b86c8ab8007d0791c75bb9c86bb31e506e Mon Sep 17 00:00:00 2001 From: ktel1218 Date: Mon, 29 Dec 2014 14:39:27 -0800 Subject: [PATCH 095/135] Needs review of changes to comments/instructions --- Exercise04/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise04/README.md b/Exercise04/README.md index 4bb4535..841795d 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -1,5 +1,5 @@ List Operations -=============== +============== ### A few things about lists From 9fb63341550f7dfac910bc21c8e9b3ca28e9ebe1 Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Tue, 30 Dec 2014 15:19:43 -0800 Subject: [PATCH 096/135] updating README with a stopping point. --- Exercise08/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Exercise08/README.md b/Exercise08/README.md index daef070..2963b68 100644 --- a/Exercise08/README.md +++ b/Exercise08/README.md @@ -97,6 +97,8 @@ Forsooth, or somesuch. ``` You can use any text as an input corpus, you might try [Project Gutenberg](http://www.gutenberg.org/) for some inspiration. +Once you've got your random text generator working to a somewhat sensible point, you're finished! Please pause, and procure a code review. Then, read below for more challenges. + Extra Credit ------------ Do any of the following From c239b9ffffbcd783e419b4fcc0e82dfad0b14280 Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Tue, 6 Jan 2015 15:01:18 -0800 Subject: [PATCH 097/135] updating README for code review --- Hackbright-Curriculum/Exercise07/README.md | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 Hackbright-Curriculum/Exercise07/README.md diff --git a/Hackbright-Curriculum/Exercise07/README.md b/Hackbright-Curriculum/Exercise07/README.md new file mode 100644 index 0000000..7bbefc0 --- /dev/null +++ b/Hackbright-Curriculum/Exercise07/README.md @@ -0,0 +1,81 @@ +Exercise 7: Files and dicts +============================ + +Introduction +------------ +All of the material you need to complete this exercise has been covered previously, especially in [exercise 6](https://github.com/hackbrightacademy/Hackbright-Curriculum/tree/master/Exercise06). + +As a further hint, you may find the following methods useful: +```python +string.split() +string.strip() +dict.get() +dict.iteritems() +``` + +Problem Description +------------------- + +Write a program, wordcount.py, that opens a file named on the command +line and counts how many times each space-separated word occurs in +that file. Your program should then print those counts to the +screen. For example: + +inputfile.txt: +``` +As I was going to St. Ives +I met a man with seven wives +Every wife had seven sacks +Every sack had seven cats +Every cat had seven kits +Kits, cats, sacks, wives. +How many were going to St. Ives? +``` +Example output: +``` +$ python wordcount.py inputfile.txt +seven 4 +Kits, 1 +sack 1 +As 1 +kits 1 +Ives? 1 +How 1 +St. 2 +had 3 +sacks, 1 +to 2 +going 2 +was 1 +cats, 1 +wives 1 +met 1 +Every 3 +with 1 +man 1 +a 1 +wife 1 +I 2 +many 1 +cat 1 +Ives 1 +sacks 1 +wives. 1 +were 1 +cats 1 +``` + +We have provided a file 'twain.txt' for you to test your code on. + +Once you've finished, give your pairing partner a high-five, and then please get a code review. If you have time, read on to enter the bonus round. :boom: + + +Extra Credit +----------- +The output of your program is not as nice as it could be. Try to improve it: + +* Some words are counted separately due to punctuation. Remove punctuation so that they appear as the same word in the output. +* In the example above, 'Kits' and 'kits' are treated separately because they have different capitalization. Make all words lowercase so that capitalization doesn't matter. +* Sort the output from the highest frequency words to the lowest frequency words. +* Sort words having the same frequency alphabetically. + From f758d812608e93ba833cb27d693d920f1192024b Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Tue, 6 Jan 2015 15:14:26 -0800 Subject: [PATCH 098/135] updating README, adding stopping point --- Exercise07/README.md | 2 + Hackbright-Curriculum/Exercise07/README.md | 81 ---------------------- 2 files changed, 2 insertions(+), 81 deletions(-) delete mode 100644 Hackbright-Curriculum/Exercise07/README.md diff --git a/Exercise07/README.md b/Exercise07/README.md index a2fb307..42b9da7 100644 --- a/Exercise07/README.md +++ b/Exercise07/README.md @@ -67,6 +67,8 @@ cats 1 We have provided a file 'twain.txt' for you to test your code on. +Once you've finished, give your pairing partner a high-five, and then please get a code review. If you have time, read on to enter the bonus round. :boom: + Extra Credit ----------- The output of your program is not as nice as it could be. Try to improve it: diff --git a/Hackbright-Curriculum/Exercise07/README.md b/Hackbright-Curriculum/Exercise07/README.md deleted file mode 100644 index 7bbefc0..0000000 --- a/Hackbright-Curriculum/Exercise07/README.md +++ /dev/null @@ -1,81 +0,0 @@ -Exercise 7: Files and dicts -============================ - -Introduction ------------- -All of the material you need to complete this exercise has been covered previously, especially in [exercise 6](https://github.com/hackbrightacademy/Hackbright-Curriculum/tree/master/Exercise06). - -As a further hint, you may find the following methods useful: -```python -string.split() -string.strip() -dict.get() -dict.iteritems() -``` - -Problem Description -------------------- - -Write a program, wordcount.py, that opens a file named on the command -line and counts how many times each space-separated word occurs in -that file. Your program should then print those counts to the -screen. For example: - -inputfile.txt: -``` -As I was going to St. Ives -I met a man with seven wives -Every wife had seven sacks -Every sack had seven cats -Every cat had seven kits -Kits, cats, sacks, wives. -How many were going to St. Ives? -``` -Example output: -``` -$ python wordcount.py inputfile.txt -seven 4 -Kits, 1 -sack 1 -As 1 -kits 1 -Ives? 1 -How 1 -St. 2 -had 3 -sacks, 1 -to 2 -going 2 -was 1 -cats, 1 -wives 1 -met 1 -Every 3 -with 1 -man 1 -a 1 -wife 1 -I 2 -many 1 -cat 1 -Ives 1 -sacks 1 -wives. 1 -were 1 -cats 1 -``` - -We have provided a file 'twain.txt' for you to test your code on. - -Once you've finished, give your pairing partner a high-five, and then please get a code review. If you have time, read on to enter the bonus round. :boom: - - -Extra Credit ------------ -The output of your program is not as nice as it could be. Try to improve it: - -* Some words are counted separately due to punctuation. Remove punctuation so that they appear as the same word in the output. -* In the example above, 'Kits' and 'kits' are treated separately because they have different capitalization. Make all words lowercase so that capitalization doesn't matter. -* Sort the output from the highest frequency words to the lowest frequency words. -* Sort words having the same frequency alphabetically. - From a94416878b302d36a0d6c67c93f8a7c36fecf1d4 Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Tue, 6 Jan 2015 15:19:43 -0800 Subject: [PATCH 099/135] updating README --- Exercise06/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 01323d7..30d8f28 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -120,13 +120,13 @@ The loop variable ```line``` will store each line of the file in turn. -Description +Codin' time ------- In this directory, you will find a text file, ```scores.txt```, containing a series of local restaurant ratings. Each line looks like this: ``` Restaurant Name:Rating ``` -Your job is to write a program named ```'sorted_data.py'``` reads the file, then spits out the ratings in alphabetical order by restaurant +Your job is to write a program named ```'sorted_data.py'``` reads the file, then spits out the ratings in alphabetical order by restaurant. Sample output: ``` @@ -144,3 +144,4 @@ Restaurant 'Pancho Villa' is rated at 3. Restaurant 'Taqueria Cancun' is rated at 2. Restaurant 'Urbun Burger' is rated at 1. ``` +When you're finished, please get a code review from one of your friendly neighborhood instructors/TAs. From c77064715cc36b714af25eeea17d3d7b49744ad1 Mon Sep 17 00:00:00 2001 From: Heather Bryant Date: Mon, 12 Jan 2015 12:11:44 -0800 Subject: [PATCH 100/135] Update README.md Removed link from [remote name] where there wasn't supposed to be one. --- Exercise02/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index cc5f2ee..91cfb99 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -164,7 +164,7 @@ Now we have a remote - this is like a portal that goes to whatever URL we point git push [remote name] master -Replace [remote name] (no square brackets) with the name you used when you added the remote. You might wonder about what "master" means - that's the name of the branch. For now, we'll have only one branch, so we'll always type master there. In the Further Reading section, there's some information about branching. +Replace \[remote name\] (no square brackets) with the name you used when you added the remote. You might wonder about what "master" means - that's the name of the branch. For now, we'll have only one branch, so we'll always type master there. In the Further Reading section, there's some information about branching. Once you've typed the "git push" command, git will ask you for a username - this is the username you signed up with github under. Then, it will ask for a password. When you type, you may be used to seeing asterisks(*) appear, but nothing will show up instead of just displaying your password for the world to see - so don't worry about typing it in in front of your partner. From 8dc5b3f4d3a16bf707da90ca87777f2bf809c227 Mon Sep 17 00:00:00 2001 From: rhythmsection Date: Mon, 12 Jan 2015 15:56:44 -0800 Subject: [PATCH 101/135] Update README.md --- Exercise04/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise04/README.md b/Exercise04/README.md index 841795d..501e499 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -49,9 +49,9 @@ Each function in `test_list_operations.py` (which I will now refer to as a test) 1. Gets some sample data (initialized in `setUp()` and passed in to each function with `self` -- more on this on a later date) 2. Sends the sample data through a `list_operations.py` function (there's one test function for each regular function) 3. Defines what the correct output for each function should be based on the input -4. Tests whether the result of the `list_operations.py` function matches the expected input ( it assertsEqual-ity ) +4. Tests whether the result of the `list_operations.py` function matches the expected input ( it asserts equality ) -If all of the asserted equalness turns out true, then your test passes. If any of them fails, your test fails. +If all of the asserted equality turns out true, then your test passes. If any of them fails, your test fails. All of your tests failed because, obviously, there's nothing in any of your `list_operation` functions. So whatever your function returns (it returns nothing) doesn't match what the test expects (very specific things, including not nothing). For example: `test_1_A_head()` checks the function `head()` in `list_operations.py`. It asserts that the result of calling the function `head()` with the test data `months` should result in `'Jan'`. From fb68b5561e7c6755c0f6d3ddd29982ac6ea20bb6 Mon Sep 17 00:00:00 2001 From: rhythmsection Date: Mon, 12 Jan 2015 16:07:42 -0800 Subject: [PATCH 102/135] Update README.md --- Exercise06/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index 30d8f28..de8eb7d 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -126,7 +126,7 @@ In this directory, you will find a text file, ```scores.txt```, containing a ser ``` Restaurant Name:Rating ``` -Your job is to write a program named ```'sorted_data.py'``` reads the file, then spits out the ratings in alphabetical order by restaurant. +Your job is to write a program named ```'sorted_data.py'``` that reads the file, then spits out the ratings in alphabetical order by restaurant. Sample output: ``` From adc20725403bca7cfae4d3268720acb9a022432d Mon Sep 17 00:00:00 2001 From: Katie Lefevre Date: Mon, 12 Jan 2015 16:56:51 -0800 Subject: [PATCH 103/135] add code review after 4 problems --- Exercise04/list_operations.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index 1681ee9..92eded7 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -46,6 +46,11 @@ def init(input_list): """ pass +""" +Do yourself a favor and get a short code review here. +You can also get reviewed by a neighbor who has been reviewed. +""" + def first_three(input_list): """ Return the first three elements of the input list. From 930c3b618fdcb12811f615ed882eff2f01ad2430 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Tue, 13 Jan 2015 10:56:15 -0800 Subject: [PATCH 104/135] Update README.md --- Exercise01/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 56f82cc..45b3a74 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -90,6 +90,7 @@ A rough pseudocode outline of the program will look like this: else: congratulate player +**When you think you've finished, call an instructor over for a code review.** Version Control (git) ------- @@ -132,7 +133,7 @@ Often, you will explore an idea that didn't turn out the way you wanted it to, o *WARNING:* This will erase any changes you have not committed to git, so please use with care! -When you think you've finished, call an instructor over for a code review. + Extra Credit ------- From e9b8b9a3e32e481eb1099ce65289b9549ce964e3 Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Tue, 13 Jan 2015 12:04:23 -0800 Subject: [PATCH 105/135] clarifying instructions on README --- Exercise01/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 45b3a74..6637341 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -3,7 +3,7 @@ Exercise 01: Conditionals, variables Tutorials & Resources: ------- -Take a look at these online resources before you attempt this exercise. If you get stuck, check the work you've already completed. Do these before starting the exercise below. +Complete these practice exercises before you attempt this main portion of today's exercise. If you get stuck, check the work you've already completed. * http://learnpythonthehardway.org/book/ex6.html * http://learnpythonthehardway.org/book/ex7.html From 12e0e704ca00a237dadb37d2b054667f382a427e Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Tue, 13 Jan 2015 12:23:38 -0800 Subject: [PATCH 106/135] grammar fix --- Exercise01/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise01/README.md b/Exercise01/README.md index 6637341..029f1bc 100644 --- a/Exercise01/README.md +++ b/Exercise01/README.md @@ -3,7 +3,7 @@ Exercise 01: Conditionals, variables Tutorials & Resources: ------- -Complete these practice exercises before you attempt this main portion of today's exercise. If you get stuck, check the work you've already completed. +Complete these practice exercises before you attempt the main portion of today's exercise. If you get stuck, check the work you've already completed. * http://learnpythonthehardway.org/book/ex6.html * http://learnpythonthehardway.org/book/ex7.html From 66256b87c41cc2f5a5a07916ec663468acd2af03 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 14 Jan 2015 11:17:02 -0800 Subject: [PATCH 107/135] Update README.md --- Exercise02/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index 91cfb99..0ec947c 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -54,7 +54,7 @@ One way of thinking about it is like after-market parts for cars. As long as the Description ------- -We have provided a program, calculator.pyc that implements a basic prefix calculator. To download the file from github, click on the file, then click on "Raw" to download the file (the browser may place it in your Downloads folder). +We have provided a program, calculator.pyc that implements a basic prefix calculator. To download the file from github, click on the file, then click on "Raw" to download the file (the browser may place it in your Downloads folder). You will also need arithmetic.py. To download it, click on the filename above, then click "Raw". Then just do File->Save Page As in Chrome and put it in your project directory (i.e. don't work in your Downloads directory). You need both files in the same place to do this exercise. A pyc is a special python file. It's python code that has been "compiled" into machine code. You can still run the program, but you can't view the original source of the program. If you try and look at the file on your terminal (e.g. "cat calculator.pyc") you probably get a bunch of gross garbage outputted. That's okay, because the computer still knows how to run it. From df08c10406cc003f284bdd21dcc422b84326d85b Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 14 Jan 2015 11:21:42 -0800 Subject: [PATCH 108/135] Update README.md --- Exercise02/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Exercise02/README.md b/Exercise02/README.md index 0ec947c..628105d 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -121,6 +121,8 @@ We have provided a sample arithmetic.py with a function that matches the signatu Try running the program first to understand where and how it fails. Read the error messages, and try to fix it by addressing one error at a time. +**Once you have finished all the functions, call an instructor over for a code review.** + Version Control ------- From 1a831028d0b0e413b9e55d293fc4284f89e8aaeb Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 14 Jan 2015 11:29:18 -0800 Subject: [PATCH 109/135] Update README.md --- Exercise03/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Exercise03/README.md b/Exercise03/README.md index 7db97f4..44336ab 100644 --- a/Exercise03/README.md +++ b/Exercise03/README.md @@ -80,6 +80,8 @@ The psuedocode for our REPL will look like this: Description ------- +Now that we've finished our aritmetic functions in Exercise 2, we're going to implement the calculator. You will eventually need to copy your arithmetic.py file from Exercise 2 as you implement your own calculator, but you can use the one provided for now if you like. Do Exercise 3 in a separate directory so you get practice with creating and pushing repos. You can download your starting point for calculator.py by clicking on the filename, opening the Raw version and doing a File->Save Page As in Chrome. + Implement a REPL for a calculator in a file named 'calculator.py'. Your calculator will use the interface from the previous exercise: In the file arithmetic.py, these function signatures are required From 1bef6055209adbf62b2e67e8086e5d30ed9f996d Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 14 Jan 2015 12:27:31 -0800 Subject: [PATCH 110/135] Update README.md --- Exercise03/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Exercise03/README.md b/Exercise03/README.md index 44336ab..93e944d 100644 --- a/Exercise03/README.md +++ b/Exercise03/README.md @@ -135,3 +135,4 @@ Meringue:math chriszf$ ``` We have provided a sample arithmetic.py with dummy stubs that do the wrong thing. When you've completed your REPL, copy your completed arithmetic.py from the previous exercise to the current directory and replace our stubs. +Don't forget to ask for a code review when you think you are finished. From 1f42b793d9d1bcb7a82cdb2e06f853e2d28554ab Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 14 Jan 2015 16:24:56 -0800 Subject: [PATCH 111/135] Update README.md --- Exercise02/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise02/README.md b/Exercise02/README.md index 628105d..cc5aea9 100644 --- a/Exercise02/README.md +++ b/Exercise02/README.md @@ -104,8 +104,8 @@ A sample session of the calculator looks like this: 5 > * 2 3 6 - > / 6 2 - 3.000000 + > / 7 2 + 3.500000 > square 2 4 > cube 3 From ec01b7cfadcb1b51a99218927a3c80b00ef4dd77 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Wed, 14 Jan 2015 16:25:23 -0800 Subject: [PATCH 112/135] Update README.md --- Exercise03/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise03/README.md b/Exercise03/README.md index 93e944d..357dd92 100644 --- a/Exercise03/README.md +++ b/Exercise03/README.md @@ -120,8 +120,8 @@ Meringue:math chriszf$ python calculator.py 5 > * 2 3 6 -> / 6 2 -3.000000 +> / 7 2 +3.500000 > square 2 4 > cube 3 From 5e84cd592a8e2f96e17aef5065a76edbf318a5b5 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 15 Jan 2015 10:14:51 -0800 Subject: [PATCH 113/135] Update calculator.py --- Exercise03/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise03/calculator.py b/Exercise03/calculator.py index d04982f..cb37d64 100644 --- a/Exercise03/calculator.py +++ b/Exercise03/calculator.py @@ -4,7 +4,7 @@ Using our arithmetic.py file from Exercise02, create the calculator program yourself in this file. """ - +from arithmetic import * def main(): # Your code goes here From 5a387e1c99c51a87a1222b9c8a5135a5d84ee4ec Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 15 Jan 2015 15:00:23 -0800 Subject: [PATCH 114/135] Added note about not using built in list methods --- Exercise04/list_operations.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index 92eded7..a3163cf 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -16,6 +16,8 @@ In this section you will implement functions that each use just one of the operations. The docstring of each function describes what it should do. Consult test_list_operations.py for concrete examples of the expected function behavior. + +DO NOT USE ANY OF THE BUILT IN LIST METHODS """ def head(input_list): @@ -225,4 +227,4 @@ def custom_equality(some_list, another_list): """ Part 2 is finished! Required: Ask for a code review. Optional: High-Five -""" \ No newline at end of file +""" From e7f3ddfd8b4adba3aeb03652569b7eabb8905d98 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 15 Jan 2015 15:16:45 -0800 Subject: [PATCH 115/135] More clarity in instructions, I hope. --- Exercise04/list_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index a3163cf..de00406 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -13,7 +13,7 @@ * List index deletion (del some_list[index]) * List slicing deletion (del some_list[start:end]) -In this section you will implement functions that each use just one of the +In this section you will implement functions that each use just one of the above operations. The docstring of each function describes what it should do. Consult test_list_operations.py for concrete examples of the expected function behavior. From 3a649f2c0cd582eb48f7db029e0bea32ff09202e Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 15 Jan 2015 15:19:27 -0800 Subject: [PATCH 116/135] Added more/clearer instructions in the GO section --- Exercise04/README.md | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/Exercise04/README.md b/Exercise04/README.md index 501e499..7999c4f 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -16,7 +16,7 @@ First, work through the following resources on lists: ### A few things about tests -#### Some background reading: +#### Some background reading (just read, don't do): http://learnpythonthehardway.org/book/ex47.html @@ -74,5 +74,38 @@ Ran 25 tests in 0.002s OK ``` +#### Part 1: Fundamental operations on lists + +The fundamental operations on lists in Python are those that are part of the +language syntax and/or cannot be implemented in terms of other list operations: +* List literals (`[]`, `['hello']`, `[3, 1, 4, 1, 5, 9]`, etc.) +* List indexing (`some_list[index]`) +* List indexing assignment (`some_list[index] = value`) +* List slicing (`some_list[start:end]`) +* List slicing assignment (`some_list[start:end] = another_list`) +* List index deletion (`del some_list[index]`) +* List slicing deletion (`del some_list[start:end]`) + +In this section you will implement functions that each use just one of the above +operations. The docstring of each function describes what it should do. Consult +`test_list_operations.py` for concrete examples of the expected function behavior. + +**DO NOT USE ANY OF THE BUILT IN LIST METHODS** + +**GET A CODE REVIEW BEFORE MOVING ON TO PART 2** + +#### Part 2: Derived operations on lists + +In this section you will implement your own versions of the standard list methods. +You should use only the primitive operations from Part 1 and 2 in your implementations. +For loops are also allowed, such as the following: +``` +for element in some_list: + # Do something with element +``` +Each custom method imitates a built-in list method, as described by the docstring +for each function. Play with the built-in methods in the Python REPL to get a feel +for how they work before trying to write your custom version. You may also look at +the test_list_operations.py file for concrete examples of expected behavior. -[](http://bit.ly/1k2hxUv) +**Don't forget to get a code review when you think you're finished** From f437727c606f1635e63f53df5251de83fc8950af Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 15 Jan 2015 15:26:38 -0800 Subject: [PATCH 117/135] Added no len(l) --- Exercise04/list_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index de00406..32c5ec7 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -17,7 +17,7 @@ operations. The docstring of each function describes what it should do. Consult test_list_operations.py for concrete examples of the expected function behavior. -DO NOT USE ANY OF THE BUILT IN LIST METHODS +DO NOT USE ANY OF THE BUILT IN LIST METHODS, OR len(l) """ def head(input_list): From b91277df1784f7cbf39f9fde2b52a9e036762940 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 15 Jan 2015 15:28:00 -0800 Subject: [PATCH 118/135] Update README.md --- Exercise04/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Exercise04/README.md b/Exercise04/README.md index 7999c4f..0ea544e 100644 --- a/Exercise04/README.md +++ b/Exercise04/README.md @@ -92,6 +92,8 @@ operations. The docstring of each function describes what it should do. Consult **DO NOT USE ANY OF THE BUILT IN LIST METHODS** +**DO NOT USE `len(l)`** + **GET A CODE REVIEW BEFORE MOVING ON TO PART 2** #### Part 2: Derived operations on lists From 2d48fd6f73ce05e74a78e40d334980ad98c5d1ea Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Thu, 15 Jan 2015 17:07:59 -0800 Subject: [PATCH 119/135] Fixed inner_four_end example --- Exercise04/list_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise04/list_operations.py b/Exercise04/list_operations.py index 32c5ec7..dee7e9c 100644 --- a/Exercise04/list_operations.py +++ b/Exercise04/list_operations.py @@ -86,7 +86,7 @@ def inner_four_end(input_list): """ Return the sixth, fifth, fourth, and third elements from the end of the list, in that order. - [ A, B, C, D, E, F, G ] --> [ F, E, D, C ] + [ A, B, C, D, E, F, G, H, I, J, K, L] --> [ G, H, I, J ] """ pass From aab2a0ccc0ca84c04f70684bb706d9a4f5294551 Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Fri, 16 Jan 2015 15:49:15 -0800 Subject: [PATCH 120/135] missing "returns" in long_words() --- skills1/skills1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills1/skills1.py b/skills1/skills1.py index eb6a068..b545576 100644 --- a/skills1/skills1.py +++ b/skills1/skills1.py @@ -11,7 +11,7 @@ def all_odd(number_list): def all_even(number_list): return [] -# Write a function that takes a list of strings and a new list with all strings of length 4 or greater. +# Write a function that takes a list of strings and returns a new list with all strings of length 4 or greater. def long_words(word_list): return [] From 00e4f49eb145d5dccc8580a049154a9f2c044efe Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Tue, 20 Jan 2015 11:29:01 -0800 Subject: [PATCH 121/135] Update README.md --- Exercise06/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise06/README.md b/Exercise06/README.md index de8eb7d..fb7b318 100644 --- a/Exercise06/README.md +++ b/Exercise06/README.md @@ -87,10 +87,10 @@ and value elements of each dictionary entry in turn. ###Dictionary Exercises (do these first): -* http://learnpythonthehardway.org/book/ex39.html (Stop at "Making Your Own Dictionary Modules") +* http://learnpythonthehardway.org/book/ex39.html **(Stop at "Making Your Own Dictionary Modules")** * http://docs.python.org/tutorial/datastructures.html#dictionaries * http://www.learnpython.org/en/Dictionaries -* http://docs.python.org/library/stdtypes.html#mapping-types-dict +* http://docs.python.org/library/stdtypes.html#mapping-types-dict (Read. Familiarize, not memorize.) From 728313a83dc370027a931e3f2369ecb8449df30b Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Thu, 22 Jan 2015 12:25:56 -0800 Subject: [PATCH 122/135] Add Classes exercise --- Exercise-Classes/README.rst | 376 +++++++++++++++++++++++++++++++++++ Exercise-Classes/__init__.py | 0 Exercise-Classes/answer.py | 106 ++++++++++ Exercise-Classes/data.py | 17 ++ Exercise-Classes/rubric.rst | 297 +++++++++++++++++++++++++++ 5 files changed, 796 insertions(+) create mode 100644 Exercise-Classes/README.rst create mode 100644 Exercise-Classes/__init__.py create mode 100644 Exercise-Classes/answer.py create mode 100644 Exercise-Classes/data.py create mode 100644 Exercise-Classes/rubric.rst diff --git a/Exercise-Classes/README.rst b/Exercise-Classes/README.rst new file mode 100644 index 0000000..3c170c0 --- /dev/null +++ b/Exercise-Classes/README.rst @@ -0,0 +1,376 @@ +==================== +Exercise for Classes +==================== + +Ubermelon sells different types of melons. The ways our melon prices and +availability vary can be: + +- The species (e.g., Watermelon versus Cantaloupe) + +- Whether this melon is imported or grown domestically. + +- The shape of this melon. Most melons are natural-shaped (often round or + bullet-shaped) but we also sells melons which have been grown to be square, + at a considerably higher price. + +- The season of the melons. + +Up until this point, we've kept data about the melons in a simple Python +file (``data.py``) which is a list of tuples of this information. + +Our salespeople use the following rules to determine the price of melons: + +- Normally, melons cost $5 + +- The base cost of Casabas and Ogens is $1/each more, though, as they're + harder to grow. + +- Imported melons cost 1.5 times as much as they otherwise would, because of + shipping cost. + +- Square melons cost 2 times as much as they otherwise would, because of the + much more intense effort to grow them. + +Right now, we've just had our salespeople look at the data file and figure out +how much a melon will cost by applying all of these rules to the melon. + +So, for example, an foreign-grown natural-shaped Christmas melon would +cost $5 * 1.5 (for being foreign-grown) = $7.50. A Casaba is $9 (base price $5 +plus $1 for being a Casba or Ogen, times 1.5 for being imported). + +We have some new challenges, though: some of our melons are +discounted for multiple purchases. Starting now, we're offering the following +discounts: + +- If you buy 3 or more Watermelons, you get all of them at 75% of what the + cost would otherwise be. So, determine the price for all of the Watermelons + someone wants and, if it's three melons or more, multiply that total by + 0.75. + +- If you buy 5 or more Cantaloupes, you get them all at half price (because, + really, who likes Cantaloupe *that much*?). + +Part I: Classes +=============== + +This is really a pain for our salespeople, and also makes it hard to get +data right for our web site. + +As we've been learning about classes, this seems like a great time to use +classes--since we're combining data *and* functionality. + +Look at our requirements: + +- Define a class for each melon type that we sell. + +- Add attributes for things like their name/color/shape/origin/seasons + +- Add a method with the following signature:: + + def get_price(qty): + """Determine price for this quantity of melons of this type. + + Return a float of the total price. + """ + + This way, we can ask each melon class how much `x` number melons of that + type should cost. + + Write the functionality to determine the price for each class of melon. + This will be different for our different types of melons, so this function + will be different, slightly, for each class you made. + +- You can test your code by going into the python console and interactively + playing with your classes. + + To do so:: + + $ python -i melons.py + + The "-i" command for Python means "run in the interpreter"--it runs your + Python module (file) and leaves you in the Python interpreter, so you can + test out your code. + + **Bonus idea:** try it as ``bpython -i``. Yay, code completion, docstrings, + and pretty colors! + + At this point, you should be able to try things like:: + + >>> w = Watermelon() + >>> w.get_price(2) + 10 + >>> w.get_price(3) + 11.25 + + (the latter price because of our special rule about discounts for quantity + purchases of Watermelons) + +When you've built these classes, please **stop and ask for a code review**. + + +Part II: Hierarchies +==================== + +Our CEO is always toying with changing the base price of melons from $5 to +something else, sometimes on a whimsical basis. + +Right now, you probably have code that looks like this:: + + class Watermelon(object): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = 5.0 * qty + if qty >= 3: + total = total * 0.75 + return total + +(and similar classes for all of the other melons) + +It would be a pain to change the base $5.00 cost of melons for each of the +melons by changing each class individually, though. + +You *could* make the base price come from a constant, like:: + + BASE_MELON_PRICE = 5.00 + + class Watermelon(object): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = BASE_MELON_PRICE * qty + if qty >= 3: + total = total * 0.75 + return total + + +That would make it easier to update--but it wouldn't be flexible enough for +our CEO. Sometimes the CEO talks about making the base price vary on dynamic +things, like the weather that day or the day of the week, or other things. +If we had to put that dynamic logic into each melon type class, we'd be +duplicating a lot of code--so even though it's $5 for now, we want to +plan ahead. + +We could solve this by making all of our melons subclass a common base class +(`Melon` might be a good name for this!), and they could get the base price +of melons by calling a method, `get_base_price()` on the parent `Melon` class. +For now, this ``get_base_price`` could just return 5--but we're creating a +"hook" where we could later do something smarter/more complex. + +That is, if you change the base price on the Melon class, all of your other +classes would still be able to get the newly-updated cost. + +When you've done this, please **stop and ask for a code review**. + + +Part III: Abstract Classes +========================== + +So, in the last part, you probably ended up with a parent class like:: + + class Melon(object): + def get_base_price(self): + return 5.00 + +and child classes like:: + + class Watermelon(Melon): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = self.get_base_price() * qty + if qty >= 3: + total = total * 0.75 + return total + +That's great. + +However, some of our other programmers didn't realize we couldn't sell +"plain melons" (ie, not of any particular species!) -- they would create +instances of the `Melon` class and try to get their price:: + + >>> melon = Melon() + >>> melon.get_price(5) + Traceback (most recent call last): + File "", line 1, in + AttributeError: Melon instance has no attribute 'get_price' + +How can we suggest to other programmers that they shouldn't ever directly +create instances of the base `Melon` class? + +There's a good naming convention for this. Go ahead and rename this class +and fix the code to use this naming convention (hint: read about how to do this kind of +replace-everywhere for Sublime! Good programmers are lazy). + +However, even with this name change, some of our programmers STILL are +trying to instantiate from this class (that is, make instances of this class). + +Think about a way you could prevent them from doing so. + +You could do this either by: + +- allowing them to make an instance of this class, but giving a better + error message when they try to call ``get_price(qty)`` on it (so you could + raise a message when ``get_price(qty)`` is called on the base class + directly). + +or + +- disallowing them from making an instance of this class at all. Is there + a method that is always called when an object is created? Can you raise + an error on the base class if you tried to make an instance directly from + it? + +Which of these options do you like better? + +Whichever you choose, learn how to "raise" an error ("exception") in Python. +You may find https://docs.python.org/2/library/exceptions.html helpful here. +Which of these errors sounds like it would be the most helpful/descriptive +to use? + +When you've done this, please **stop and ask for a code review**. + +BTW, notice how the Python exceptions are a hierarchy of classes-- +this let's you catch a general class of error or a very specific error, +depending on which is what you want. So you can say things like:: + + try: + 7 / 0 + except ZeroDivisonError: + print "You can't divide by zero!" + +or:: + + try: + 7 / 0 + except ArithmeticError: + print "You made some sort of mathy error" + +Depending on whether you want to handle zero-division distinctly or just like +other math errors. You could even write something like:: + + try: + 7 / 0 + except ZeroDivisonError: + print "You can't divide by zero!" + except ArithmeticError: + print "You made some sort of mathy error" + +Which would handle all cases, but handle zero-division separately. + +Pretty neat, huh? + +Part IV: Flexing Our Hierarchies +================================ + +Right now, you probably have code like:: + + class Watermelon(AbstractMelon): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = self.get_base_price() * qty + if qty >= 3: + total = total * 0.75 + return total + +That's fine, but we have a few things we can improve. + +Watermelons are our standard base price (except for quantity discounts) +since they're natural-shaped and domestically-grown. If our supplier for +Watermelons switched to being foreign-grown, we'd have to do two things: + +- change that attribute to ``imported = True`` + +- update our ``get_price(qty)`` method to multiply the final price by 1.5, + since that's our markup for imported watermelons + +It's easy to imagine that we'd do the first and forget to do the second. +Plus, even if we did, we'd be sprinkling the logic for this all over +the place. + +For example, we could do this:: + + class Watermelon(AbstractMelon): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = self.get_base_price() * qty + + if qty >= 3: + total = total * 0.75 + + if self.imported: + total = total * 1.5 + + return total + +And then we can't forget to update the price if the origin changes--but +we'd have a lot of duplicate code throughout. + +Better would be for our base class, ``AbstractMelon``, to handle much of +our price calculating, but for it to rely on the attributes set on the +individual melon type. + +In this ``get_price()`` for `AbstractMelon`, We'd need to get the "add-on" $1 +for Casaba and Ogen somehow, then the total based on shape/origin/quantity. +For Watermelons and Cantaloupe, we'll need to then apply our discounts. + +Create a method on the base class to handle this work. Where needed, +use that method from the individual melon classes. + +To do this, it's probably going to be helpful to put an attribute on the +the Casaba and Ogen class to keep track of their $1 base price bump; +your logic in the base class ``get_price()`` could use that. + +When you've done this, please **stop and ask for a code review**. + +Part IV: Is the Melon Available? +================================ + +*(This section is advanced and optional)* + +For availability, we keep track of the season that a melon is available for +purchase. We define these as: + +- Winter: Jan, Feb, Mar +- Spring: Apr, May, Jun +- Summer: Jul, Aug, Sep +- Fall: Oct, Nov, Dec + +Add a function onto our AbstractMelon class that tells us whether a +particular melon is available for sale today. + +To do this, you'll want to learn about the Python `datetime` library. This +has features to give you today's date, as well as ways to figure out the +month part of that. + +Create a function that returns `True` or `False` to let us know whether +this melon is available today. + +Advanced: Update this function to *optionally* take a date argument so +that, if one is given, we check for melon availability on that date. If +no argument is given, it should use today's date. This requires a little +clever thinking around optional arguments. + +When you've done this, please **stop and ask for a code review**. diff --git a/Exercise-Classes/__init__.py b/Exercise-Classes/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Exercise-Classes/answer.py b/Exercise-Classes/answer.py new file mode 100644 index 0000000..9d2af18 --- /dev/null +++ b/Exercise-Classes/answer.py @@ -0,0 +1,106 @@ + +# class Square(object): +# def get_price(self): +# return super(Square, self).get_price() * 2 + + +# class Round(object): +# pass + +class Melon(object): + base_price = price = 5.00 + def get_price(self, qty): + price = self.base_price + if self.is_imported == True: + price *= 1.5 + if self.shape == "square": + price *= 2 + return price * qty + + +# class Watermelon(object): +# species = "Watermelon" +# color = "green" +# imported = False +# shape = 'natural' +# seasons = ['Fall', 'Summer'] + +# def get_price(self, qty): +# return 5.0 * qty + + +class Watermelon(Melon): + color = 'green' + is_imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + +class Cantaloupe(Melon): + color = 'tan' + is_imported = False + shape = 'natural' + seasons = ['Spring', 'Summer'] + + def get_price(self, qty): + price = super(Cantaloupe, self).get_price(qty) + if qty >= 5: + return price / 2 + return price + + +class Casaba(Melon): + base_price = 6.00 + color = 'green' + is_imported = True + shape = 'natural' + seasons = ['Spring', 'Summer', 'Fall', 'Winter'] + + +class Sharlyn(Melon): + color = 'tan' + is_imported = True + shape = 'natural' + seasons = ['Summer'] + + +class SantaClaus(Melon): + color = 'green' + is_imported = True + shape = 'natural' + seasons = ['Winter', 'Spring'] + + +class Christmas(Melon): + color = 'green' + is_imported = False + shape = 'natural' + seasons = ['Winter'] + + +class HornedMelon(Melon): + color = 'yellow' + is_imported = True + shape = 'natural' + seasons = ['Summer'] + + +class Xigua(Melon): + color = 'black' + is_imported = True + shape = 'square' + seasons = ['Summer'] + +class Ogen(Melon): + base_price = 6.00 + color = 'tan' + is_imported = False + shape = 'natural' + seasons = ['Spring', 'Summer'] + +# class Squash(object): +# def get_price(self): +# return 2.50 + + + diff --git a/Exercise-Classes/data.py b/Exercise-Classes/data.py new file mode 100644 index 0000000..4802b7a --- /dev/null +++ b/Exercise-Classes/data.py @@ -0,0 +1,17 @@ +# Melons +# +# fields are: +# +# species, color, is-imported (else is domestic), shape, seasons + +melons = [ + ('Watermelon', 'green', False, 'natural', ['Fall', 'Summer']), + ('Cantaloupe', 'tan', False, 'natural', ['Spring', 'Summer']), + ('Casaba', 'green', True, 'natural', ['Spring', 'Summer', 'Fall', 'Winter']), + ('Sharlyn', 'tan', True, 'natural', ['Summer']), + ('Santa Claus', 'green', True, 'natural', ['Winter', 'Spring']), + ('Christmas', 'green', False, 'natural', ['Winter']), + ('Horned Melon', 'yellow', True, 'natural', ['Summer']), + ('Xigua', 'black', True, 'square', ['Summer']), + ('Ogen', 'tan', False, 'natural', ['Spring', 'Summer']) +] \ No newline at end of file diff --git a/Exercise-Classes/rubric.rst b/Exercise-Classes/rubric.rst new file mode 100644 index 0000000..3827ce9 --- /dev/null +++ b/Exercise-Classes/rubric.rst @@ -0,0 +1,297 @@ +=========================== +Rubric for Classes Exercise +=========================== + +Here are the expectations/suggestions for TAing the Classes Exercise. + +Part I +====== + +In this part, we want them to show that they can build standard classes. + +A good outcome would be a series of standalone classes, like:: + + class Watermelon(object): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = 5.0 * qty + if qty >= 5: + total = total * 0.75 + return total + + class Ogen(object): + species = "Ogen" + color = "tan" + imported = False + shape = 'natural' + seasons = ['Spring', 'Summer'] + + def get_price(self, qty): + total = 6.0 * qty + return total + + # rest of classes follow + +Things to look for: + +- Did they subclass ``object``? + +- **naming conventions**: are the class names in CamelCase? + +- Did they add the attributes for each melon type? Did they think to add + a "name" attribute? (If, point out how it might be hard to print the + name of the melon, especially for melons like 'Santa Claus', where the + name would look ugly if it was printed SantaClaus) + +- Did they remember to make Casaba and Ogen melons be $6 each? + +- Did they make the foreign melons cost 1.5 as much? + +- Did they make the square melons cost 2.0 as much? + +- Did they put in the quantity discounts for Watermelon (75% for 5+) and + for Cantaloupe (50% for 3+)? + + +Part II +======= + +The goal here is for them to end up with a `Melon` parent class with a +``get_base_price`` method, like this:: + + class Melon(object): + def get_base_price(self): + return 5.0 + +And then have the melon type classes use that:: + + class Watermelon(Melon): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = self.get_base_price() * qty + if qty >= 5: + total = total * 0.75 + return total + + class Ogen(Melon): + species = "Ogen" + color = "tan" + imported = False + shape = 'natural' + seasons = ['Spring', 'Summer'] + + def get_price(self, qty): + total = (self.get_base_price() + 1) * qty + return total + +Some things to look for: + +- Did they remember to have the melon type classes subclass Melon? + +- Did they remember to add $1 to the base cost for Ogen and Casaba? + + +Part III +======== + +The goal here is for them to understand that the Melon class is an +"abstract class" -- it shouldn't be instantiated directly. They also will +be learning about raising exceptions. + +This is often done with one or both of these methods: + +1. Name it something obvious ("BaseMelon" or "AbstractMelon") + +2. Prevent instantiation + +A good outcome could be:: + + class AbstractMelon(object): + """Common logic for all melons. + + Not meant to be instantiated directly. + """ + + def __init__(self): + raise NotImplementedError("Don't make instances of me") + + def get_base_price(self): + return 5.0 + +Alternatively, they could not block instantiation directly, but give an +error on calling ``get_price()``:: + + class AbstractMelon(object): + """Common logic for all melons. + + Not meant to be instantiated directly. + """ + + def get_base_price(self): + return 5.0 + + def get_price(self): + raise NotImplementedError("Can't use this directly") + +The first is a better outcome, though--it prevents trying to make instances +immediately, so you get an error earlier and a more obvious place. + +We also wanted them to discover NotImplementedError. They could raise this +either like this:: + + raise NotImplementedError + +or like this:: + + raise NotImplementedError("providing a string explanation here") + +The second is nice to learn, as it lets them provide some documentation for +their error. + +Part IV +======= + +The goal here is to move some of the common logic to the parent class, while +getting data from the subclass. + +A good outcome would be:: + + class AbstractMelon(object): + add_on = 0 + + def __init__(self): + raise NotImplementedError("Don't make instances of me") + + def get_base_price(self): + return 5.0 + + def get_price(self, qty): + each = self.get_base_price() + self.add_on + total = each * qty + + if self.imported: + total = total * 1.5 + + if self.shape == 'square': + total = total * 2 + + return total + + class Watermelon(AbstractMelon): + species = "Watermelon" + color = "green" + imported = False + shape = 'natural' + seasons = ['Fall', 'Summer'] + + def get_price(self, qty): + total = super(Watermelon, self).get_price(qty)) + if qty >= 5: + total = total * 0.75 + return total + + + class Ogen(AbstractMelon): + species = "Ogen" + color = "tan" + imported = False + shape = 'natural' + seasons = ['Spring', 'Summer'] + + add_on = 1 + +This may be hard for them to get through and may need hints, especially around +the ``add_on`` attribute. + +Some things to look for: + +- There's no need for them to define ``add_on`` on the melons that don't have + an add-on cost; they can put this on the `AbstractMelon` and inherit this + common class. + +- All of the logic of multiple-by-qty, adjust-for-origin, adjust-for-shape + should be in the parent ``get_price()`` + +- Are they calling ``super()`` properly? + +- There's no benefit (and it would be bad design) to put a superfluous + ``get_price()`` on the melons that don't need it (everything but + Casaba and Ogen); these melons should just inherit and use the + ``get_price()`` method. + +Part IV +======= + +This part is optional and is really here to just give advanced pairs something +to work on if they finish early. + +They'll need to get today's date and then check to see if we sell that +melon today:: + + class AbstractMelon(object): + # ... rest of class stays same + def available_now(self): + today = date.today() + month = today.month + + if month == 1 and 'Winter' in self.seasons: + return True + if month == 2 and 'Winter' in self.seasons: + return True + if month == 3 and 'Winter' in self.seasons: + return True + if month == 4 and 'Spring' in self.seasons: + return True + if month == 5 and 'Spring' in self.seasons: + return True + if month == 6 and 'Spring' in self.seasons: + return True + if month == 7 and 'Summer' in self.seasons: + return True + if month == 8 and 'Summer' in self.seasons: + return True + if month == 9 and 'Summer' in self.seasons: + return True + if month == 10 and 'Fall' in self.seasons: + return True + if month == 11 and 'Fall' in self.seasons: + return True + if month == 12 and 'Fall' in self.seasons: + return True + + return False + +(They could also handle that logic differently; the core parts are for them +to get the month and check the list of seasons.) + +For the advanced-advanced part, they'd need to default to today's date. +They might try something like:: + + def available_now(self, the_date=date.today()): + month = the_date.month + # ... rest of code here + +But, of course, Python doesn't allow dynamic function/method arguments (if it +did, that would be when the program started, which might be months from today +if this were a long-running web server!) + +Instead, they'll need to discover the idea of a "marker" argument. This might +require some cleverness and Googling and is pretty advanced:: + + def available_now(self, the_date=None): + if the_date is None: + the_date = date.today() + + month = the_date.month + # ... rest of code here + From a68eeadbed8901c89d44eda5a08504938abeea98 Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Thu, 22 Jan 2015 12:34:43 -0800 Subject: [PATCH 123/135] Add melons.py --- Exercise-Classes/README.rst | 4 +- Exercise-Classes/answer.py | 106 ------------------------------------ Exercise-Classes/melons.py | 3 + 3 files changed, 6 insertions(+), 107 deletions(-) delete mode 100644 Exercise-Classes/answer.py create mode 100644 Exercise-Classes/melons.py diff --git a/Exercise-Classes/README.rst b/Exercise-Classes/README.rst index 3c170c0..3892776 100644 --- a/Exercise-Classes/README.rst +++ b/Exercise-Classes/README.rst @@ -61,7 +61,9 @@ classes--since we're combining data *and* functionality. Look at our requirements: -- Define a class for each melon type that we sell. +- Define a class for each melon type that we sell. You should do this in + the ``melons.py`` file (which is empty at the beginning except for + a docstring). - Add attributes for things like their name/color/shape/origin/seasons diff --git a/Exercise-Classes/answer.py b/Exercise-Classes/answer.py deleted file mode 100644 index 9d2af18..0000000 --- a/Exercise-Classes/answer.py +++ /dev/null @@ -1,106 +0,0 @@ - -# class Square(object): -# def get_price(self): -# return super(Square, self).get_price() * 2 - - -# class Round(object): -# pass - -class Melon(object): - base_price = price = 5.00 - def get_price(self, qty): - price = self.base_price - if self.is_imported == True: - price *= 1.5 - if self.shape == "square": - price *= 2 - return price * qty - - -# class Watermelon(object): -# species = "Watermelon" -# color = "green" -# imported = False -# shape = 'natural' -# seasons = ['Fall', 'Summer'] - -# def get_price(self, qty): -# return 5.0 * qty - - -class Watermelon(Melon): - color = 'green' - is_imported = False - shape = 'natural' - seasons = ['Fall', 'Summer'] - - -class Cantaloupe(Melon): - color = 'tan' - is_imported = False - shape = 'natural' - seasons = ['Spring', 'Summer'] - - def get_price(self, qty): - price = super(Cantaloupe, self).get_price(qty) - if qty >= 5: - return price / 2 - return price - - -class Casaba(Melon): - base_price = 6.00 - color = 'green' - is_imported = True - shape = 'natural' - seasons = ['Spring', 'Summer', 'Fall', 'Winter'] - - -class Sharlyn(Melon): - color = 'tan' - is_imported = True - shape = 'natural' - seasons = ['Summer'] - - -class SantaClaus(Melon): - color = 'green' - is_imported = True - shape = 'natural' - seasons = ['Winter', 'Spring'] - - -class Christmas(Melon): - color = 'green' - is_imported = False - shape = 'natural' - seasons = ['Winter'] - - -class HornedMelon(Melon): - color = 'yellow' - is_imported = True - shape = 'natural' - seasons = ['Summer'] - - -class Xigua(Melon): - color = 'black' - is_imported = True - shape = 'square' - seasons = ['Summer'] - -class Ogen(Melon): - base_price = 6.00 - color = 'tan' - is_imported = False - shape = 'natural' - seasons = ['Spring', 'Summer'] - -# class Squash(object): -# def get_price(self): -# return 2.50 - - - diff --git a/Exercise-Classes/melons.py b/Exercise-Classes/melons.py new file mode 100644 index 0000000..ec15736 --- /dev/null +++ b/Exercise-Classes/melons.py @@ -0,0 +1,3 @@ +"""This file should have our melon-type classes in it.""" + + From f7c3e8ad68e855f9bb00c82e028549d2a562b0db Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Fri, 23 Jan 2015 09:24:39 -0800 Subject: [PATCH 124/135] Switch to doctests --- skills2/skills2.py | 323 ++++++++++++++++++++++++++++++++++++--------- 1 file changed, 261 insertions(+), 62 deletions(-) diff --git a/skills2/skills2.py b/skills2/skills2.py index e732f78..dc5681f 100644 --- a/skills2/skills2.py +++ b/skills2/skills2.py @@ -1,75 +1,274 @@ -string1 = "I do not like green eggs and ham." -list1 = [2, 5, 12, 6, 1, -5, 8, 5, 6, -2, 2, 27] -list2 = [-5, 6, 4, 8, 15, 16, 23, 42, 2, 7] -words = ["I", "do", "not", "like", "green", "eggs", "and", "ham", "I", "do", "not", "like", "them", "Sam", "I", "am"] +#!/usr/bin/env python + + +"""Hackbright Skills 2: Python Data Structures. + +There are a bunch of functions in this file that are not written, but +have documentation strings that explain how they should work. Your job +is to edit this file to write the bodies of these functions. + +We expect that you will solve these problems using Python lists +and dictionaries. Some of these problems could be solved with Python +sets (a more advanced data type); if you've learned about sets, you +may use these here. + +This file uses "doctests"; the explanation of how the functions should +work contains examples just like you'd see in the Python interpreter. +The examples are actually run and tested when this file is ran. + +When you first run this test, it will show test failures for every +function--since the real functions haven't been written yet. As you +write the real functions, your test failure count will go down. + +At the point where you've completed this skills assessment, the +only output from this program would be: + + ** ALL TESTS PASSED. GOOD WORK! + +Good luck! """ -Write a function that takes a string and produces a dictionary with -all distinct elements as the keys, and the number of each element as -the value -Bonus: do the same for a file (i.e. twain.txt) -""" + def count_unique(string1): - pass + """Count unique words in a string. + + This function should take a single string and return a dictionary + that has all of the distinct words as keys, and the number of times + that word appears in the string. + + + For example: + + >>> print_dict(count_unique("each word appears once")) + {'appears': 1, 'each': 1, 'once': 1, 'word': 0} + + Words that appear more than once should be counted each time: + + >>> print_dict(count_unique("rose is a rose is a rose")) + {'a': 2, 'is': 2, 'rose': 3} + + It's fine to consider punctuation part of a word (e.g., a comma + at the end of a word can be counted as part of that word) and + to consider differently-capitalized words as different: + + >>> print_dict(count_unique("Porcupine see, porcupine do.")) + {'Porcupine': 1, 'do.': 1, 'porcupine': 1, 'see,': 1} + + """ + + return {} + -""" -Given two lists, (without using the keywords 'if __ in ____' or the method 'index') -return a list of all common items shared between both lists -""" def common_items(list1, list2): - pass + """Produce the set of common items in two lists. + + Given two lists, return a list of the common items shared between + the lists. + + IMPORTANT: you may not not 'if ___ in ___' or the method 'index'. + + + For example: + + >>> sorted(common_items([1, 2, 3, 4], [1, 2])) + [1, 2] + + If an item appears more than once in both lists, return it each + time: + + >>> sorted(common_items([1, 2, 3, 4], [1, 1, 2, 2])) + [1, 1, 2, 2] + + (And the order of which has the multiples shouldn't matter, either): + + >>> sorted(common_items([1, 1, 2, 2], [1, 2, 3, 4])) + [1, 1, 2, 2] + + """ + + return [] + + +def unique_common_items(list1, list2): + """Produce the set of *unique* common items in two lists. + + Given two lists, return a list of the *unique* common items shared between + the lists. + + IMPORTANT: you may not not 'if ___ in ___' or the method 'index'. + + + Just like `common_items`, this should find [1, 2]: + + >>> sorted(unique_common_items([1, 2, 3, 4], [1, 2])) + [1, 2] + + However, now we only want unique items, so for these lists, don't show + more than 1 or 2 once: + + >>> sorted(unique_common_items([1, 2, 3, 4], [1, 1, 2, 2])) + [1, 2] + + """ + + return [] -""" -Given two lists, (without using 'if __ in ____' or 'index') -return a list of all common items shared between both lists. This time, -use a dictionary as part of your solution. -""" -def common_items2(list1, list2): - pass -""" -Given a list of numbers, return list of number pairs that sum to zero -""" def sum_zero(list1): - pass + """Return list of x,y number pair lists from a list where x+y==0 + + Given a list of numbers, add up each individual pair of numbers. + Return a list of each pair of numbers that adds up to 0. + + + For example: + + >>> sort_pairs( sum_zero([1, 2, 3, -2, -1]) ) + [[-2, 2], [-1, 1]] + + This should always be a unique list, even if there are + duplicates in the input list: + + >>> sort_pairs( sum_zero([1, 2, 3, -2, -1, 1, 1]) ) + [[-2, 2], [-1, 1]] + + Of course, if there are two zeros to pair together, that's fine: + + >>> sort_pairs( sum_zero([1, 2, 3, -2, -1, 1, 0, 1, 0]) ) + [[-2, 2], [-1, 1], [0, 0]] + + But one zero shouldn't be able to pair with itself: + + >>> sort_pairs( sum_zero([1, 2, 3, -2, -1, 1, 0, 1]) ) + [[-2, 2], [-1, 1]] + + """ + + return [] + -""" -Given a list of words, return a list of words with duplicates removed -""" def find_duplicates(words): - pass + """Given a list of words, return the list with duplicates removed. + + For example: + + >>> sorted(find_duplicates( + ... ["rose", "is", "a", "rose", "is", "a", "rose"])) + ['a', 'is', 'rose'] + + You should treat differently-capitalized words as different: + + >>> sorted(find_duplicates( + ... ["Rose", "is", "a", "rose", "is", "a", "rose"])) + ['Rose', 'a', 'is', 'rose'] + + """ + + return [] + -""" -Given a list of words, print the words in ascending order of length -Bonus: do it on a file instead of the list provided -Bonus: print the words in alphabetical order in ascending order of length -""" def word_length(words): - pass + """Given list of words, return list of ascending [(len, [words])]. -""" -Here's a table of English to Pirate translations -English Pirate - -sir matey -hotel fleabag inn -student swabbie -boy matey -madam proud beauty -professor foul blaggart -restaurant galley -your yer -excuse arr -students swabbies -are be -lawyer foul blaggart -the th' -restroom head -my me -hello avast -is be -man matey - -Write a program that asks the user to type in a sentence and then -print the sentece translated to pirate. -""" + Given a list of words, return a list of tuples, ordered by word-length. + Each tuple should have two items--the length of the words for that + word-length, and the list of words of that word length. + + For example: + + >>> word_length(["ok", "an", "apple", "a", "day"]) + [(1, ['a']), (2, ['ok', 'an']), (3, ['day']), (5, ['apple'])] + + """ + + return [] + + +def adv_word_length_sorted_words(words): + """Given list of words, return list of ascending [(len, [sorted-words])]. + + Given a list of words, return a list of tuples, ordered by word-length. + Each tuple should have two items--the length of the words for that + word-length, and the list of words of that word length. The list of words + for that length should be sorted alphabetically. + + For example: + + >>> adv_word_length_sorted_words(["ok", "an", "apple", "a", "day"]) + [(1, ['a']), (2, ['an', 'ok']), (3, ['day']), (5, ['apple'])] + + """ + + return [] + + +def pirate_talk(phrase): + """Translate phrase to pirate talk. + + Given a phrase, translate each word to the Pirate-speak equivalent. + Words that cannot be translated into Pirate-speak should pass through + unchanged. Return the resulting sentence. + + Here's a table of English to Pirate translations: + + English Pirate + ---------- ---------------- + sir matey + hotel fleabag inn + student swabbie + boy matey + madam proud beauty + professor foul blaggart + restaurant galley + your yer + excuse arr + students swabbies + are be + lawyer foul blaggart + the th' + restroom head + my me + hello avast + is be + man matey + + For example: + + >>> pirate_talk("my student is not a man") + 'me swabbie be not a matey' + + You should treat words with punctuation as if they were different + words: + + >>> pirate_talk("my student is not a man!") + 'me swabbie be not a man!' + + """ + + return "" + + +############################################################################## +# END OF SKILLS TEST; YOU CAN STOP HERE. + + +def print_dict(d): + # This method is just used to print dictionaries in key-alphabetical + # order, and is only used for our documentation tests. You can ignore it. + if isinstance(d, dict): + print "{" + ", ".join("%r: %r" % (k, d[k]) for k in sorted(d)) + "}" + else: + print d + +def sort_pairs(l): + # Print sorted list of pairs where the pairs are sorted. This is used only + # for documenttion tests. You can ignore it. + return sorted(sorted(pair) for pair in l) + + +if __name__ == "__main__": + print + import doctest + if doctest.testmod().failed == 0: + print "** ALL TESTS PASSED. GOOD WORK!" + print From cbbea53695437080fb0d12d0d11e668db320664b Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Fri, 23 Jan 2015 09:27:44 -0800 Subject: [PATCH 125/135] Make sum_zero less restrictive. --- skills2/skills2.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/skills2/skills2.py b/skills2/skills2.py index dc5681f..4a1ee6d 100644 --- a/skills2/skills2.py +++ b/skills2/skills2.py @@ -132,16 +132,12 @@ def sum_zero(list1): >>> sort_pairs( sum_zero([1, 2, 3, -2, -1, 1, 1]) ) [[-2, 2], [-1, 1]] - Of course, if there are two zeros to pair together, that's fine: + Of course, if there are one or more zeros to pair together, + that's fine, too: >>> sort_pairs( sum_zero([1, 2, 3, -2, -1, 1, 0, 1, 0]) ) [[-2, 2], [-1, 1], [0, 0]] - But one zero shouldn't be able to pair with itself: - - >>> sort_pairs( sum_zero([1, 2, 3, -2, -1, 1, 0, 1]) ) - [[-2, 2], [-1, 1]] - """ return [] From 14ded1e8bde592413f892cbb44ba60e8fd5ba380 Mon Sep 17 00:00:00 2001 From: Meggie Mahnken Date: Fri, 23 Jan 2015 16:02:44 -0800 Subject: [PATCH 126/135] fixing typo in count_unique test --- skills2/skills2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills2/skills2.py b/skills2/skills2.py index 4a1ee6d..b458cf1 100644 --- a/skills2/skills2.py +++ b/skills2/skills2.py @@ -40,7 +40,7 @@ def count_unique(string1): For example: >>> print_dict(count_unique("each word appears once")) - {'appears': 1, 'each': 1, 'once': 1, 'word': 0} + {'appears': 1, 'each': 1, 'once': 1, 'word': 1} Words that appear more than once should be counted each time: From de9a191e214ebe2723a0c0fc360190abdca85f72 Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Fri, 23 Jan 2015 23:22:14 -0800 Subject: [PATCH 127/135] Fix bug in skills2 doctest --- skills2/skills2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills2/skills2.py b/skills2/skills2.py index 4a1ee6d..b458cf1 100644 --- a/skills2/skills2.py +++ b/skills2/skills2.py @@ -40,7 +40,7 @@ def count_unique(string1): For example: >>> print_dict(count_unique("each word appears once")) - {'appears': 1, 'each': 1, 'once': 1, 'word': 0} + {'appears': 1, 'each': 1, 'once': 1, 'word': 1} Words that appear more than once should be counted each time: From 96b299d9e10ff39a7034dd32f317ce46219139e4 Mon Sep 17 00:00:00 2001 From: cdueltgen Date: Mon, 26 Jan 2015 12:45:52 -0800 Subject: [PATCH 128/135] added Forms exercise --- Forms/README.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++++ Forms/form.png | Bin 0 -> 134181 bytes 2 files changed, 51 insertions(+) create mode 100644 Forms/README.md create mode 100644 Forms/form.png diff --git a/Forms/README.md b/Forms/README.md new file mode 100644 index 0000000..66a89bd --- /dev/null +++ b/Forms/README.md @@ -0,0 +1,51 @@ +# Your Mission + +Make a simple order form using tables and forms and submit it to a server. + +Your goal is to make something that looks like the screenshot below. An example can also be viewed here: https://ubermelon-order-form.herokuapp.com/ + +## Specifications + +### Header + +The header should have a title: "Ubermelon Order Form" + +### Body + +#### h1 element + +The command "Order!" is in an h1 tag. + +#### Table + +* The table has a header that says "Prices" +* The table has two columns, the Melon Name and Price per lb. +* The names and prices of the melons are in the screengrab + +#### Text + +The "Place your orders here! You know you want to." is in a paragraph. + +#### Form + +* First Name is a text input, with a name of "firstname" +* Last Name is a text input, with a name of "lastname" +* Use the correct accessibility syntax for the text inputs, with a "label for" and "id" +* Melon Type is a dropdown with name "melontype" +* The types of melons are: watermelon, honeydew, canteloupe, crenshaw, canary +* Quantity is a text input with name of "quantity" +* Delivery Time is a radio button with name "time" +* Delivery Time has values of "am", "pm", and "wat" +* Returning Customer is a radio button and values of "yes" and "no" +* Statistics is a checkbox with name "stats" and values of "Dog", "Cat", "Hedgehog", "Balloonicorn", and "Yak" +* The sumbit button is of type "submit" +* The form action should go to: "https://ubermelon-order-form.herokuapp.com/process" +* You can use either a GET or POST request. Try them both! + +#### Footer + +The disclaimer about the quantities is in a footer tag. + +## Screenshot + +[form screen](form.png) diff --git a/Forms/form.png b/Forms/form.png new file mode 100644 index 0000000000000000000000000000000000000000..021f3720e338cd31569b55a74fe1e24764796c3f GIT binary patch literal 134181 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 literal 0 HcmV?d00001 From 37f5f9702212528e7008b0749efebfdeebe48c7a Mon Sep 17 00:00:00 2001 From: Cynthia D Date: Mon, 26 Jan 2015 12:51:49 -0800 Subject: [PATCH 129/135] Update README.md --- Forms/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Forms/README.md b/Forms/README.md index 66a89bd..912e7fa 100644 --- a/Forms/README.md +++ b/Forms/README.md @@ -4,6 +4,8 @@ Make a simple order form using tables and forms and submit it to a server. Your goal is to make something that looks like the screenshot below. An example can also be viewed here: https://ubermelon-order-form.herokuapp.com/ +You can open a file in Chrome by using File->Open and navigating to your form.html. + ## Specifications ### Header @@ -48,4 +50,8 @@ The disclaimer about the quantities is in a footer tag. ## Screenshot -[form screen](form.png) +![form screen](form.png?raw=true) + +### Extra credit + +Make other form fields and submit them. See what happens. From cf3c3a08666650d4098817410320db96835848ba Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Fri, 30 Jan 2015 11:31:06 -0800 Subject: [PATCH 130/135] Add skills-javascript. --- skills-javascript/rubric.js | 271 ++++++++++++ skills-javascript/skills-javascript.html | 511 +++++++++++++++++++++++ 2 files changed, 782 insertions(+) create mode 100644 skills-javascript/rubric.js create mode 100644 skills-javascript/skills-javascript.html diff --git a/skills-javascript/rubric.js b/skills-javascript/rubric.js new file mode 100644 index 0000000..fdc7dcd --- /dev/null +++ b/skills-javascript/rubric.js @@ -0,0 +1,271 @@ +'use strict'; + +// Make an Event Handler + +// The goal here is for them to make a simple event handler +// and use the alert() method + +function alertMe() { + alert("Hi!"); +} +var button = document.getElementById('popup-alert-button'); +button.addEventListener('click', alertMe); + +// It would also be fine if they used an inline function express here: +// +// button.addEventListener('click', function () { alert("Hi!"); } + + + + + +// Manipulating the DOM + +// The goal here is for them to learn about or use innerText or or innerHTML + +function changeText() { + document.getElementById('message-to-change').innerText = 'goodbye'; +} +document.getElementById('change-hello-to-goodbye-button').addEventListener( + 'click', changeText); + + + + +// Preventing Form Submission + +// The goal here is for them to remember the event.preventDefault method. +// A secondary goal is for them to attach to the form's submit method, rather +// than the button's click method--otherwise, pressing ENTER in the form field +// will submit the form and they won't catch it! + +function alertMeAlso(evt) { + evt.preventDefault(); + alert("Phew! No submit!"); +} + +document.getElementById('prevent-form-submission-form').addEventListener( + 'submit', alertMeAlso); + + + + +// Finding the Button + +// The goal here is for them to use the right DOM method to get the items by +// class and then to index that, since it will always be a list + +function alertMeThree() { + alert("Ok, you found it!"); +} + +document.getElementsByClassName('tricky-to-find')[0].addEventListener( + 'click', alertMeThree); + + + + +// Adding HTML + +// The goal here is for them to make a Javascript loop, build up a string, and +// manipulate the DOM. + +function makeTodoList() { + var list = ""; + + for (var i = 1; i < 11; i++) { + list = list + "
  • " + i + "
  • "; + } + + document.getElementById('empty-todo-list').innerHTML = list; +} + +document.getElementById('make-todo-list').addEventListener('click', makeTodoList); + + + +// Reversing a String + +// The goal here is to make a loop based on the length of the string and work +// backwards to make the new string. + +function reverseString() { + var msg = 'Porcupines are cute'; + var newMsg = ''; + + for (var i = msg.length - 1; i >= 0; i--) { + newMsg = newMsg + msg[i]; + } + + alert(newMsg); +} + +document.getElementById('reverse-string-button').addEventListener('click', reverseString); + + +// JQUERY + + + +// Down with Cats! + +function swapCat() { + $("#kittenz-rule").attr('src', 'http://www.alegoo.com/images05/animals/dogs-3/019/pictures-of-dogs-16.jpg'); +} + +$("#kittenz-rule").on('dblclick', swapCat); + + + + + +// Slowly Make a Porcupine + +function showPorcupine() { + $('#cute-porcupine-image').slideDown(2000); // 2000ms = 2 seconds +} + +function showPorcupineAfterASecond() { + setTimeout(showPorcupine, 1000); /// 1000ms = 1 second +} + +$('#make-a-porcupine').on('click', showPorcupineAfterASecond); + +// It would be very good for the students to realize, perhaps with some coaching, +// that it's a little silly to have 2 one-line functions that won't be used elsewhere, +// so this would be a good place to play with the inline function expressions: + +//$('#make-a-porcupine').on('click', +// function () { +// setTimeout( +// function () { +// $('#cute-porcupine-image').slideDown(2000); +// }, 1000 +// ) +// } +//); + + + + +// An Agreeable Form + +// The goal here is for them to learn about .val() and practice .text() + +function agree(evt) { + evt.preventDefault(); + var theirFood = $('#favorite-food-input').val(); + $('#agreeable-text').text("I like " + theirFood + ", too!"); +} + +$('#agreeable-form').on('submit', agree); + + + + + +// Number Guessing Game + +function playGame() { + var secretNumber = Math.floor(Math.random() * 99) + 1; + var theirGuess = null; + + while (theirGuess != secretNumber) { + theirGuess = parseInt(prompt("Guess my number")); + if (theirGuess > secretNumber) { + alert("You guessed too high!"); + } else if (theirGuess < secretNumber) { + alert ("You guessed too low!"); + } + } + + alert("You guessed it!"); +} + +$('#play-guessing-game').on('click', playGame); + + + + + +// Number Guessing Game #2 + +// Define this out here so we can get to it from each of our functions +var secretNumber; + +function playGame2() { + secretNumber = Math.floor(Math.random() * 99) + 1; + + // Enable the game inputs + $('#number-guessed').prop('disabled', false); + $('#try-this-number').prop('disabled', false); + + // Disable the play-game button until we win + $('#play-guessing-game-2').prop('disabled', true); +} + +function makeGuess(evt) { + evt.preventDefault(); + + // This is called when they submit the form + var theirGuess = parseInt($('#number-guessed').val()); + if (theirGuess < secretNumber) { + $("#number-guessing-msg").text("Too low!"); + } else if (theirGuess > secretNumber) { + $("#number-guessing-msg").text("Too high!"); + } else { + // Yay! They got it + $("#number-guessing-msg").text("You got it!"); + + // Disable the game inputs + $('#number-guessed').prop('disabled', true); + $('#try-this-number').prop('disabled', true); + + // Disable the play-game button until we win + $('#play-guessing-game-2').prop('disabled', false); + + } +} + +$('#play-guessing-game-2').on('click', playGame2); +$('#guessing-game-2-form').on('submit', makeGuess); + + + + +// Five colored primes + +function isPrime(x) { + // is X prime? + // + // We'll use the simply way to check this -- which is to divide it + // by all numbers less than sqrt(x) and see if it divides evenly + // (why sqrt? think about it!) + + for (var i = Math.floor(Math.sqrt(x)); i > 1; i--) { + if (x / i == Math.floor( x / i)) { + return false; + } + // We never found a divisor, so it's not prime + } + return true; +} + +function makePrimes() { + var num = 2; // find primes higher than 1 + var numFound = 0; + while (numFound < 5) { + if (isPrime(num)) { + $('#prime-box-area').append( + "
    " + + num + + "
    "); + numFound = numFound + 1; + } + num = num + 1; + } +} + +$('#make-prime-boxes').on('click', makePrimes); \ No newline at end of file diff --git a/skills-javascript/skills-javascript.html b/skills-javascript/skills-javascript.html new file mode 100644 index 0000000..ff56d30 --- /dev/null +++ b/skills-javascript/skills-javascript.html @@ -0,0 +1,511 @@ + + + + + Skills-Javascript + + + + +

    Skills—Javascript

    +

    + For each numbered problem, fill in the corresponding <script> section in the + source with Javascript to solve the problem.

    +

    + Note: you should only add Javascript; you cannot change the HTML otherwise at all. +

    + + + + + + + + +

    Plain Javacript

    +

    You may not use jQuery for this section!

    + + + + + +

    Making an Event Handler

    +

    + Make this button pop up an alert box in the + browser window. +

    + +
    + +
    + + + + + + + +

    Manipulating the DOM

    +

    Change the world "hello" to "goodbye" when the button is pressed.

    +

    (Don't get rid of the italics tag itself, though!)

    + +
    + hello + + +
    + + + +
    +
    + Don't know or don't remember how to change the text of an element you find in Javascript? + That's what the console.dir(object) feature is so useful for—it gives + you the complete list of properties/methods on an object! +
    +
    + + + + + +

    Preventing Form Submission

    +

    + Normally, for this form, it submits to some-script. Make it pop up an + alert box instead. +

    + +
    +
    + + +
    +
    + + + +
    +
    + Did you prevent the form submission by catching the button click? + What happens if you go into the text field and press ENTER? Is there a way you + can catch both with only one event listener? +
    +
    + + + + + + +

    Finding the Button

    +

    + When you click this button, pop up an alert box. Remember, you cannot change the HTML! +

    + +
    + +
    + + + +
    +
    + You can find things by class name—but then you get back an array. +
    +
    + + + + + + +

    Adding HTML

    +

    + There's an empty to-do list. When the button is pushed, add 10 items to it, + where each is the just the number, from + 1 to 10. Do this in a loop. +

    +

    When you're done, it should look like:

    +
      +
    • 1
    • +
    • 2
    • +
    • 3
    • +
    • 4
    • +
    • 5
    • +
    • 6
    • +
    • 7
    • +
    • 8
    • +
    • 9
    • +
    • 10
    • +
    + +
    +
      +
    + +
    + + + +
    +
    + You could built up a string of HTML and insert it at once into that ul. + How do you add HTML inside an element? Find out with console.dir(object)! +
    +
    + + + + + +

    Reversing a String

    +

    + There's some incomplete Javascript code below. When the button is pushed, it pops up an + alert box with a message. Reverse the order of the message, so "Porcupines are cute" would + become "etuc era senipucroP". You must do this reversal programmatically; you cannot just + type in the reversed string yourself! +

    + +
    + +
    + + + + + + + + +

    jQuery

    +

    You should use jQuery for these parts.

    +

    We didn't include jQuery in this document, though—so your first task is to include it!

    + + + + + +

    Down with Cats!

    +

    + After complaints from Cynthia about our cat-centered curriculum, you now need to change + the following image of a cat to one of a dog when you double-click on the cat + (you can Google for any cute dog photo you + want). Do this in jQuery. +

    + +
    + Adorbz +
    + + + +
    +
    + How do you change an attribute with jQuery? +
    +
    + + + + + +

    Slowly Make a Porcupine

    +

    + After complaints from Joel about the lack of cute porcupines in our exercises, + you're now tasked with having a cute porcupine appear when the button is pushed. +

    +

    However:

    +
      +
    • You must pause one second after the button is pushed for the image to appear
    • +
    • You should use a jQuery appear-via-animation method for this to appear. You can + try things like fadeIn or slideDown. For extra points, can you + make this animate itself happen slowly?
    • +
    + +
    + + + + + +
    +
    + You can make things happen after a second with setTimeout, a function + Javascript can always use when inside a browser. +
    +
    + + + + + +

    An Agreeable Form

    +

    + When the user submits the form below, it should fill in the div to agree with the + user. So if I saw my favorite food is "pretzels", a message should appear in that div + that says "I like pretzels, too." +

    + +
    +
    + What's your favorite food? + + +
    +
    +
    + + + +
    +
    + You're right—we didn't show you how to find the current value in an input field + using jQuery. Thank goodness for console.dir(object) or StackOverflow! +
    +
    + + + + + + +

    Advanced!

    +

    + Hey, we know you're smart and becoming a Javascript ninja. So we've given you these + exercises which are, frankly, really tough. Don't feel badly if you need to practice the + above a few times first, or need to get some hints or help here. They're trickier and + definitely take much longer. +

    +

    You can either do these with or without jQuery, as you please.

    +

    But, really, these are hard.

    + + + + +

    Number-Guessing Game

    +

    + Make the classic "guess-a-number-between-1-and-100" in Javascript. +

    +

    + The user starts the game by clicking the button. + This should then guess a random integer from 1 to 100 (StackOverflow is probably helpful here!). + It should then keep popping up a Javascript prompt box to ask for a number. + If you guess too high or too low, pop up an alert to say so. When the user gets the right + number, congratulate them in an alert box, and then stop prompting them for numbers (well, + at least until they press the button again!) +

    + +
    + +
    + + + +
    +
    + How do you turn the string "42" into the integer 42 in Javascript? I'll bet + StackOverflow knows! +
    +
    + + + + + + +

    Less Annoying Number-Guessing Game

    +

    + That was fun! But, wow, all those alerts and prompts are annoying, aren't they? +

    +

    + Write a new version that uses a simple form field for the number, and outputs the + too-high/too-low/just-right into the div next to it. +

    +

    + The game should start when they press the play button. Until they guess the right number, + though, that button should no longer work again. Similarly, the numbered-guessed field + and try-this-number button shouldn't be enabled if they're not playing. Tricky! +

    + +
    + +
    + + + +
    +
    +
    + + + + + + +

    Five Colored Primes

    +

    + When the button is pushed, five new boxes should appear in the bordered area. + (A prime number is an integer greater than 1 which cannot be divided evenly by any other + number other than itself and 1. For example, 11 is prime (you can only divide it by 1 and 11), + while 12 is not (you can divide it evenly by 2, 3, 4, and 6, along with 1 and 12). +

    +

    + Each box should contain the text of the next prime number. Each box should have a different + color, chosen from the list of colors in the Javascript. You can re-use our prime-box + class to make your numbers look like ours, if you want (or feel free to experiment with other + CSS). +

    +

    This should look like:

    +
    +
    2
    +
    3
    +
    5
    +
    7
    +
    11
    +
    +

    You must calculate the prime numbers; you cannot just type them in.

    + +
    +
    + +
    + + + + + + + +

    CSS Stuff

    +

    + This isn't so much of an exercise, but those of you interested in more intermediate/complex + CSS, take a look at the CSS we use on this page—it shows off some interesting pseudo-selectors + like :before and uses things like CSS numbering. Neat stuff. +

    + + + + + + + + + \ No newline at end of file From da7abf8c31ea4f91362e88689f645957e87eb0ae Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Fri, 30 Jan 2015 11:38:09 -0800 Subject: [PATCH 131/135] Fix missing bracket. --- skills-javascript/skills-javascript.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills-javascript/skills-javascript.html b/skills-javascript/skills-javascript.html index ff56d30..76f6810 100644 --- a/skills-javascript/skills-javascript.html +++ b/skills-javascript/skills-javascript.html @@ -312,7 +312,7 @@

    Slowly Make a Porcupine

    -
    - \ No newline at end of file + From 625f257f070ceaf2811dfcbdda4ea46b058ff601 Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Fri, 30 Jan 2015 22:36:35 -0800 Subject: [PATCH 134/135] Typo in isPrime comment --- skills-javascript/rubric.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills-javascript/rubric.js b/skills-javascript/rubric.js index fdc7dcd..6e97f0e 100644 --- a/skills-javascript/rubric.js +++ b/skills-javascript/rubric.js @@ -246,7 +246,7 @@ function isPrime(x) { if (x / i == Math.floor( x / i)) { return false; } - // We never found a divisor, so it's not prime + // We never found a divisor, so it's prime } return true; } From 51e6c5a641f12904535cbac4f2e38834deff9f7f Mon Sep 17 00:00:00 2001 From: Joel Burton Date: Thu, 8 Oct 2015 14:33:25 -0700 Subject: [PATCH 135/135] Update README.md --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a70f86c..e7eeae0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,3 @@ -![Logo](http://hb-website-assets-production.s3.amazonaws.com/assets/Hackbright-defd4deb316e265c983704d78e65f926.png) +THIS IS *NOT* THE HACKBRIGHT CURRICULUM. IT'S AN ARCHIVE OF OUR FORMER CURRICULUM. -Hackbright Curriculum -===================== - -Here you will find many of the exercises we will use during the first half of the Hackbright Academy 10-week Software Engineering Fellowship Program for Women. - -Our Curriculm continually evolves, so don't be surprised if you find material here that is extra or unused during the program. +(We keep this up for former students who may want to wax nostalgic on their experience or to find original copies of exercises they worked on)

    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°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�j>EmO!>lj$8CpYICzI$N|1T{BjRW+5Ev-p0* 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