view service/rfid_pn532/ev.nim @ 507:f3c1d2e7c5df

add missing files for the record Ignore-this: 8541c95ef1644cf85b311259602d2892
author drewp@bigasterisk.com
date Sun, 21 Apr 2019 03:28:21 -0700
parents
children
line wrap: on
line source

import threadpool

var events1: Channel[int]
events1.send(1)

proc main():
  var events2: Channel[int]
  events2.send(2)

main()