Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix tiny gramatical error #7

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2280,9 +2280,9 @@ <h3>The Why of Z</h3>
<pre lang="z">
log("Hello World")
</pre>
<p>In more complex cases, there would be obvious reason to have modules, and a main function. But in simple cases, an imperative script would be easier. You'll encounter the this situation with many different constructs: there are times
<p>In more complex cases, there would be obvious reason to have modules, and a main function. But in simple cases, an imperative script would be easier. You'll encounter this situation with many different constructs: there are times
when loops make more sense than their recursive counterpart and when references are easier than pass-by-value.</p>
<p>Z is about letting you choose between functional and imperative, taking whichever one suits you current needs. If you look through the Z standard library, you'll see that it's predominantly functional on a line-by-line basis, but uses
<p>Z is about letting you choose between functional and imperative, taking whichever one suits your current needs. If you look through the Z standard library, you'll see that it's predominantly functional on a line-by-line basis, but uses
imperative constructs now and then.</p>
<p>Z is about balance. About equilibrium. About letting you create modules just for the fun of it. About letting you choose the paradigm best for the situation.</p>
</div>
Expand Down