// % Använd funktionen Boolean för att konvertera resultat så det blir rätt typ. %

let a = 1;
let b = 1;
 
let c:boolean;
c =a +b;

