Skip to content
This repository was archived by the owner on Sep 21, 2023. It is now read-only.

Commit a81f4bd

Browse files
authored
fix: update hello world program url (#722)
1 parent 4bf5b53 commit a81f4bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

getting_started/first_steps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ deno run first_steps.ts
3232
```
3333

3434
Deno also has the ability to execute scripts from URLs. Deno
35-
[hosts a library](https://deno.land/std@$STD_VERSION/examples) of example code,
36-
one of which is a `Hello World` program. To run that hosted code, do:
35+
[hosts a library](https://examples.deno.land/) of example code, one of which is
36+
a `Hello World` program. To run that hosted code, do:
3737

3838
```shell
39-
deno run https://deno.land/std@$STD_VERSION/examples/welcome.ts
39+
deno run https://examples.deno.land/hello-world.ts
4040
```
4141

4242
## Making an HTTP request

tools/compiler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
self-contained executable.
55

66
```
7-
> deno compile https://deno.land/std/examples/welcome.ts
7+
> deno compile https://examples.deno.land/hello-world.ts
88
```
99

1010
If you omit the `OUT` parameter, the name of the executable file will be

0 commit comments

Comments
 (0)