mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
docs; formatting and tidying
- quick clean up pass on layout and colors for clarity/legibility - added logo to the sidebar - fix various css things like a full height page when content is shorter, so the footer doesn't creep away from the bottom - start using em instead of px for consistency across devices
This commit is contained in:
@ -554,5 +554,6 @@ base class constructor:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="concurrency.html">Concurrency →</a>
|
<a class="right" href="concurrency.html">Concurrency →</a>
|
||||||
<a href="functions.html">← Functions</a>
|
<a href="functions.html">← Functions</a>
|
||||||
|
|||||||
@ -181,5 +181,6 @@ functions, `transfer()` works more like an unstructured goto. It lets you freely
|
|||||||
switch control between a number of fibers, all of which act as peers to one
|
switch control between a number of fibers, all of which act as peers to one
|
||||||
another.
|
another.
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="error-handling.html">Error Handling →</a>
|
<a class="right" href="error-handling.html">Error Handling →</a>
|
||||||
<a href="classes.html">← Classes</a>
|
<a href="classes.html">← Classes</a>
|
||||||
|
|||||||
@ -240,5 +240,6 @@ The built-in [List](lists.html) and [Range](values.html#ranges) types implement
|
|||||||
`iterate()` and `iteratorValue()` to walk over their respective sequences. You
|
`iterate()` and `iteratorValue()` to walk over their respective sequences. You
|
||||||
can implement the same methods in your classes to make your own types iterable.
|
can implement the same methods in your classes to make your own types iterable.
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="variables.html">Variables →</a>
|
<a class="right" href="variables.html">Variables →</a>
|
||||||
<a href="method-calls.html">← Method Calls</a>
|
<a href="method-calls.html">← Method Calls</a>
|
||||||
|
|||||||
@ -168,5 +168,6 @@ For example, a method for parsing a number could return a number on success and
|
|||||||
`null` to indicate parsing failed. Since Wren is dynamically typed, it's easy
|
`null` to indicate parsing failed. Since Wren is dynamically typed, it's easy
|
||||||
and natural for a method to return different types of values.
|
and natural for a method to return different types of values.
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="modularity.html">Modularity →</a>
|
<a class="right" href="modularity.html">Modularity →</a>
|
||||||
<a href="concurrency.html">← Concurrency</a>
|
<a href="concurrency.html">← Concurrency</a>
|
||||||
|
|||||||
@ -163,5 +163,6 @@ to`i`:
|
|||||||
System.print(counter.call()) //> 2
|
System.print(counter.call()) //> 2
|
||||||
System.print(counter.call()) //> 3
|
System.print(counter.call()) //> 3
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="classes.html">Classes →</a>
|
<a class="right" href="classes.html">Classes →</a>
|
||||||
<a href="variables.html">← Variables</a>
|
<a href="variables.html">← Variables</a>
|
||||||
|
|||||||
@ -1,7 +1,9 @@
|
|||||||
^title Welcome
|
^title
|
||||||
|
|
||||||
## Wren is a small, fast, class-based concurrent scripting language
|
## Wren is a small, fast, class-based concurrent scripting language
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in
|
Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in
|
||||||
a familiar, modern [syntax][].
|
a familiar, modern [syntax][].
|
||||||
|
|
||||||
@ -20,6 +22,7 @@ a familiar, modern [syntax][].
|
|||||||
|
|
||||||
while (!adjectives.isDone) System.print(adjectives.call())
|
while (!adjectives.isDone) System.print(adjectives.call())
|
||||||
|
|
||||||
|
|
||||||
* **Wren is small.** The VM implementation is under [4,000 semicolons][src].
|
* **Wren is small.** The VM implementation is under [4,000 semicolons][src].
|
||||||
You can skim the whole thing in an afternoon. It's *small*, but not
|
You can skim the whole thing in an afternoon. It's *small*, but not
|
||||||
*dense*. It is readable and [lovingly-commented][nan].
|
*dense*. It is readable and [lovingly-commented][nan].
|
||||||
@ -41,6 +44,8 @@ a familiar, modern [syntax][].
|
|||||||
and [an easy-to-use C API][embedding]. It compiles cleanly as C99, C++98
|
and [an easy-to-use C API][embedding]. It compiles cleanly as C99, C++98
|
||||||
or anything later.
|
or anything later.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
If you like the sound of this, [let's get started][started]. You can even try
|
If you like the sound of this, [let's get started][started]. You can even try
|
||||||
it [in your browser][browser]! Excited? Well, come on and [get
|
it [in your browser][browser]! Excited? Well, come on and [get
|
||||||
involved][contribute]!
|
involved][contribute]!
|
||||||
|
|||||||
@ -132,5 +132,6 @@ that they are printed isn't defined. Wren makes no promises about what order
|
|||||||
keys and values are iterated in when you use these methods. All it promises is
|
keys and values are iterated in when you use these methods. All it promises is
|
||||||
that every entry will appear exactly once.
|
that every entry will appear exactly once.
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="method-calls.html">Method Calls →</a>
|
<a class="right" href="method-calls.html">Method Calls →</a>
|
||||||
<a href="lists.html">← Lists</a>
|
<a href="lists.html">← Lists</a>
|
||||||
|
|||||||
@ -177,5 +177,6 @@ These are equivalent to method calls whose signature is `[_]=(_)` and whose
|
|||||||
arguments are both the subscript (or subscripts) and the value on the right-hand
|
arguments are both the subscript (or subscripts) and the value on the right-hand
|
||||||
side.
|
side.
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="control-flow.html">Control Flow →</a>
|
<a class="right" href="control-flow.html">Control Flow →</a>
|
||||||
<a href="maps.html">← Maps</a>
|
<a href="maps.html">← Maps</a>
|
||||||
|
|||||||
@ -286,4 +286,5 @@ This sounds super hairy, but that's because cyclic dependencies are hairy in
|
|||||||
general. The key point here is that Wren *can* handle them in the rare cases
|
general. The key point here is that Wren *can* handle them in the rare cases
|
||||||
where you need them.
|
where you need them.
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a href="error-handling.html">← Error Handling</a>
|
<a href="error-handling.html">← Error Handling</a>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../../wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../">Modules</a></li>
|
<li><a href="../">Modules</a></li>
|
||||||
<li><a href="./">core</a></li>
|
<li><a href="./">core</a></li>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../../wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../">Modules</a></li>
|
<li><a href="../">Modules</a></li>
|
||||||
<li><a href="./">io</a></li>
|
<li><a href="./">io</a></li>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../../wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../">Modules</a></li>
|
<li><a href="../">Modules</a></li>
|
||||||
<li><a href="./">meta</a></li>
|
<li><a href="./">meta</a></li>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../../wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../">Modules</a></li>
|
<li><a href="../">Modules</a></li>
|
||||||
<li><a href="./">os</a></li>
|
<li><a href="./">os</a></li>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../../wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../">Modules</a></li>
|
<li><a href="../">Modules</a></li>
|
||||||
<li><a href="./">random</a></li>
|
<li><a href="./">random</a></li>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../../wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../">Modules</a></li>
|
<li><a href="../">Modules</a></li>
|
||||||
<li><a href="./">scheduler</a></li>
|
<li><a href="./">scheduler</a></li>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../wren.svg" class="logo"></a>
|
||||||
<section>
|
<section>
|
||||||
<h2>core</h2>
|
<h2>core</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="../../wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../">Modules</a></li>
|
<li><a href="../">Modules</a></li>
|
||||||
<li><a href="./">timer</a></li>
|
<li><a href="./">timer</a></li>
|
||||||
|
|||||||
1
doc/site/static/wren.svg
Normal file
1
doc/site/static/wren.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 5.3 KiB |
@ -3,9 +3,11 @@ $subheader: "Lato", helvetica, arial, sans-serif;
|
|||||||
$body: "Source Sans Pro", georgia, serif;
|
$body: "Source Sans Pro", georgia, serif;
|
||||||
$code: "Source Code Pro", Menlo, Monaco, Consolas, monospace;
|
$code: "Source Code Pro", Menlo, Monaco, Consolas, monospace;
|
||||||
|
|
||||||
|
$header_h: 8em;
|
||||||
$dark: hsl(210, 10%, 25%);
|
$dark: hsl(210, 10%, 25%);
|
||||||
$darker: hsl(210, 20%, 10%);
|
$darker: hsl(210, 20%, 10%);
|
||||||
$light: hsl(0, 0%, 100%);
|
$light: hsl(0, 0%, 100%);
|
||||||
|
$gray-5: mix($dark, $light, 5%);
|
||||||
$gray-10: mix($dark, $light, 10%);
|
$gray-10: mix($dark, $light, 10%);
|
||||||
$gray-20: mix($dark, $light, 20%);
|
$gray-20: mix($dark, $light, 20%);
|
||||||
$gray-30: mix($dark, $light, 30%);
|
$gray-30: mix($dark, $light, 30%);
|
||||||
@ -16,8 +18,8 @@ $gray-80: mix($dark, $light, 80%);
|
|||||||
|
|
||||||
$text: mix($light, #000, 20%);
|
$text: mix($light, #000, 20%);
|
||||||
|
|
||||||
$code-color: hsl(210, 20%, 40%);
|
$code-color: hsl(210, 20%, 30%);
|
||||||
$code-bg: hsl(210, 20%, 98%);
|
$code-bg: hsl(210, 0%, 99%);
|
||||||
|
|
||||||
$link: hsl(200, 60%, 50%);
|
$link: hsl(200, 60%, 50%);
|
||||||
$link-hover: hsl(210, 100%, 80%);
|
$link-hover: hsl(210, 100%, 80%);
|
||||||
@ -34,20 +36,48 @@ $module-link-glow: hsla(130, 90%, 50%, 0.4);
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
body, code, h1, h2, h3, p, pre {
|
body, code, h1, h2, h3, p, pre, html {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
height: 100%;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: $light;
|
background: $light;
|
||||||
color: $text;
|
color: $text;
|
||||||
font: 16px/25px $body;
|
font: 16px/25px $body;
|
||||||
|
height: 100%;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
display: block;
|
||||||
|
height: 1px;
|
||||||
|
border: 0;
|
||||||
|
border-top: 1px solid $gray-5;
|
||||||
|
margin: 1em 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
color: $gray-50;
|
||||||
|
margin: 0;
|
||||||
|
max-width: 24em;
|
||||||
|
margin-left: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
date {
|
||||||
|
color: $gray-80;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page {
|
.page {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
width: 800px;
|
width: 800px;
|
||||||
|
min-height: calc(100% - 16.75em);
|
||||||
|
|
||||||
// Clear contents.
|
// Clear contents.
|
||||||
&:after {
|
&:after {
|
||||||
@ -62,20 +92,28 @@ body {
|
|||||||
width: 560px;
|
width: 560px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
height: 7em;
|
||||||
|
position: relative;
|
||||||
|
margin: auto;
|
||||||
|
display: block;
|
||||||
|
left: -1em;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
text-shadow: 0 1px 1px $darker;
|
|
||||||
|
|
||||||
.page {
|
.page {
|
||||||
height: 120px;
|
height: $header_h;
|
||||||
}
|
}
|
||||||
|
|
||||||
background: $dark;
|
background: $light;
|
||||||
border-bottom: solid 1px $darker;
|
border-bottom: solid 1px $gray-10;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: -8px;
|
||||||
top: 63px;
|
top: ($header_h / 3) - 1.15em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font: 400 48px $header;
|
font: 400 48px $header;
|
||||||
letter-spacing: 2px;
|
letter-spacing: 2px;
|
||||||
@ -83,8 +121,8 @@ header {
|
|||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
left: 0;
|
||||||
top: 72px;
|
top: $header_h + 0.5em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font: 500 13px $subheader;
|
font: 500 13px $subheader;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -93,23 +131,23 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $gray-20;
|
color: $gray-80;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: $link-hover;
|
color: $link-hover;
|
||||||
text-shadow: 0 0 6px $link-glow;
|
/*text-shadow: 0 0 6px $link-glow;*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
float: right;
|
float: right;
|
||||||
width: 160px;
|
width: 160px;
|
||||||
padding-top: 109px;
|
margin-top: 2em;
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
color: $gray-30;
|
color: $gray-80;
|
||||||
font: 500 11px $subheader;
|
font: 500 13px $subheader;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 2px;
|
letter-spacing: 2px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -121,7 +159,7 @@ nav {
|
|||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
font: 15px $body;
|
font: 17px $body;
|
||||||
color: $gray-30;
|
color: $gray-30;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0 0 4px 0;
|
margin: 0 0 4px 0;
|
||||||
@ -194,8 +232,20 @@ a {
|
|||||||
|
|
||||||
main {
|
main {
|
||||||
@extend .main-column;
|
@extend .main-column;
|
||||||
padding-top: 12px;
|
margin-top: 2em;
|
||||||
float: left;
|
float: left;
|
||||||
|
|
||||||
|
.intro {
|
||||||
|
border-bottom: solid 1px $gray-10;
|
||||||
|
margin-bottom: -0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
max-width: 16em;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
@ -229,8 +279,7 @@ code, pre {
|
|||||||
font: 13px $code;
|
font: 13px $code;
|
||||||
background: $code-bg;
|
background: $code-bg;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
border: solid 1px hsl(200, 20%, 95%);
|
border: solid 1px hsl(200, 20%, 88%);
|
||||||
border-bottom: solid 1px hsl(200, 20%, 90%);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
@ -250,7 +299,7 @@ pre {
|
|||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
margin-top: 40px;
|
margin-top: 4em;
|
||||||
padding: 20px 0 40px 0;
|
padding: 20px 0 40px 0;
|
||||||
font: 14px $body;
|
font: 14px $body;
|
||||||
background: $dark;
|
background: $dark;
|
||||||
@ -334,12 +383,11 @@ footer {
|
|||||||
body.module {
|
body.module {
|
||||||
header {
|
header {
|
||||||
a {
|
a {
|
||||||
color: $gray-20;
|
color: $gray-80;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: $module-link-hover;
|
color: $module-link-hover;
|
||||||
text-shadow: 0 0 6px $module-link-glow;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -265,5 +265,6 @@ tightest to loosest, is:
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="values.html">Values →</a>
|
<a class="right" href="values.html">Values →</a>
|
||||||
<a href="getting-started.html">← Getting Started</a>
|
<a href="getting-started.html">← Getting Started</a>
|
||||||
|
|||||||
@ -14,18 +14,20 @@
|
|||||||
<div class="page">
|
<div class="page">
|
||||||
<div class="main-column">
|
<div class="main-column">
|
||||||
<h1><a href="./">wren</a></h1>
|
<h1><a href="./">wren</a></h1>
|
||||||
<h2>a classy little scripting language</h2>
|
<h2>a classy little scripting language</h2>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
<nav class="big">
|
<nav class="big">
|
||||||
|
<a href="./"><img src="./wren.svg" class="logo"></a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="getting-started.html">Getting Started</a></li>
|
<li><a href="getting-started.html">Getting Started</a></li>
|
||||||
<li><a href="contributing.html">Contributing</a></li>
|
<li><a href="contributing.html">Contributing</a></li>
|
||||||
|
<li><a href="blog">Blog</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<section>
|
<section>
|
||||||
<h2>language guide</h2>
|
<h2>guides</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="syntax.html">Syntax</a></li>
|
<li><a href="syntax.html">Syntax</a></li>
|
||||||
<li><a href="values.html">Values</a></li>
|
<li><a href="values.html">Values</a></li>
|
||||||
@ -58,7 +60,7 @@
|
|||||||
<td><a href="contributing.html">Contributing</a></td>
|
<td><a href="contributing.html">Contributing</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2"><h2>language guide</h2></td>
|
<td colspan="2"><h2>guides</h2></td>
|
||||||
<td><h2>reference</h2></td>
|
<td><h2>reference</h2></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@ -94,7 +96,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
<h1>{title}</h1>
|
<h2>{title}</h2>
|
||||||
{html}
|
{html}
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -137,5 +137,6 @@ doesn't return anything and get its returned value, you get `null` back.
|
|||||||
|
|
||||||
[null]: modules/core/null.html
|
[null]: modules/core/null.html
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="lists.html">Lists →</a>
|
<a class="right" href="lists.html">Lists →</a>
|
||||||
<a href="syntax.html">← Syntax</a>
|
<a href="syntax.html">← Syntax</a>
|
||||||
|
|||||||
@ -71,5 +71,6 @@ then it isn't an assignment. Instead, it's calling a [setter method][].
|
|||||||
|
|
||||||
[setter method]: method-calls.html#setters
|
[setter method]: method-calls.html#setters
|
||||||
|
|
||||||
|
<br><hr>
|
||||||
<a class="right" href="functions.html">Functions →</a>
|
<a class="right" href="functions.html">Functions →</a>
|
||||||
<a href="control-flow.html">← Control Flow</a>
|
<a href="control-flow.html">← Control Flow</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user