>> 
<< 
Usr 
Pri 
JfC 
LJ 
Phr 
Dic 
Rel 
Voc 
!: 
Help 
Primer
 
Script load
In addition to the utilities loaded with the standard profile, there are several additional scripts of standard utilities provided with the system. These standard utilities are documented in the J Online Documentation available from the J help menu. You could run these scripts directly, but you would need to remember the path to the script, as well as which locale to run them in. The standard profile provides utilities to make this easier for you. The scripts verb lists scripts that can be loaded with the load verb.
   scripts ''
. . .
.... parts    plot     profile  scripts  stdlib ...
. . .
The scripts verb with an argument of 'v' lists the scripts with their full path.
   scripts 'v'
. . .
compare  ~system\main\compare.ijs
 . . 
The ~system indicates the J system directory.
The convert script contains several conversion utilities.
   load 'convert'
   toupper 'testing 1 2 3'
TESTING 1 2 3
   tolower 'Sir Richard'
sir richard
>> 
<< 
Usr 
Pri 
JfC 
LJ 
Phr 
Dic 
Rel 
Voc 
!: 
Help 
Primer