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

11
LINES

< > BotCompany Repo | #1002697 // lisp function

JavaX fragment (include)

// make a lisp form
static Lisp lisp(S head, Object... args) {
  Lisp l = new Lisp(head);
  for (O o : args)
    l.add(o);
  return l;
}

static Lisp lisp(S head, Collection args) {
  ret new Lisp(head, args);
}

Author comment

Began life as a copy of #1001196

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: #1002697
Snippet name: lisp function
Eternal ID of this version: #1002697/2
Text MD5: 96299c2061a039ae7d8b8c187e1b52c4
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-04-17 22:18:52
Source code size: 223 bytes / 11 lines
Pitched / IR pitched: No / No
Views / Downloads: 764 / 1323
Version history: 1 change(s)
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)
#3000382 - Answer for ferdie (>> t = 1, f = 0)