Simple database: Difference between revisions

→‎{{header|J}}: included database dump to demonstrate readability.
(→‎{{header|J}}: included database dump to demonstrate readability.)
Line 435:
│2012-02-07:20:36:54.749│many more!│ │ │ │ │ │ │
└───────────────────────┴──────────┴──────────┴─────────────────┴──────────┴───────┴─────────────────┴─────────────────────────────┘
$ cat dataflow
'2012-02-07:20:36:54.512';'name';'expression';'algebraic';'rank';'valence';'example';'explanation'
'2012-02-07:20:36:54.541';'insert';'f/ y';'insert f within y';'infinite';'dyad';'sum=: +/';'continued_fraction=:+`%/'
'2012-02-07:20:36:54.564';'fork';'(f g h)y';'g(f(y),h(y))';'infinite';'monad';'average=: +/ % #';'sum divided by tally'
'2012-02-07:20:36:54.589';'hook';'(f g)y';'f(y,g(y))';'infinite';'monad';'/: 2&{"1';'sort table by third column'
'2012-02-07:20:36:54.612';'hook';'x(f g)y';'f(x,g(y))';'infinite';'dyad';'display verb in s';'a reflexive dyadic hook'
'2012-02-07:20:36:54.635';'fork';'x(f g h)y';'g(f(x,y),h(x,y))';'infinite';'monad';'+ * -';'product of sum and difference'
'2012-02-07:20:36:54.660';'reflexive';'f~ y';'f(y,y)';'infinite';'monad';'^~y';'y raised to the power of y'
'2012-02-07:20:36:54.682';'passive';'x f~ y';'f(y,x)';'ranks of f';'dyad';'(%~ i.@:>:) 8x';'8 intervals from 0 to 1'
'2012-02-07:20:36:54.705';'atop';'f@g y';'f(g(y))';'rank of g';'monad';'*:@(+/)';'square the sum'
'2012-02-07:20:36:54.727';'atop';'x f@g y';'f(g(x,y))';'rank of g';'dyad';'>@{.';'(lisp) open the car'
'2012-02-07:20:36:54.749';'many more!'
'2012-02-08:22:48:34.361';'name';'expression';'algebraic';'rank';'valence';'example';'explanation'
'2012-02-08:22:48:34.386';'insert';'f/ y';'insert f within y';'infinite';'dyad';'sum=: +/';'continued_fraction=:+`%/'
'2012-02-08:22:48:34.410';'fork';'(f g h)y';'g(f(y),h(y))';'infinite';'monad';'average=: +/ % #';'sum divided by tally'
'2012-02-08:22:48:34.433';'hook';'(f g)y';'f(y,g(y))';'infinite';'monad';'/: 2&{"1';'sort table by third column'
'2012-02-08:22:48:34.459';'hook';'x(f g)y';'f(x,g(y))';'infinite';'dyad';'display verb in s';'a reflexive dyadic hook'
'2012-02-08:22:48:34.482';'fork';'x(f g h)y';'g(f(x,y),h(x,y))';'infinite';'monad';'+ * -';'product of sum and difference'
'2012-02-08:22:48:34.504';'reflexive';'f~ y';'f(y,y)';'infinite';'monad';'^~y';'y raised to the power of y'
'2012-02-08:22:48:34.527';'passive';'x f~ y';'f(y,x)';'ranks of f';'dyad';'(%~ i.@:>:) 8x';'8 intervals from 0 to 1'
'2012-02-08:22:48:34.550';'atop';'f@g y';'f(g(y))';'rank of g';'monad';'*:@(+/)';'square the sum'
'2012-02-08:22:48:34.573';'atop';'x f@g y';'f(g(x,y))';'rank of g';'dyad';'>@{.';'(lisp) open the car'
'2012-02-08:22:48:34.595';'many more!'
$ </lang>
 
Anonymous user