mirror of
https://gitlab.com/klmp200/LO41.git
synced 2024-11-14 21:03:23 +00:00
12 lines
202 B
C
12 lines
202 B
C
|
#include <stdio.h>
|
||
|
#include "Objects.h"
|
||
|
#include "List/List.h"
|
||
|
|
||
|
int main() {
|
||
|
List *l = NEW(List);
|
||
|
printf("La taille est de %d\n", l->get_size(l));
|
||
|
DELETE(l);
|
||
|
|
||
|
printf("Hello, World!\n");
|
||
|
return 0;
|
||
|
}
|