

CC=gcc -g 
OBJS= execute.o internal.o standard.o try.o

try: ${OBJS}
	cc -o try ${OBJS} -lm
