Compare if two types have the same constructor in Gleam
at main 81 B view raw
1export function is_same_kind(a, b) { 2 return a.constructor === b.constructor; 3}