str: "abc" num: 5 try { 123 + str } |is-error .either { "error" } { print str } try { 123 + num } |is-error .either { "error" } { print num }