About this trail:
If apropos is halfway, then describe, inspect and documentation is the rest... Well, I guess web search is in there somewhere too :)
Trail link: http://trailfire.com/stefan/trails/10873
Summary: http://trailfire.com/stefan/trailview/10873
Summary: http://trailfire.com/stefan/trailview/10873
1
If apropos is halfway, then describe, inspect and documentation is the rest... Well, I guess web search is in there somewhere too :)
2
Apropos is a great start. Don't know how to open a file? Try (apropos "file" :cl) and (apropos "open" :cl) and you're halfway there. Better yet, skip the package restriction: (apropos "file") and (apropos "open") will run the queries across all packages. Not a good idea to (apropos 'file) - we just defined a new file symbol that's going to turn up in subsequent query results.




