Checkpoint B

From J Wiki
Jump to navigation Jump to search


<=   =>

At this point you should understand:

  • a text file that is a source of sentences is called a script file
  • a script file defines global names
  • how to create a new temporary script file
  • how to save a temporary script file as a permanent file
  • how to run a script file to execute its sentences
  • how to define a verb in a script file
  • how to define the monadic and dyadic cases of a verb
  • the difference between =. and =:
  • the difference between local and global
  • that a locale is a set of global names
  • that there can be more than one locale
  • that the base locale is the one you normally work with

Check your understanding by doing the following exercises:


  • create a new temporary script file
  • in the script define square as a monad that uses *: to square its argument
  • save the script in the user directory with the name square.ijs
  • run the script and test the verb square
  • close J, restart, use load'~/j9.4-user/square.ijs' to run square.ijs and test it (The path description may vary depending on your version of J)


<=   =>

Primer Index               Hover to reveal titles   -   Click to access   -   Current page is highlighted
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
45 46 47 48
50 51 52 53 54 55 56 57
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
97 98 99 100 101 102 103 104 105 106