greg^.head --> (first greg)

:: software

A college classmate’s nickname for me, after we learned linked lists in Pascal:

1
greg^.head

Updated, for many years it would have been:

1
greg->head

Not long ago I did quite a bit of:

1
2
3
SELECT TOP 1 part
FROM greg
SORT BY height

Nowadays:

1
(first greg)
Answers:
C/C++.
SQL.
Lisp/Scheme/Racket.