Skip to content

Instantly share code, notes, and snippets.

View albertshrpv's full-sized avatar

Albert Sharipov albertshrpv

View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
#include "SingleList.h"
Bool equal(List la, List lb)
{
if (length(la) != length(lb))
{
return False;
@albertshrpv
albertshrpv / Main.c
Created January 21, 2020 14:00
Blöde Listen
#include <stdio.h>
#include <stdlib.h>
#include "SingleList.h"
void show(Value v)
{
printf("%d\n", v);
}