-
Notifications
You must be signed in to change notification settings - Fork 130
Translation to ko playground type script with deno #90
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
Open
yahma25
wants to merge
5
commits into
microsoft:main
Choose a base branch
from
yahma25:Translation-to-ko-playground-TypeScript-with-Deno
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
f7f1f72
Translate 1 file to ko, playground - TypeScript with Deno
yahma25 777675b
Add dot
yahma25 3c62e88
Update docs/playground/ko/JavaScript/External APIs/TypeScript with De…
yahma25 408521c
Update docs/playground/ko/JavaScript/External APIs/TypeScript with De…
yahma25 9ba1779
Fix the JSON.parse error
yahma25 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
docs/playground/ko/JavaScript/External APIs/TypeScript with Deno.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
//// { order: 3 } | ||
|
||
// Deno는 보안에 중점을 둔 v8 기반의 | ||
// 작업 중에 있는 JavaScript와 TypeScript 런타임입니다. | ||
|
||
// https://deno.land | ||
|
||
// Deno는 파일시스템 또는 네트워크로 JavaScript가 가진 접근을 줄여주는 | ||
yahma25 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// 샌드박스 기반의 권한 시스템을 가지고 있고, | ||
// 로컬에 내려받고 캐시 되는 불러오기에 기반을 둔 http 사용합니다. | ||
|
||
// 스크립트하기 위해 deno를 사용하는 예시가 있습니다: | ||
|
||
import compose from "https://deno.land/x/denofun/lib/compose.ts"; | ||
|
||
function greet(name: string) { | ||
return `Hello, ${name}!`; | ||
} | ||
|
||
function makeLoud(x: string) { | ||
return x.toUpperCase(); | ||
} | ||
|
||
const greetLoudly = compose(makeLoud, greet); | ||
|
||
// "HELLO, WORLD!." 출력 | ||
greetLoudly("world"); | ||
|
||
import concat from "https://deno.land/x/denofun/lib/concat.ts"; | ||
|
||
// "helloworld" 반환 | ||
concat("hello", "world"); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.