Skip to content

I translated Scala Introduction for Python developers to japanese #3136

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

Merged
merged 8 commits into from
Jan 1, 2025
Prev Previous commit
Next Next commit
Update _ja/overviews/scala3-book/scala-for-python-devs.md
Co-authored-by: eugene yokota <eed3si9n@gmail.com>
  • Loading branch information
Toxapex4096 and eed3si9n authored Dec 26, 2024
commit 93cef64f5abf3d73d6bec151ae536e6f8d8c8c19
2 changes: 1 addition & 1 deletion _ja/overviews/scala3-book/scala-for-python-devs.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ It’s intended for programmers who know Python and want to learn about Scala, s

高レベルで見ると、PythonとScalaの間には以下のような _相違点_ があります:

- Pythonは動的型付けであり、Scalaは静的型付けです
- Python は動的型付け言語であり、Scala は静的型付け言語です
- Pythonは動的型付けですが、型ヒントによる「段階的型付け」をサポートしており、`mypy`のような静的型チェッカーで検証できます。
- Scalaは静的型付けですが、型推論のような機能により動的言語のような感覚で書けます。
- Pythonはインタプリタ型で実行され、Scalaのコードはコンパイルされて _.class_ ファイルになり、Java仮想マシン(JVM)上で動作します。
Expand Down