Think Twice
IT技術メモ | Juliaのメモ
Created: 2021-06-05 / Updated: 2021-06-05

Juliaをインストール


目次


ダウンロード

インストール

例) Windows10

動作確認

Copy
PS C:\Users\fumo> julia
               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.6.1 (2021-04-23)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org/ release
|__/                   |

julia> 1 + 2
3

julia> println("こんにちは、世界")
こんにちは、世界

julia> exit()
PS C:\Users\fumo>

To exit the interactive session, type CTRL-D (press the Control/^ key together with the d key), or type exit().

Getting Startedより

参考

参考サイト