If the program is short, you can include it in the command that runs awk:
awk -F: '{print $1, $2}' /etc/passwd
In this example, using command line switch -F: we advise awk to use : as input fields delimiter. Is is the same like
awk 'BEGIN{FS=":"}{print $1,$2}' file
Alternativelly, ...