Skip to content

Commit

Permalink
remove blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Oct 12, 2024
1 parent ddd3d48 commit 677e368
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,7 @@ For example, consider the following module that starts with a single undefined v

```js
const runtime = new Runtime(builtins);

const module = runtime.module();

const a = module.variable();
```

Expand Down Expand Up @@ -183,17 +181,14 @@ Likewise deleting *a* or *b* would allow the other variable to resolve to its de

```js
const runtime = new Runtime(builtins);

const module0 = runtime.module();

module0.variable().define("foo", 42);
```

To import `foo` into another module:

```js
const module1 = runtime.module();

module1.variable().import("foo", module0);
```

Expand Down

0 comments on commit 677e368

Please sign in to comment.