This commit is contained in:
Robby Findler 2011-12-15 10:34:06 -06:00
parent 39e4454f51
commit fd89d560b2

View File

@ -78,13 +78,18 @@ and there's no need for you to even know whether or not a particular
package is installed on your computer or the computers where your code package is installed on your computer or the computers where your code
will be deployed. will be deployed.
If you want to find all of the packages that planet has available, If you want to find all of the latest versions of the
visit packages that planet has available, visit
@centered{@url{http://planet.racket-lang.org/servlets/pkg-info.ss}} @centered{@url{http://planet.racket-lang.org/servlets/pkg-info.ss}}
It returns a list of lists of length 4. Each sublist represents It returns a list matching the contract
@racketblock[(listof (list/c string?
string?
(list/c exact-integer?
exact-integer?)))]
Each sublist represents
the latest version of one of the packages and contains the the latest version of one of the packages and contains the
userid (as a string), the package name (including ".plt"), and userid, the package name (including ".plt"), and
the version. the version (major and minor numbers).
@subsection{Shorthand Syntax} @subsection{Shorthand Syntax}