1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-24 08:09:08 -05:00
Original: 39cfdb48a8
This commit is contained in:
Yungoo Kong 2019-01-14 15:46:00 +09:00 committed by Ryan Dahl
parent 096e0b36e6
commit 61b401c63a
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@
Command line arguments parser. Command line arguments parser.
- **[logging](./logging/)** - **[log](./log/)**
Command line logging Command line logging
@ -22,7 +22,7 @@
Make directory branches. Make directory branches.
- **[net](./net/)** - **[http](./http/)**
A framework for creating HTTP/HTTPS servers inspired by GoLang. A framework for creating HTTP/HTTPS servers inspired by GoLang.

View file

@ -1,7 +1,7 @@
# Basic usage # Basic usage
```ts ```ts
import * as log from "https://deno.land/x/std/logging/index.ts"; import * as log from "https://deno.land/x/std/log/mod.ts";
// simple console logger // simple console logger
log.debug("Hello world"); log.debug("Hello world");