@Kaw Compila : Ta Em Java Script
class Vinho {
constructor(name, value) {
this.name = name;
this.value = value;
}
}
let vinhos = [];
vinhos.push(new Vinho("HAUT-BRION", 2000));
vinhos.push(new Vinho("LAFITE ROTHSCHILD", 1432));
vinhos.push(new Vinho("LATOUR", 5324))...