Skip to content

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
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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가 가진 접근을 줄여주는
// 샌드박스 기반의 권한 시스템을 가지고 있고,
// 로컬에 내려받고 캐시 되는 불러오기에 기반을 둔 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");