Files
premier/Etudiant.php
2025-09-29 11:34:09 +02:00

10 lines
107 B
PHP

<?php
class Etudiant{
private $nom;
public function setNom($n){
$this->nom = $n;
}
}