#!/bin/sh
rm -f *.o; rm -f test_list_str
nasm -f elf list.asm
gcc -o test_list_str test_list_str.c list.o
test_list_str
