Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

34
LINES

< > BotCompany Repo | #1002480 // Simple Thesaurus Bot (without wildcards, LIVE)

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (1511L/10K/32K).

!759

static new Map<S, S> thesaurusMap;

p {
  load("thesaurusMap");
}

synchronized answer {
  if "add thesaurus * *" {
    S key = m.unq(0), value = m.unq(1);
    if (match(key, value))
      ret "You nasty rascal, don't do the endless loop!";
    thesaurusMap.put(key, value);
    save("thesaurusMap");
    ret "OK, saved! Thesaurus size now: " + l(thesaurusMap);
  }
  
  if "thesaurus size"
    ret lstr(thesaurusMap);
  
  if "list thesaurus"
    ret structure(thesaurusMap);
  
  for (S key : keys(thesaurusMap))
    if (match(key, s)) {
      S a = askSelf(thesaurusMap.get(key));
      if (nempty(a)) {
        getInvolvedBots().add(formatSnippetID(programID()));
        ret a;
      }
    }
      
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1002480
Snippet name: Simple Thesaurus Bot (without wildcards, LIVE)
Eternal ID of this version: #1002480/1
Text MD5: 6eab8852626fe0672bf3d39d42f45aa2
Transpilation MD5: 3dc5f1334f9bf9dd6a05312fc8577724
Author: stefan
Category: javax
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-02-03 00:20:57
Source code size: 744 bytes / 34 lines
Pitched / IR pitched: No / No
Views / Downloads: 660 / 1139
Referenced in: [show references]