echo if you don't have ls
don't have ls but you do have echo? try :
$ echo *
not entirely sure why that works though...
Update - Simple really, the shell expands the asterisk to everything in the current directory, and each one is passed to echo, with the result that you get a listing of all the files.