elves / elvish

Powerful scripting language & versatile interactive shell

Home Page:https://elv.sh/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecated "except" used in tour

dansebcar opened this issue · comments

The following snippet from the online tour shows a deprecation warning when I run it locally:

~> try {
     false
   } except e {
     echo 'got an exception'
   }

Prints Deprecation: "except" is deprecated; use "catch" instead in addition to the expected exception.