Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. use v6.c;
  2. use Test; # a Standard module included with Rakudo
  3. use lib 'lib';
  4.  
  5. my $num-tests = 1;
  6.  
  7. plan $num-tests;
  8.  
  9. # .... tests
  10. #
  11.  
  12. my $msg = "ask about";
  13.  
  14. ###my AI::Agent::Agent $ag = AI::Agent::Agent.new(0);
  15. my $ag = AI::Agent::Agent.new(0);
  16. say $ag.dispatch($msg, Nil);
  17.  
  18. done-testing; # optional with 'plan'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement