Probably worth noting the awf -F (field separator) flag. This is more useful than $0 in most situations...
echo 1 2 3 4 | awk -F "\t" '{print $1}'
returns:
1 2 3 4
You can set the field sep. to anything you want - in this case I set it to a tab - instead of the default which is a space..