summary refs log tree commit diff stats
path: root/etc
Commit message (Expand)AuthorAgeFilesLines
* cli flags for db path/type, assets dir. systemd unit file. makefile.Ben Morrison2019-06-052-0/+44
='n15' href='#n15'>15 16
# example program: running multiple routines

def main [
  start-running thread2
  {
    $print 34
    loop
  }
]

def thread2 [
  {
    $print 35
    loop
  }
]