Programming

Julia 언어의 장단점

steloflute 2020. 11. 2. 01:36

julialang.org/

The Julia Programming Language

2020-09-24 The story of debugging a mysterious Julia segfault. 2020-09-16 Within private companies, it can be difficult to smoothly transition internal code into high quality open-source contributions. At JuliaCon 2020, industry Julia users came together t

julialang.org

장점:

1. 속도가 빠르다. C와 견줄만함

예시: fib(x) = x < 2 ? x : fib(x - 2) + fib(x - 1)

를 실행하면 Go 언어보다 빠르다.

 

2. Lisp같은 매크로가 있다.

3. 문법이 간결하다.

 

단점:

1. 실행파일을 못 만든다.

2. 초기 시작시간이 느리다.
3. 파이썬과 다르게 설치시 PATH에 안 잡힌다.
4. 파이썬과 다르게 더블클릭하여 소스 코드를 실행시킬 수 없다.

 

'Programming' 카테고리의 다른 글

bitcoin op_mul  (0) 2021.01.22
Python의 바이트 문자열과 유니코드  (0) 2020.12.31
[Rust] 스마트포인터 Box, Rc  (0) 2020.10.20
Why Go Is Not Good  (0) 2020.10.03
C 프로그래밍: rand 사용시 주의점  (0) 2020.04.18