ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> perl-AI
perl-AI
mind.pl
by Arthur T. Murray other posts by this author
Aug 12 2003 11:09AM messages near this date
Re: Concept-Fiber Theory of Mind | Perl AI Weblog
#!/usr/bin/perl -w
#
sub security;
sub sensorium;
sub emotion;
sub think;
sub volition;
sub motorium;
while (1) {
  security();
  sensorium();
  emotion();
  think();
  volition();
  motorium();
}
sub security {
# http://mentifex.virtualentity.com/acm.html#security
} def;
sub sensorium {
  # http://mentifex.virtualentity.com/acm.html#sensorium
  print "Press ENTER or ESCAPE key: ";
  $_ = <STDIN> ;
  exit if (/^\027/);
} def;
sub emotion {
  # http://mentifex.virtualentity.com/acm.html#emotion
} def;
sub think {
  # http://mentifex.virtualentity.com/acm.html#think
} def;
sub volition {
  # http://mentifex.virtualentity.com/acm.html#volition
} def;
sub motorium {
  # http://mentifex.virtualentity.com/acm.html#motorium
} def;
#---

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved