BRE03

Correction exercice 2 sur les variables

<?php

$nb_tab = [22, 14.7, 29, 18.26, 35, 107.936, 56, 44];

print_r($nb_tab);

$str_tab = ["Chat", "Chien", "Lapin", "Souris", "Singe"];

print_r($str_tab);

?>