0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

文法エラーメッセージが改善されたそうだが...

Posted at

Julia 1.10.0 では,Syntax error の表示が{改善}?された?

Julia 1.9.4
julia> x = (a - b)^2 - (c - d)^2 - x)

ERROR: syntax: extra token ")" after end of expression
Stacktrace:
 [1] top-level scope
   @ none:1
Julia 1.10.0
julia> x = (a - b)^2 - (c - d)^2 - x)
ERROR: ParseError:
# Error @ REPL[1]:1:30
x = (a - b)^2 - (c - d)^2 - x)
#                            ╙ ── extra tokens after end of expression
Stacktrace:
 [1] top-level scope
   @ none:1

よほどの初心者でもなければ,「わかりやすいエラーメッセージになった」とは評価できないかなあ?

「どの行にエラーがあったよ」だけで十分だ。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?