Skip to content

Commit

Permalink
Start translation
Browse files Browse the repository at this point in the history
  • Loading branch information
fujimura committed Aug 30, 2014
1 parent bac603b commit 4721783
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,55 @@
This is my recommended path for learning Haskell.

私の、Haskellを学ぶのにオススメの道のりです。

#### Something to keep in mind: *don't sweat the stuff you don't understand immediately*. Just keep moving.

#### 常に気をつけること: すぐに理解できない事にこだわらないこと。動き続けよう。

# Community

# コミュニティ

Our IRC channel is `#haskell-beginners` on Freenode.

IRCチャンネルはFreenodeで `#haskell-begineers` です。

IRC web client here: http://webchat.freenode.net/

IRCのWebクライアントはこちら: http://webchat.freenode.net/

## Community Guidelines

## コミュニティのガイドライン

[Letter to a Young Haskell Enthusiast](http://comonad.com/reader/2014/letter-to-a-young-haskell-enthusiast/)

[若いHaskell狂への手紙](http://comonad.com/reader/2014/letter-to-a-young-haskell-enthusiast/)

Be nice above all else!

何よりもナイスであること!

# Primary course

# 初級コース

## What are Haskell, GHC, and Cabal?

## Haskellって何?GHC?Cabal?

Haskell is a programming language as laid out in the reports, most recent one being in 2010. http://www.haskell.org/onlinereport/haskell2010/

Haskellはレポートにまとめられたプログラミング言語です。最新のレポートは2010年のものです。 http://www.haskell.org/onlinereport/haskell2010/

GHC is the most popular compiler for Haskell and is what you'll install along with Cabal. Cabal is the project and dependency management tool used with GHC. You almost definitely want both if you're going to start writing Haskell.

GHCは最もポピュラーなHaskellのコンパイラーで、Cabalと一緒にインストールされます。CabalはGHCと一緒に使われるプロジェクトと依存関係の管理を行うものです。Haskellを始めようと思ったら確実に両方必要になります。

Cabal is equivalent to Ruby's Bundler, Python's pip, Node's NPM, Maven, etc. GHC manages packaging itself, Cabal chooses what versions to install.

CabalはRubyのBundler、Pythonのpip、NodeのNPM、Mavenと同じようなものです。GHCがパッケージ自体の管理をやって、Cabalがどのバージョンをインストールするか選んでくれます。

## Getting started

### Ubuntu
Expand Down

2 comments on commit 4721783

@kini
Copy link

@kini kini commented on 4721783 Mar 13, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

今更なんですが本家では何かの大規模翻訳プロジェクトが始まってるらしい → bitemyapp#51
日本語版も求められてるようで一応ここにコメントを入れようと思いました。

@fujimura
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

お、ありがとうございます!

Please sign in to comment.