• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2	s = ""
3	for (i = NF; i > 0; i--)
4		s = s " " $i
5	print s
6}
7