xxxxxxxxxx
15
let col = "https://jonasjacek.github.io/colors/data.json"
let link = "api.openweathermap.org/data/2.5/weather?q=london&APPID=207c2cee520b028c5c3f2f910526030b&units=imperial"
let muhkey ="207c2cee520b028c5c3f2f910526030b";
function setup() {
createCanvas(400, 400);
loadJSON('https://jonasjacek.github.io/colors/data.json',gotData);
}
function gotData(data){
println(data);
}
function draw() {
background(220);
}