summary refs log tree commit diff stats
path: root/post.go
Commit message (Expand)AuthorAgeFilesLines
* bugfix: errors logged as strings (prev. bytes)Ben Morrison2019-05-311-2/+2
* allowing some errors in POSTBen Morrison2019-05-311-3/+2
* added context to 400 errorsBen Morrison2019
(function main [
  (fork thread2:fn)
  (default-space:space-address <- new space:literal 2:literal)
  (x:integer <- copy 34:literal)
  { begin
    (print-integer nil:literal/terminal x:integer)
    (loop)
  }
])

(function thread2 [
  (default-space:space-address <- new space:literal 2:literal)
  (y:integer <- copy 35:literal)
  { begin
    (print-integer nil:literal/terminal y:integer)
    (loop)
  }
])