master
Voussoir 2015-08-20 00:02:04 -07:00
parent 957182f363
commit 79ebb44c65
1 changed files with 10 additions and 2 deletions

View File

@ -47,6 +47,7 @@ SAMPLE_COMMENTS = [
'robot! add 10 10 robot! multiply 10 10 robot! exponent 10 10', 'robot! add 10 10 robot! multiply 10 10 robot! exponent 10 10',
'robot! add 1 1\nrobot! multiply 1 1', 'robot! add 1 1\nrobot! multiply 1 1',
' do ROBOT! add boom box', ' do ROBOT! add boom box',
'robot! robot!',
''] '']
COMMAND_IDENTIFIERS = [c.lower() for c in COMMAND_IDENTIFIERS] COMMAND_IDENTIFIERS = [c.lower() for c in COMMAND_IDENTIFIERS]
@ -162,12 +163,19 @@ Found command: ['multiply', '1', '1']
Using function: multiply Using function: multiply
Output: 1.0 Output: 1.0
User said: ROBOT! add boom box User said: do ROBOT! add boom box
Broken into: ['ROBOT!', 'add', 'boom', 'box'] Broken into: ['do', 'ROBOT!', 'add', 'boom', 'box']
Found command: ['add', 'boom', 'box'] Found command: ['add', 'boom', 'box']
Using function: add Using function: add
Output: None Output: None
User said: robot! robot!
Broken into: ['robot!', 'robot!']
Found command: []
Did nothing
Found command: []
Did nothing
User said: User said:
Broken into: [] Broken into: []
''' '''