chunk_id
large_stringlengths
7
11
question_id
large_stringlengths
4
8
language
large_stringclasses
1 value
chunk_index
int64
0
5
chunk_text
large_stringlengths
148
2.58k
sparse_text
large_stringlengths
96
3.09k
dense_vector
listlengths
3.58k
3.58k
sparse_indices
listlengths
9
249
sparse_values
listlengths
9
249
export_source
large_stringclasses
1 value
52884876_c0
52884876
lisp
0
Title: Lisp - Increasing all elements by a number Problem title: Lisp - Increasing all elements by a number Tags: lisp, common-lisp Problem: Lisp - Increasing all elements by a number It prints 1 on the screen even though I increased its value in the function. Is there a way to call the parameter by reference so I can ...
Lisp - Increasing all elements by a number Lisp - Increasing all elements by a number lisp common-lisp Lisp Increasing Lisp - Increasing all elements by a number It prints 1 on the screen even though I increased its value in the function. Is there a way to call the parameter by reference so I can use it after the funct...
[ -0.013916015625, 0.0247802734375, -0.0277099609375, 0.031982421875, 0.00677490234375, 0.00421142578125, -0.00201416015625, -0.000629425048828125, 0.005157470703125, -0.0244140625, -0.000701904296875, 0.00689697265625, -0.013427734375, 0.032470703125, 0.0245361328125, -0.017578125, 0....
[ 1261, 7008, 8942, 1283, 6953, 756, 80854, 390, 14012, 400, 39210, 4086, 254, 28412, 7, 106, 98, 49119, 3853, 21208, 87, 124735, 6863, 34292, 32354, 3917, 11782, 171859, 91067, 4527, 7103 ]
[ 0.172119140625, 0.257080078125, 0.094970703125, 0.172607421875, 0.0732421875, 0.1162109375, 0.177490234375, 0.1207275390625, 0.1639404296875, 0.108154296875, 0.0980224609375, 0.0965576171875, 0.139892578125, 0.1905517578125, 0.04547119140625, 0.13623046875, 0.052093505859375, 0.161...
embed
3578187_c0
3578187
lisp
0
Title: Tasks unsuited for dynamic scoping Problem title: Tasks unsuited for dynamic scoping Tags: elisp, lisp, scheme, scope Problem: Tasks unsuited for dynamic scoping Can you give me some examples of tasks unsuited for dynamically scoped lisps? I'm failing to see how the Lexical scope is so much better and not just a...
Tasks unsuited for dynamic scoping Tasks unsuited for dynamic scoping elisp lisp scheme scope Tasks Tasks unsuited for dynamic scoping Can you give me some examples of tasks unsuited for dynamically scoped lisps? I'm failing to see how the Lexical scope is so much better and not just a matter of changing the coding sty...
[ 0.0184326171875, 0.019775390625, 0.0081787109375, 0.0027923583984375, -0.016357421875, -0.00762939453125, 0.01025390625, 0.01470947265625, 0.0166015625, 0.0012054443359375, 0.0012359619140625, 0.004119873046875, -0.01239013671875, 0.00860595703125, 0.00848388671875, 0.00640869140625, ...
[ 9598, 1224, 51, 68879, 297, 100, 84079, 44679, 214, 15296, 7008, 400, 150370, 70820, 27781, 66211, 7, 6423, 35782, 1957, 172522, 6827, 11522, 151134, 552, 20623, 5161, 18151, 10002, 46223 ]
[ 0.19189453125, 0.06427001953125, 0.09197998046875, 0.1541748046875, 0.060333251953125, 0.05712890625, 0.202392578125, 0.17578125, 0.032318115234375, 0.0765380859375, 0.15869140625, 0.11346435546875, 0.1295166015625, 0.1868896484375, 0.08953857421875, 0.202880859375, 0.055755615234375...
embed
32977411_c0
32977411
lisp
0
Title: How create fold-left with 2 arg? Problem title: How create fold-left with 2 arg? Tags: lisp, scheme, functional-programming Problem: How create fold-left with 2 arg? How I can write a fold-left function with 2 parameters (foldl-1 proc xs)? This doesn't work: (define (my-fold-left op xs) (define (func proc start ...
How create fold-left with 2 arg? How create fold-left with 2 arg? lisp scheme functional-programming How How create fold-left with 2 arg? How I can write a fold-left function with 2 parameters (foldl-1 proc xs)? This doesn't work:
[ -0.0034332275390625, 0.00046539306640625, -0.000152587890625, -0.01092529296875, -0.0013885498046875, 0.017578125, -0.006256103515625, -0.01373291015625, 0.0091552734375, -0.048095703125, 0.0096435546875, -0.0032196044921875, 0.0076904296875, 0.004638671875, 0.0002918243408203125, -0.0...
[ 11249, 28282, 42822, 9, 133, 2480, 678, 116, 79459, 400, 7008, 150370, 123309, 28966, 33022, 32354, 171859, 141, 5759, 10402, 1022, 4488 ]
[ 0.048858642578125, 0.1600341796875, 0.2303466796875, 0.0650634765625, 0.10687255859375, 0.1727294921875, 0.075927734375, 0.1527099609375, 0.205078125, 0.0299835205078125, 0.12359619140625, 0.1063232421875, 0.095947265625, 0.049530029296875, 0.086669921875, 0.158203125, 0.1669921875, ...
embed
69860129_c0
69860129
lisp
0
Title: prefix symbol sequence in lisp Problem title: prefix symbol sequence in lisp Tags: symbols, lisp, common-lisp Problem: prefix symbol sequence in lisp I am trying to extend a symbol sequence with a prefix in lisp: (A B C) => (pfx:A pfx:B pfx:C) In order to do so I am trying the following: (mapcar (lambda (arg) (c...
prefix symbol sequence in lisp prefix symbol sequence in lisp symbols lisp common-lisp pfx:A pfx:B pfx:C prefix symbol sequence in lisp I am trying to extend a symbol sequence with a prefix in lisp: In order to do so I am trying the following: But to no avail. Can someone give me a hint? Thanks, Daniel
[ 0.0152587890625, 0.0081787109375, 0.005401611328125, 0.01495361328125, -0.0244140625, -0.01385498046875, -0.003448486328125, 0.0277099609375, -0.0087890625, -0.034912109375, 0.01055908203125, -0.0042724609375, 0.0111083984375, 0.0167236328125, -0.01165771484375, 0.0028533935546875, -...
[ 183114, 26582, 40, 944, 23, 400, 7008, 39210, 4086, 254, 39557, 425, 284, 571, 441, 3956, 31577, 65042, 678, 25632, 25820, 5122, 11555 ]
[ 0.25146484375, 0.19970703125, 0.043975830078125, 0.08868408203125, 0.045013427734375, 0.11767578125, 0.187744140625, 0.085693359375, 0.078857421875, 0.1512451171875, 0.04864501953125, 0.09625244140625, 0.04388427734375, 0.01387786865234375, 0.041900634765625, 0.039581298828125, 0.083...
embed
18007640_c0
18007640
lisp
0
Title: Importing and visualizing pictures in racket without using DrRacket Problem title: Importing and visualizing pictures in racket without using DrRacket Tags: image, racket, lisp Problem: Importing and visualizing pictures in racket without using DrRacket How can import and an .png image and use it for some animat...
Importing and visualizing pictures in racket without using DrRacket Importing and visualizing pictures in racket without using DrRacket image racket lisp DrRacket Importing Insert Image Importing and visualizing pictures in racket without using DrRacket How can import and an .png image and use it for some animation pra...
[ -0.00970458984375, -0.00518798828125, -0.030029296875, 0.036865234375, 0.00604248046875, 0.0118408203125, 0.006591796875, -0.00927734375, -0.01324462890625, -0.017578125, 0.011474609375, -0.00762939453125, -0.005584716796875, -0.0137939453125, 0.008544921875, -0.0028839111328125, 0.0...
[ 92966, 21176, 75073, 23, 673, 27853, 15490, 1773, 12248, 84382, 29569, 400, 7008, 33657, 22710, 24927, 128468, 4527, 114205, 147118, 35829 ]
[ 0.212158203125, 0.141357421875, 0.18017578125, 0.03076171875, 0.09722900390625, 0.2025146484375, 0.07257080078125, 0.09503173828125, 0.1201171875, 0.021484375, 0.1751708984375, 0.041656494140625, 0.11029052734375, 0.1392822265625, 0.1734619140625, 0.2347412109375, 0.169921875, 0.09...
embed
20029442_c0
20029442
lisp
0
Title: Can find be used to find a list in another list? Problem title: Can find be used to find a list in another list? Tags: common-lisp, lisp Problem: Can find be used to find a list in another list? Finding list elements based on single atoms seems to work fine: CL-USER> (find 1 (list 5 4 3 2 1)) 1 But what about fi...
Can find be used to find a list in another list? Can find be used to find a list in another list? common-lisp lisp Can CL-USER NIL Can find be used to find a list in another list? Finding list elements based on single atoms seems to work fine: But what about finding a list in a list? How to do it?
[ -0.00982666015625, 0.0203857421875, 0.0157470703125, 0.00921630859375, -0.017822265625, 0.008544921875, 0.0020294189453125, 0.00469970703125, 0.0033721923828125, -0.026611328125, 0.002227783203125, 0.01092529296875, -0.00084686279296875, 0.006317138671875, 0.0030517578125, -0.001670837...
[ 4171, 7413, 186, 11814, 5303, 23, 15700, 47, 39210, 4086, 254, 400, 7008, 46323, 1062, 50184, 541, 16444, 10, 26040, 80854, 35509, 11001, 34627, 37202, 4488, 5885, 90791 ]
[ 0.0550537109375, 0.2457275390625, 0.04254150390625, 0.121337890625, 0.2142333984375, 0.10369873046875, 0.10345458984375, 0.0401611328125, 0.0902099609375, 0.033966064453125, 0.0797119140625, 0.04034423828125, 0.10955810546875, 0.06488037109375, 0.1029052734375, 0.08856201171875, 0.04...
embed
4975633_c0
4975633
lisp
0
Title: Common Lisp: How to check set equality, ignoring order? Problem title: Common Lisp: How to check set equality, ignoring order? Tags: set, lisp, equality, common-lisp Problem: Common Lisp: How to check set equality, ignoring order? Similar to this question: Setting up a equal function in common lisp using only "e...
Common Lisp: How to check set equality, ignoring order? Common Lisp: How to check set equality, ignoring order? set lisp equality common-lisp Common Lisp How Common Lisp: How to check set equality, ignoring order? Similar to this question: Setting up a equal function in common lisp using only "eq" except, I'd like to b...
[ 0.007659912109375, 0.0107421875, 0.00201416015625, 0.00885009765625, -0.0135498046875, -0.0101318359375, -0.003662109375, -0.0111083984375, 0.0107421875, -0.0006561279296875, -0.0006256103515625, 0.0517578125, 0.0128173828125, -0.0142822265625, -0.0206298828125, -0.00099945068359375, ...
[ 151301, 1261, 7008, 11249, 12765, 5423, 28, 161789, 47438, 12989, 47, 214, 400, 39210, 4086, 254, 503, 1257, 105950, 32354, 13, 864, 40494, 1884, 69101, 6626 ]
[ 0.157958984375, 0.1307373046875, 0.141357421875, 0.06097412109375, 0.205078125, 0.207275390625, 0.09759521484375, 0.228759765625, 0.12646484375, 0.141357421875, 0.02545166015625, 0.04608154296875, 0.10601806640625, 0.11083984375, 0.0394287109375, 0.04852294921875, 0.0440673828125, ...
embed
13415894_c0
13415894
lisp
0
Title: Lisp acessing value (new to Lisp) Problem title: Lisp acessing value (new to Lisp) Tags: common-lisp, lisp, variables Problem: Lisp acessing value (new to Lisp) I'm new to Lisp and don't know how to access the :DIM value! Here's the code: (defstruct peca dim val) (setf exemple #S(PECA :DIM 2 :VAL 1)) How can I g...
Lisp acessing value (new to Lisp) Lisp acessing value (new to Lisp) common-lisp lisp variables Lisp DIM PECA VAL Lisp acessing value (new to Lisp) I'm new to Lisp and don't know how to access the :DIM value! Here's the code: How can I get the value of :DIM from exemple ? When I try exemple-dim it says variable -DIM has...
[ 0.02294921875, -0.00021839141845703125, -0.0167236328125, 0.02734375, 0.00677490234375, 0.0091552734375, -0.0162353515625, 0.0235595703125, 0.005859375, -0.0228271484375, 0.0157470703125, 0.006500244140625, 0.01019287109375, -0.0157470703125, -0.010009765625, -0.0172119140625, 0.0109...
[ 1261, 7008, 26531, 214, 34292, 54936, 39210, 4086, 254, 400, 77336, 175546, 436, 153492, 55991, 3525, 3714, 3642, 17203, 152, 18151, 831, 2046, 1295, 18632, 9790, 5771, 1556, 110 ]
[ 0.143798828125, 0.2135009765625, 0.11907958984375, 0.030303955078125, 0.19921875, 0.0257110595703125, 0.0753173828125, 0.1063232421875, 0.1680908203125, 0.1163330078125, 0.2357177734375, 0.249755859375, 0.0179443359375, 0.11700439453125, 0.158203125, 0.0537109375, 0.0212249755859375,...
embed
20970182_c0
20970182
lisp
0
Title: Lisp redefining functions Problem title: Lisp redefining functions Tags: common-lisp, lisp Problem: Lisp redefining functions Can someone help understand what is happenning here? (DEFUN G(L)(+(CAR L)(CADR L))) (SETQ H`F)(SET H `G) I want to know what happends when I evaluate (F` (2 3 4 5 6 )) I've written it in ...
Lisp redefining functions Lisp redefining functions common-lisp lisp Lisp DEFUN CAR CADR SETQ SET Undefined Lisp redefining functions Can someone help understand what is happenning here? I want to know what happends when I evaluate (F` (2 3 4 5 6 )) I've written it in my lisp interpreter but I get the following error:
[ 0.00946044921875, 0.0096435546875, 0.00787353515625, -0.0018157958984375, -0.00726318359375, 0.00274658203125, -0.0172119140625, 0.0166015625, 0.000133514404296875, -0.00799560546875, -0.00775146484375, -0.01312255859375, -0.005828857421875, -0.0023345947265625, -0.0002899169921875, 0....
[ 1261, 7008, 456, 49919, 449, 32354, 39210, 4086, 254, 400, 202001, 14006, 42476, 96161, 1052, 128565, 2737, 79912, 5983, 22008, 4358, 28219, 2367, 53383, 592, 3688, 3444, 47, 3714, 6468, 3229, 151575, 13, 919, 1135, 4700, 138, 201, 190, 3...
[ 0.1910400390625, 0.2388916015625, 0.12890625, 0.204345703125, 0.04412841796875, 0.20556640625, 0.10479736328125, 0.1214599609375, 0.13623046875, 0.145751953125, 0.119873046875, 0.0989990234375, 0.1708984375, 0.1134033203125, 0.061065673828125, 0.14697265625, 0.155517578125, 0.08801...
embed
5746431_c0
5746431
lisp
0
Title: Lisp -- How to add several hexadecimal numbers without base conversion? Problem title: Lisp -- How to add several hexadecimal numbers without base conversion? Tags: hex, addition, numbers, math, lisp Problem: Lisp -- How to add several hexadecimal numbers without base conversion? Ii would like to know how to add...
Lisp -- How to add several hexadecimal numbers without base conversion? Lisp -- How to add several hexadecimal numbers without base conversion? hex addition numbers math lisp Lisp How Lisp -- How to add several hexadecimal numbers without base conversion? Ii would like to know how to add several hexadecimal numbers in ...
[ -0.016357421875, 0.01055908203125, -0.017578125, 0.0189208984375, -0.029541015625, -0.003143310546875, -0.0196533203125, -0.000598907470703125, -0.002838134765625, -0.018310546875, 0.0002231597900390625, -0.01556396484375, 0.004241943359375, 0.02685546875, 0.0025177001953125, -0.007141...
[ 1261, 7008, 4210, 11249, 47, 15190, 40368, 764, 3798, 170753, 101935, 15490, 3647, 142477, 425, 66044, 48909, 400, 3714, 3642, 23, 96760, 16940 ]
[ 0.1396484375, 0.2080078125, 0.0243072509765625, 0.06085205078125, 0.034393310546875, 0.144775390625, 0.12335205078125, 0.126708984375, 0.1229248046875, 0.1405029296875, 0.1314697265625, 0.11822509765625, 0.1336669921875, 0.11566162109375, 0.11834716796875, 0.1412353515625, 0.08013916...
embed
9779956_c0
9779956
lisp
0
Title: Common Lisp implementation of Latent Semantic Indexing Problem title: Common Lisp implementation of Latent Semantic Indexing Tags: latent-semantic-indexing, lisp, common-lisp Problem: Common Lisp implementation of Latent Semantic Indexing Is there a free Common Lisp implementation of Latent Semantic Indexing ava...
Common Lisp implementation of Latent Semantic Indexing Common Lisp implementation of Latent Semantic Indexing latent-semantic-indexing lisp common-lisp Common Lisp Latent Semantic Indexing Common Lisp implementation of Latent Semantic Indexing Is there a free Common Lisp implementation of Latent Semantic Indexing avail...
[ -0.00095367431640625, 0.02099609375, -0.00726318359375, 0.01177978515625, -0.006683349609375, 0.0152587890625, -0.00188446044921875, -0.002227783203125, -0.005828857421875, -0.03759765625, 0.01275634765625, 0.00811767578125, -0.0235595703125, 0.005401611328125, -0.00057220458984375, 0....
[ 151301, 1261, 7008, 208124, 239, 25352, 10232, 109109, 31471, 214, 19161, 18, 5765, 4711, 400, 39210, 4086, 254, 2685, 10, 4092, 19882, 1884, 78779, 3540, 41159, 3934, 144573, 5426 ]
[ 0.1903076171875, 0.16796875, 0.1929931640625, 0.1937255859375, 0.137451171875, 0.1624755859375, 0.167236328125, 0.15185546875, 0.217041015625, 0.1068115234375, 0.169677734375, 0.042510986328125, 0.102294921875, 0.1466064453125, 0.1011962890625, 0.130859375, 0.1097412109375, 0.12231...
embed
1426666_c0
1426666
lisp
0
Title: LISP check if list is symmetrical without reverse Problem title: LISP check if list is symmetrical without reverse Tags: lisp Problem: LISP check if list is symmetrical without reverse Anyone have any ideas on how to do this... reverse is too slow, and I want to avoid using the function. Basically I want to be a...
LISP check if list is symmetrical without reverse LISP check if list is symmetrical without reverse lisp LISP LISP check if list is symmetrical without reverse Anyone have any ideas on how to do this... reverse is too slow, and I want to avoid using the function. Basically I want to be able to return true if something ...
[ 0.003204345703125, 0.022705078125, -0.004364013671875, 0.007049560546875, -0.01470947265625, 0.0216064453125, -0.006988525390625, 0.0181884765625, 0.001953125, -0.002227783203125, -0.0022430419921875, 0.0003662109375, 0.0162353515625, -0.0118408203125, -0.0078125, 0.015625, -0.002868...
[ 16970, 9434, 12765, 2174, 5303, 83, 230612, 6827, 15490, 39531, 184, 400, 7008, 25647, 72803, 71864, 32354, 3444, 30646, 29568, 10, 32497, 1257, 98320, 959 ]
[ 0.123291015625, 0.182861328125, 0.17138671875, 0.06103515625, 0.1943359375, 0.04388427734375, 0.2288818359375, 0.138427734375, 0.156005859375, 0.1724853515625, 0.064697265625, 0.09173583984375, 0.1146240234375, 0.0300140380859375, 0.0841064453125, 0.0245208740234375, 0.0792236328125,...
embed
8379543_c0
8379543
lisp
0
Title: What's the lisp equivalent of System.exit(0)? Problem title: What's the lisp equivalent of System.exit(0)? Tags: lisp, common-lisp Problem: What's the lisp equivalent of System.exit(0)? Lets say I'm inside of multiple mapcar functions and I've found the successful terminating condition. I want to stop ...
What's the lisp equivalent of System.exit(0)? What's the lisp equivalent of System.exit(0)? lisp common-lisp What System.exit What's the lisp equivalent of System.exit(0)? Lets say I'm inside of multiple mapcar functions and I've found the successful terminating condition. I want to stop the execution of the ...
[ 0.00946044921875, 0.0205078125, -0.002960205078125, 0.006378173828125, -0.0299072265625, 0.0167236328125, 0.017578125, -0.00244140625, 0.00439453125, -0.02392578125, 0.00007009506225585938, -0.00634765625, -0.002838134765625, 0.0125732421875, -0.000820159912109375, 0.00384521484375, ...
[ 3768, 400, 7008, 183234, 12353, 13, 23399, 177609, 39210, 4086, 254, 4865, 5, 70, 111, 46132, 48716, 22288, 3284, 32354, 14037, 65771, 121011, 214, 35431, 3444, 47, 7279, 71924, 10588, 18151, 79, 330, 831, 54, 21373 ]
[ 0.024078369140625, 0.134521484375, 0.22900390625, 0.2008056640625, 0.1923828125, 0.0850830078125, 0.243408203125, 0.1986083984375, 0.10546875, 0.1060791015625, 0.1763916015625, 0.028228759765625, 0.02960205078125, 0.0216522216796875, 0.0128173828125, 0.04742431640625, 0.0656127929687...
embed
4361045_c0
4361045
lisp
0
Title: Formatting a list Problem title: Formatting a list Tags: lisp, common-lisp, format Problem: Formatting a list I have the following list: (X X O NIL NIL O NIL NIL O) I'd like to format it to look like this: X | X | O --+---+-- | | O --+---+-- | | O I could probably cobble something together with what little I kno...
Formatting a list Formatting a list lisp common-lisp format Formatting NIL FORMAT Formatting a list I have the following list: (X X O NIL NIL O NIL NIL O) I'd like to format it to look like this: I could probably cobble something together with what little I know about Lisp and FORMAT , but it would probably be pretty g...
[ -0.0152587890625, 0.0152587890625, 0.01220703125, 0.00811767578125, -0.01068115234375, -0.0067138671875, 0.02294921875, 0.01031494140625, 0.0081787109375, 0.054931640625, 0.006805419921875, -0.024169921875, -0.01434326171875, -0.008544921875, -0.021728515625, 0.01025390625, 0.0113525...
[ 60972, 1916, 5303, 10, 400, 7008, 39210, 4086, 254, 9384, 541, 16444, 125915, 618, 87, 765, 25632, 1542, 1193, 180, 71, 1884, 47, 442, 6713, 903, 5809, 31895, 73163, 9844, 25842, 10176, 3714, 1261, 136, 28875, 55215, 6275, 1314, 6782, 7...
[ 0.23583984375, 0.061431884765625, 0.2347412109375, 0.031402587890625, 0.104248046875, 0.20458984375, 0.121337890625, 0.095458984375, 0.16259765625, 0.245361328125, 0.11212158203125, 0.177490234375, 0.23681640625, 0.135986328125, 0.0029754638671875, 0.0509033203125, 0.10797119140625, ...
embed
66430494_c0
66430494
lisp
0
Title: How to use "MULT" when no number next to it? Problem title: How to use "MULT" when no number next to it? Tags: lisp, math Problem: How to use "MULT" when no number next to it? I am new to LISP programming and was seeing if anyone could help me with this basic problem. (MULT (ADD 3 (EXP 3 2)) ...
How to use "MULT" when no number next to it? How to use "MULT" when no number next to it? lisp math How MULT ADD EXP DIV SUB How to use "MULT" when no number next to it? I am new to LISP programming and was seeing if anyone could help me with this basic problem. I am having trouble what MULT means w...
[ -0.0002040863037109375, 0.034912109375, 0.0098876953125, 0.009521484375, -0.00469970703125, 0.0191650390625, 0.0301513671875, -0.01220703125, 0.016357421875, -0.0225830078125, -0.00958251953125, -0.02099609375, -0.01287841796875, -0.00732421875, -0.0184326171875, -0.00262451171875, 0...
[ 11249, 47, 4527, 594, 82643, 41502, 3229, 110, 14012, 11737, 442, 400, 7008, 48909, 276, 24057, 104165, 5419, 856, 111231, 58, 16970, 9434, 56037, 63134, 26950, 101935 ]
[ 0.059356689453125, 0.082275390625, 0.13818359375, 0.12457275390625, 0.312255859375, 0.0312042236328125, 0.0770263671875, 0.15185546875, 0.183837890625, 0.140380859375, 0.06988525390625, 0.0626220703125, 0.1553955078125, 0.086181640625, 0.12255859375, 0.1396484375, 0.1688232421875, ...
embed
37372659_c0
37372659
lisp
0
Title: How do I get quicklisp to load code from the book Practical Common Lisp? Problem title: How do I get quicklisp to load code from the book Practical Common Lisp? Tags: lisp, common-lisp, practical-common-lisp, quicklisp Problem: How do I get quicklisp to load code from the book Practical Common Lisp? The code tha...
How do I get quicklisp to load code from the book Practical Common Lisp? How do I get quicklisp to load code from the book Practical Common Lisp? lisp common-lisp practical-common-lisp quicklisp the How Practical Common Lisp How do I get quicklisp to load code from the book Practical Common Lisp? The code that accompan...
[ -0.0017547607421875, 0.0031280517578125, -0.0101318359375, 0.01220703125, -0.006683349609375, 0.0181884765625, 0.00994873046875, 0.006256103515625, 0.007568359375, -0.05078125, -0.006591796875, -0.010009765625, -0.011474609375, -0.0230712890625, 0.0059814453125, -0.00775146484375, -0...
[ 11249, 2046, 63773, 4086, 254, 47, 72367, 18151, 1295, 12877, 109613, 151301, 1261, 7008, 400, 39210, 138155, 277, 3796, 70, 289, 46648, 96853, 237, 71, 420, 102158, 89038 ]
[ 0.051605224609375, 0.04296875, 0.1376953125, 0.1763916015625, 0.1890869140625, 0.035430908203125, 0.165283203125, 0.181640625, 0.0711669921875, 0.1148681640625, 0.17919921875, 0.130859375, 0.1326904296875, 0.168701171875, 0.060455322265625, 0.0758056640625, 0.1710205078125, 0.06518...
embed
16369474_c0
16369474
lisp
0
Title: prevent terminal output in LISP Problem title: prevent terminal output in LISP Tags: lisp, output Problem: prevent terminal output in LISP I want to run a function but not have it output the result in the terminal. For example, (set 'A 'B) normally returns B in the console like the following: >>> (set 'A 'B) B >...
prevent terminal output in LISP prevent terminal output in LISP lisp output LISP prevent terminal output in LISP I want to run a function but not have it output the result in the terminal. For example, (set 'A 'B) normally returns B in the console like the following: I don't want it to return anything; I still want the...
[ 0.021240234375, 0.017822265625, -0.005889892578125, 0.00360107421875, -0.01031494140625, -0.0037841796875, 0.00897216796875, -0.003021240234375, -0.00537109375, 0.00811767578125, 0.01495361328125, 0.00125885009765625, -0.00531005859375, 0.005279541015625, 0.005401611328125, 0.018798828...
[ 56282, 33949, 140992, 23, 16970, 9434, 400, 7008, 3444, 11675, 32354, 1284, 959, 765, 16750, 27781, 3509, 284, 571, 3638, 30646, 335, 130250, 1884, 25632, 2301, 18, 47, 23937, 7464, 54, 2367, 134598, 1660, 103967, 538 ]
[ 0.2281494140625, 0.252685546875, 0.2257080078125, 0.07086181640625, 0.1439208984375, 0.2110595703125, 0.11126708984375, 0.15625, 0.1351318359375, 0.137939453125, 0.1778564453125, 0.07818603515625, 0.1162109375, 0.07855224609375, 0.11724853515625, 0.0023040771484375, 0.1474609375, 0...
embed
12505674_c0
12505674
lisp
0
Title: Bad Syntax with let in LISP Problem title: Bad Syntax with let in LISP Tags: let, lisp, recursion Problem: Bad Syntax with let in LISP I keep getting this error when trying to run the code: (let ((exp lambda (x y) (if (= y 1) x (* (exp x (- y 1)) x))))) Error: let: bad syntax in: (let ((exp lambda (x y) (if (= y...
Bad Syntax with let in LISP Bad Syntax with let in LISP let lisp recursion Bad Syntax LISP Bad Syntax with let in LISP I keep getting this error when trying to run the code: Error: My function is supposed to define recursive exponentiation, but I'm having problems with let.
[ -0.0037384033203125, 0.0218505859375, -0.0111083984375, 0.0189208984375, 0.0027313232421875, 0.0184326171875, 0.00628662109375, 0.0142822265625, -0.00762939453125, -0.01397705078125, 0.007232666015625, -0.001373291015625, -0.0186767578125, 0.006988525390625, 0.021728515625, 0.008911132...
[ 12745, 19010, 86531, 678, 2633, 23, 16970, 9434, 400, 7008, 195625, 1830, 13695, 903, 18499, 31577, 11675, 18151, 212059, 32354, 134598, 61924, 5844, 78643, 21616, 2320, 1284, 44402 ]
[ 0.1304931640625, 0.1370849609375, 0.199462890625, 0.07525634765625, 0.22802734375, 0.06634521484375, 0.11370849609375, 0.21923828125, 0.09051513671875, 0.1678466796875, 0.20458984375, 0.0780029296875, 0.06744384765625, 0.00994873046875, 0.166015625, 0.054534912109375, 0.0448913574218...
embed
26289607_c0
26289607
lisp
0
Title: Is there anything similar to return statement of C in Lisp? Problem title: Is there anything similar to return statement of C in Lisp? Tags: lisp Problem: Is there anything similar to return statement of C in Lisp? I want to implement a base condition in a recursive function written in Lisp, but I'm not able to ...
Is there anything similar to return statement of C in Lisp? Is there anything similar to return statement of C in Lisp? lisp Lisp Is there anything similar to return statement of C in Lisp? I want to implement a base condition in a recursive function written in Lisp, but I'm not able to do this since there is no return...
[ 0.005218505859375, 0.03125, 0.008056640625, 0.005615234375, -0.0025482177734375, 0.01025390625, 0.000885009765625, -0.003173828125, -0.007110595703125, -0.01312255859375, 0.0069580078125, -0.0155029296875, -0.0145263671875, 0.00182342529296875, 0.000850677490234375, 0.01513671875, -0...
[ 23937, 21373, 30646, 63805, 313, 23, 1261, 7008, 400, 111, 3444, 29479, 3647, 35431, 195625, 32354, 59121, 959, 19048, 110, 18151, 35509 ]
[ 0.077392578125, 0.1324462890625, 0.2154541015625, 0.1956787109375, 0.123046875, 0.0938720703125, 0.1654052734375, 0.2320556640625, 0.1141357421875, 0.0184173583984375, 0.026824951171875, 0.1094970703125, 0.1683349609375, 0.2041015625, 0.1429443359375, 0.1051025390625, 0.001953125, ...
embed
54975597_c0
54975597
lisp
0
Title: Why is it returning this? Problem title: Why is it returning this? Tags: scheme, lisp Problem: Why is it returning this? I am trying to use lambda, but when I test it in the console, it returns #<procedure:...esktop/Lab 4.rkt:105:2> . My code is (define (comp f g) (lambda (x) (f (g x)))) And my test code is (com...
Why is it returning this? Why is it returning this? scheme lisp Why procedure:...esktop Lab rkt:105:2 Why is it returning this? I am trying to use lambda, but when I test it in the console, it returns #<procedure:...esktop/Lab 4.rkt:105:2> . My code is And my test code is For some reason, lambda is deferring the evalua...
[ -0.006195068359375, 0.016357421875, 0.00531005859375, 0.007415771484375, 0.00189208984375, 0.029541015625, 0.027099609375, 0.01708984375, -0.002838134765625, -0.0130615234375, -0.0042724609375, -0.00909423828125, -0.001190185546875, 0.00390625, -0.0013427734375, -0.00177001953125, -0...
[ 44084, 83, 442, 30646, 214, 903, 150370, 400, 7008, 50491, 90, 92, 13784, 21488, 4164, 46659, 12, 304, 31577, 4527, 21, 6492, 85, 3034, 130250, 468, 232578, 97381, 1398, 7190, 18, 18151, 31635, 8, 2875, 2852, 219836, 4358 ]
[ 0.18994140625, 0.13232421875, 0.054901123046875, 0.226318359375, 0.1383056640625, 0.1529541015625, 0.19140625, 0.08905029296875, 0.1881103515625, 0.19873046875, 0.057586669921875, 0.0849609375, 0.2161865234375, 0.185791015625, 0.1485595703125, 0.2012939453125, 0.005458831787109375, ...
embed
44795387_c0
44795387
lisp
0
Title: Count elements and return them Problem title: Count elements and return them Tags: lisp, common-lisp Problem: Count elements and return them I want to count the elements in a list and return a list containing the elements paired with them respective quantity Something like that: Input: (count-elements '(a b d d ...
Count elements and return them Count elements and return them lisp common-lisp Count Count elements and return them I want to count the elements in a list and return a list containing the elements paired with them respective quantity Something like that: Input: (count-elements '(a b d d a b c c b d d)) Output: ((a 2) (...
[ 0.00396728515625, -0.0003108978271484375, -0.03271484375, -0.007598876953125, -0.0048828125, 0.0167236328125, -0.0218505859375, -0.01031494140625, 0.0142822265625, -0.04248046875, -0.00555419921875, -0.037353515625, 0.0103759765625, 0.01336669921875, -0.000888824462890625, -0.025390625...
[ 108210, 80854, 136, 30646, 2856, 400, 7008, 39210, 4086, 254, 3444, 47, 54529, 70, 23, 5303, 70541, 80836, 297, 678, 107013, 102134, 1884, 360, 7077, 71013, 62766, 7, 876, 104, 13538, 8439, 71, 13956, 238, 4958, 831, 54, 36272, 12830, 1...
[ 0.2403564453125, 0.255615234375, 0.058624267578125, 0.228759765625, 0.09375, 0.0709228515625, 0.162353515625, 0.1165771484375, 0.0667724609375, 0.14697265625, 0.1180419921875, 0.03173828125, 0.2357177734375, 0.011138916015625, 0.05462646484375, 0.1904296875, 0.057373046875, 0.15173...
embed
67450989_c0
67450989
lisp
0
Title: Accept number or character Problem title: Accept number or character Tags: string, lisp, common-lisp, clisp Problem: Accept number or character I know I can use (every #'digit-char-p str) to check if every character is an digit or (every #'alpha-char-p str) if it is a character. The problem is that I want to acc...
Accept number or character Accept number or character string lisp common-lisp clisp Accept Accept number or character I know I can use (every #'digit-char-p str) to check if every character is an digit or (every #'alpha-char-p str) if it is a character. The problem is that I want to accept if the word contains letters ...
[ -0.00653076171875, -0.000782012939453125, -0.00156402587890625, 0.035888671875, -0.0145263671875, 0.0240478515625, 0.002227783203125, 0.00168609619140625, -0.0079345703125, -0.0281982421875, -0.000423431396484375, -0.01483154296875, -0.001953125, 0.01611328125, -0.01708984375, -0.00250...
[ 111383, 14012, 707, 62816, 79315, 400, 7008, 39210, 4086, 254, 95701, 3714, 831, 4527, 104643, 4803, 217, 9254, 7704, 47, 12765, 2174, 11907, 83, 153939, 14612, 2967, 3444, 26946, 2565, 70541, 120820, 1284, 959, 26582, 1884, 997, 35378, 418...
[ 0.27392578125, 0.212646484375, 0.05804443359375, 0.23486328125, 0.2005615234375, 0.087646484375, 0.1793212890625, 0.127197265625, 0.057281494140625, 0.12353515625, 0.05401611328125, 0.018646240234375, 0.0014801025390625, 0.09747314453125, 0.09320068359375, 0.09149169921875, 0.0714721...
embed
51131179_c0
51131179
lisp
0
Title: Function with SUCC Problem title: Function with SUCC Tags: lisp, functional-programming, recursion, successor-arithmetics Problem: Function with SUCC I have some problems with this exercise COTO(0,y)=y COTO(x+1,y)=SUCC(SUCC(COTO(x, SUCC(y))) COTO (1,3); COTO (2,2); COTO (3,44) - ? I know that SUCC(2) = 3, for ex...
Function with SUCC Function with SUCC lisp functional-programming recursion successor-arithmetics SUCC COTO Function with SUCC I have some problems with this exercise I know that SUCC(2) = 3, for example, but I still don't have any ideas with this question. Can anybody help ? It's may be LISP language, but no answers f...
[ -0.0034027099609375, 0.0113525390625, 0.0001430511474609375, 0.0250244140625, 0.00173187255859375, -0.000942230224609375, 0.0029754638671875, 0.01446533203125, 0.0157470703125, -0.02392578125, -0.01416015625, -0.03173828125, -0.019287109375, 0.010986328125, 0.018798828125, -0.011352539...
[ 28670, 10763, 678, 16817, 13709, 400, 7008, 123309, 28966, 195625, 39457, 42, 8962, 313, 58796, 44402, 81979, 40970, 2203, 138, 27781, 18, 25647, 9655, 4358, 16970, 9434, 46876, 35166, 1815 ]
[ 0.1533203125, 0.036102294921875, 0.150634765625, 0.193603515625, 0.2646484375, 0.10467529296875, 0.1708984375, 0.1239013671875, 0.10565185546875, 0.13134765625, 0.1556396484375, 0.0152435302734375, 0.071533203125, 0.02825927734375, 0.1986083984375, 0.0706787109375, 0.160400390625, ...
embed
60198166_c0
60198166
lisp
0
Title: Threading functions Problem title: Threading functions Tags: scheme, racket, lisp Problem: Threading functions Is there a simpler way to achieve threading functionality in racket? I know about the threading library but it seems like such a basic functionality that I wonder if there is not some builtin way to do ...
Threading functions Threading functions scheme racket lisp Threading Threading functions Is there a simpler way to achieve threading functionality in racket? I know about the threading library but it seems like such a basic functionality that I wonder if there is not some builtin way to do this. Also, can you express (...
[ -0.0087890625, -0.00909423828125, -0.00286865234375, 0.017578125, -0.0181884765625, -0.0019683837890625, 0.00135040283203125, -0.000514984130859375, -0.004058837890625, -0.059814453125, -0.004150390625, -0.0189208984375, -0.015625, -0.0004730224609375, 0.0108642578125, -0.0091552734375...
[ 136719, 214, 32354, 150370, 673, 27853, 400, 7008, 8781, 42, 3917, 69307, 86997, 123309, 2481, 23, 35773, 1294, 37202, 62822, 32195, 88303, 73, 54, 36510, 6492, 85, 420, 10, 54543 ]
[ 0.21630859375, 0.16357421875, 0.1754150390625, 0.12939453125, 0.123291015625, 0.2413330078125, 0.06292724609375, 0.1177978515625, 0.1285400390625, 0.07464599609375, 0.048614501953125, 0.1297607421875, 0.2296142578125, 0.1744384765625, 0.059722900390625, 0.053436279296875, 0.140869140...
embed
50826649_c0
50826649
lisp
0
Title: Object as a parameter of itself in lisp Problem title: Object as a parameter of itself in lisp Tags: clos, oop, object-initialization, lisp, common-lisp Problem: Object as a parameter of itself in lisp In Python, I would do like this: class foo: def __init__(self): self.x = self Otherwise, now the object is a pa...
Object as a parameter of itself in lisp Object as a parameter of itself in lisp clos oop object-initialization lisp common-lisp Object __init__ self.x Object as a parameter of itself in lisp In Python, I would do like this: Otherwise, now the object is a parameter of itself. How can I do it in common lisp?
[ 0.00848388671875, 0.0257568359375, 0.006866455078125, 0.007659912109375, -0.0084228515625, -0.0184326171875, 0.0286865234375, 0.0130615234375, -0.0079345703125, -0.0546875, 0.01611328125, -0.0025634765625, -0.0034942626953125, 0.019287109375, 0.0224609375, -0.024169921875, -0.0012207...
[ 134549, 237, 10, 171859, 111, 68034, 400, 7008, 23, 20450, 32500, 36746, 943, 118, 289, 39210, 4086, 254, 15970, 425, 145581, 2806, 54, 1884, 903, 5036, 83, 11249, 831, 442 ]
[ 0.235595703125, 0.09674072265625, 0.06573486328125, 0.252685546875, 0.153076171875, 0.187744140625, 0.1488037109375, 0.209228515625, 0.0190887451171875, 0.10528564453125, 0.130126953125, 0.2266845703125, 0.0007801055908203125, 0.0158843994140625, 0.01264190673828125, 0.146484375, 0.1...
embed
3851502_c0
3851502
lisp
0
Title: Opening an HTML page in a browser from Common Lisp Problem title: Opening an HTML page in a browser from Common Lisp Tags: lisp, browser, common-lisp, file, html Problem: Opening an HTML page in a browser from Common Lisp My Common Lisp program writes out an HTML file. I then want to launch this file in the user...
Opening an HTML page in a browser from Common Lisp Opening an HTML page in a browser from Common Lisp lisp browser common-lisp file html Common Opening HTML Lisp Opening an HTML page in a browser from Common Lisp My Common Lisp program writes out an HTML file. I then want to launch this file in the user's default brows...
[ 0.022216796875, 0.0159912109375, 0.001922607421875, 0.003997802734375, -0.005401611328125, 0.002716064453125, -0.0067138671875, -0.005828857421875, -0.01123046875, -0.044189453125, -0.005767822265625, 0.017333984375, 0.004669189453125, 0.006683349609375, 0.019287109375, -0.021118164062...
[ 13527, 214, 19097, 9191, 23, 31842, 1295, 151301, 1261, 7008, 400, 39210, 4086, 254, 11435, 7693, 1528, 33022, 1810, 3444, 47, 83184, 903, 38937, 114977, 3917, 20594, 11787, 181063 ]
[ 0.17626953125, 0.01230621337890625, 0.22607421875, 0.1461181640625, 0.058685302734375, 0.226318359375, 0.10333251953125, 0.173095703125, 0.1541748046875, 0.19677734375, 0.0911865234375, 0.1395263671875, 0.1265869140625, 0.1376953125, 0.183837890625, 0.19091796875, 0.11431884765625, ...
embed
17938242_c0
17938242
lisp
0
Title: Is there a use for double unquote (double comma) when defining a Lisp macro? Problem title: Is there a use for double unquote (double comma) when defining a Lisp macro? Tags: macros, lisp Problem: Is there a use for double unquote (double comma) when defining a Lisp macro? When one is defining a macro that uses ...
Is there a use for double unquote (double comma) when defining a Lisp macro? Is there a use for double unquote (double comma) when defining a Lisp macro? macros lisp Lisp Is there a use for double unquote (double comma) when defining a Lisp macro? When one is defining a macro that uses a macrolet, or defining a macro t...
[ 0.0181884765625, 0.02197265625, 0.010986328125, 0.0045166015625, -0.004241943359375, 0.02197265625, -0.0035552978515625, 0.0015411376953125, -0.00946044921875, -0.017333984375, -0.026611328125, -0.0228271484375, 0.00970458984375, -0.00836181640625, -0.010498046875, 0.0096435546875, -...
[ 4527, 41929, 51, 68726, 21555, 2661, 96117, 13204, 1261, 7008, 111789, 2685, 10, 3229, 400, 2071, 100, 1974, 61924, 37202, 4, 25, 707, 47, 8966, 3871 ]
[ 0.1856689453125, 0.2218017578125, 0.1549072265625, 0.263916015625, 0.1221923828125, 0.1329345703125, 0.26611328125, 0.1688232421875, 0.151123046875, 0.232177734375, 0.2232666015625, 0.03887939453125, 0.05047607421875, 0.0238800048828125, 0.0853271484375, 0.0168914794921875, 0.0297241...
embed
32416135_c0
32416135
lisp
0
Title: LISP: Run program in Ubuntu Problem title: LISP: Run program in Ubuntu Tags: ubuntu-14.04, common-lisp, lisp, sbcl Problem: LISP: Run program in Ubuntu I am newbie in lisp I have installed Clisp in my ubuntu 14.04 machine and SBCL too. My Program in TextEditor looks like this: ( hello world ) but i am getting th...
LISP: Run program in Ubuntu LISP: Run program in Ubuntu ubuntu-14.04 common-lisp lisp sbcl LISP Run Ubuntu Desktop test.lisp ubuntu-14.04 LISP: Run program in Ubuntu I am newbie in lisp I have installed Clisp in my ubuntu 14.04 machine and SBCL too. My Program in TextEditor looks like this: but i am getting the followi...
[ 0.00665283203125, 0.00830078125, -0.003936767578125, 0.00897216796875, -0.0118408203125, 0.019287109375, 0.02978515625, -0.0037841796875, -0.004791259765625, -0.016845703125, 0.0086669921875, 0.013671875, -0.0003757476806640625, -0.004119873046875, -0.004791259765625, -0.00119018554687...
[ 16970, 9434, 28398, 1528, 23, 116890, 12, 198996, 16249, 7709, 39210, 4086, 254, 400, 7008, 91, 275, 34937, 141423, 3034, 444, 3525, 9014, 20600, 313, 6370, 36279, 90944, 37486, 5792, 7663, 24129, 125270, 748, 33342, 1884, 903, 20949, 25632...
[ 0.165771484375, 0.27392578125, 0.1416015625, 0.1588134765625, 0.09637451171875, 0.2061767578125, 0.01873779296875, 0.1505126953125, 0.1475830078125, 0.14501953125, 0.1026611328125, 0.1536865234375, 0.2266845703125, 0.11004638671875, 0.182861328125, 0.007015228271484375, 0.04040527343...
embed
55859367_c0
55859367
lisp
0
Title: Different initialization, Common Lisp Problem title: Different initialization, Common Lisp Tags: lisp, common-lisp, class Problem: Different initialization, Common Lisp Can I mimic different constructors in CL? To elaborate -- in, say, C++, I can make different constructors for the same class depending on what a...
Different initialization, Common Lisp Different initialization, Common Lisp lisp common-lisp class Different Common Lisp Different initialization, Common Lisp Can I mimic different constructors in CL? To elaborate -- in, say, C++, I can make different constructors for the same class depending on what arguments are pass...
[ 0.0130615234375, 0.020263671875, 0.005706787109375, -0.0067138671875, 0.00946044921875, -0.00616455078125, -0.003570556640625, 0.0032501220703125, 0.014404296875, 0.00201416015625, 0.005340576171875, 0.00909423828125, 0.00836181640625, 0.0257568359375, -0.00469970703125, -0.00656127929...
[ 242520, 61475, 47691, 151301, 1261, 7008, 400, 39210, 4086, 254, 18507, 4171, 87, 324, 21068, 12921, 64549, 25251, 23, 46323, 121151, 313, 37223, 831, 3249, 100, 5701, 96819, 10750, 115081, 54, 903, 678, 92933, 20650, 116071, 91, 22799, 794...
[ 0.190673828125, 0.1470947265625, 0.10784912109375, 0.12158203125, 0.1197509765625, 0.1451416015625, 0.0804443359375, 0.0911865234375, 0.0780029296875, 0.136962890625, 0.1895751953125, 0.071044921875, 0.03472900390625, 0.1409912109375, 0.181640625, 0.2264404296875, 0.184326171875, 0...
embed
10355112_c0
10355112
lisp
0
Title: Why is Lisp so often connected to &quot;Symbolic computation&quot; Problem title: Why is Lisp so often connected to &quot;Symbolic computation&quot; Tags: lisp Problem: Why is Lisp so often connected to "Symbolic computation" We know mathematics have both symbolic and numeric computation. But why is Lisp , as a ...
Why is Lisp so often connected to &quot;Symbolic computation&quot; Why is Lisp so often connected to &quot;Symbolic computation&quot; lisp Why Lisp Symbolic Why is Lisp so often connected to "Symbolic computation" We know mathematics have both symbolic and numeric computation. But why is Lisp , as a common programming ...
[ -0.0023193359375, 0.01953125, 0.01104736328125, 0.0225830078125, -0.00726318359375, 0.024658203125, -0.002471923828125, 0.0113525390625, 0.01177978515625, -0.005218505859375, -0.006622314453125, -0.003631591796875, 0.001007080078125, 0.018798828125, -0.01806640625, 0.003082275390625, ...
[ 44084, 83, 1261, 7008, 221, 27983, 162711, 47, 65183, 36846, 1771, 181135, 1363, 400, 131899, 291, 140363, 41637, 765, 128201, 54744, 15400, 6, 39210, 56037, 449, 46876, 238, 1286, 20903, 63920, 111, 3249, 442, 4127, 100, 44402 ]
[ 0.131103515625, 0.03460693359375, 0.179443359375, 0.2420654296875, 0.06298828125, 0.1259765625, 0.129638671875, 0.06390380859375, 0.0965576171875, 0.1771240234375, 0.1097412109375, 0.169921875, 0.054962158203125, 0.134033203125, 0.2099609375, 0.006072998046875, 0.1165771484375, 0.0...
embed
12482313_c0
12482313
lisp
0
Title: Scheme - have a function return a function Problem title: Scheme - have a function return a function Tags: currying, function, functional-programming, lisp, scheme Problem: Scheme - have a function return a function I want to use this code in the following way: if I enter: ((function1 5) 2) where function1 execu...
Scheme - have a function return a function Scheme - have a function return a function currying function functional-programming lisp scheme Scheme function1 function2 Scheme - have a function return a function I want to use this code in the following way: if I enter: where function1 executes its procedure based off the ...
[ 0.01708984375, 0.01348876953125, -0.011474609375, 0.01904296875, 0.008544921875, 0.024658203125, -0.0030670166015625, -0.0033721923828125, 0.008056640625, -0.033203125, 0.0128173828125, -0.0140380859375, -0.0242919921875, -0.0023956298828125, 0.01153564453125, -0.00164794921875, -0.0...
[ 34702, 282, 765, 10, 32354, 30646, 20, 198555, 214, 123309, 28966, 400, 7008, 150370, 418, 304, 3444, 4527, 903, 18151, 25632, 3917, 2174, 30957, 71924, 90, 50491, 35509, 5773, 190, 136, 98, 116, 5, 2071, 7722, 54 ]
[ 0.239990234375, 0.214599609375, 0.188232421875, 0.11248779296875, 0.2373046875, 0.259521484375, 0.027252197265625, 0.1624755859375, 0.0745849609375, 0.1329345703125, 0.06640625, 0.0239715576171875, 0.1187744140625, 0.1959228515625, 0.05487060546875, 0.122802734375, 0.087890625, 0.1...
embed
21356894_c0
21356894
lisp
0
Title: Does R6RS improve the hygiene of Scheme macros? Problem title: Does R6RS improve the hygiene of Scheme macros? Tags: lisp, scheme Problem: Does R6RS improve the hygiene of Scheme macros? The hygiene of Scheme macros as of R5RS was not fully understood (no clear definition of what it meant to be hygienic and whet...
Does R6RS improve the hygiene of Scheme macros? Does R6RS improve the hygiene of Scheme macros? lisp scheme Does R6RS Scheme Does R6RS improve the hygiene of Scheme macros? The hygiene of Scheme macros as of R5RS was not fully understood (no clear definition of what it meant to be hygienic and whether those properties ...
[ -0.0027008056640625, 0.01361083984375, 0.0174560546875, 0.01019287109375, 0.005645751953125, 0.01806640625, -0.002410888671875, -0.00848388671875, -0.002685546875, 0.0228271484375, 0.019775390625, -0.006927490234375, -0.0157470703125, -0.0201416015625, 0.0157470703125, 0.00382995605468...
[ 627, 910, 15396, 52295, 99824, 13, 34702, 282, 111789, 7, 400, 7008, 150370, 101790, 758, 217064, 34735, 80934, 131148, 186, 1771, 183871, 515, 19946, 939, 4727, 3666, 5726, 71, 16648 ]
[ 0.094970703125, 0.153564453125, 0.2237548828125, 0.1553955078125, 0.2357177734375, 0.1051025390625, 0.19873046875, 0.14453125, 0.18212890625, 0.03302001953125, 0.03851318359375, 0.1220703125, 0.1873779296875, 0.0150146484375, 0.05963134765625, 0.10235595703125, 0.01959228515625, 0....
embed
427332_c0
427332
lisp
0
Title: asdf-installing libraries from the command-line Problem title: asdf-installing libraries from the command-line Tags: lisp, asdf, common-lisp Problem: asdf-installing libraries from the command-line Coming from a Perl background, I have to say I prefer cpan Foo::Bar to the having to start sbcl, (require :asdf-ins...
asdf-installing libraries from the command-line asdf-installing libraries from the command-line lisp asdf common-lisp the asdf-install Foo::Bar asdf-install:install asdf-installing libraries from the command-line Coming from a Perl background, I have to say I prefer cpan Foo::Bar to the having to start sbcl, (require :...
[ 0.00750732421875, -0.0093994140625, -0.01220703125, 0.00396728515625, -0.0198974609375, -0.0084228515625, 0.01385498046875, -0.0233154296875, -0.009033203125, -0.0247802734375, -0.0047607421875, -0.0225830078125, 0.00007486343383789062, 0.00244140625, -0.008056640625, -0.031982421875, ...
[ 237, 71, 420, 80383, 214, 35773, 10484, 1295, 75101, 2256, 400, 7008, 39210, 4086, 254, 9572, 31, 25267, 908, 141, 76615, 12601, 3180, 12, 19441, 4034, 91, 275, 34937, 3181, 162, 9, 77681, 3584, 1299, 23937, 1286, 142267, 903, 10932 ]
[ 0.105712890625, 0.10675048828125, 0.265380859375, 0.184326171875, 0.045562744140625, 0.160888671875, 0.07562255859375, 0.0732421875, 0.1356201171875, 0.1220703125, 0.07611083984375, 0.1531982421875, 0.09967041015625, 0.0736083984375, 0.1441650390625, 0.18115234375, 0.10675048828125, ...
embed
3732173_c0
3732173
lisp
0
Title: Multiple lines comments in Scheme (RnRS) Problem title: Multiple lines comments in Scheme (RnRS) Tags: scheme, comments, lisp, r5rs, code-formatting Problem: Multiple lines comments in Scheme (RnRS) I created this solution: ; use like this: ; (/* content ... */ <default-return>) ; or ; (/* content ... */) => #f ...
Multiple lines comments in Scheme (RnRS) Multiple lines comments in Scheme (RnRS) scheme comments lisp r5rs code-formatting Multiple Scheme RnRS r5rs Multiple lines comments in Scheme (RnRS) I created this solution: But is it really the best or easiest way?
[ -0.0142822265625, 0.016357421875, -0.0079345703125, 0.015625, -0.01226806640625, 0.0108642578125, -0.003814697265625, 0.0130615234375, 0.0137939453125, -0.024169921875, -0.01129150390625, -0.0023651123046875, 0.010009765625, -0.024658203125, -0.004852294921875, 0.0028076171875, 0.003...
[ 19335, 8705, 124519, 24626, 23, 34702, 282, 15396, 1052, 150370, 400, 7008, 4295, 18151, 51727, 75935, 29806, 6183, 2965, 1544, 525, 3917 ]
[ 0.1400146484375, 0.1322021484375, 0.1890869140625, 0.22412109375, 0.034881591796875, 0.1585693359375, 0.133544921875, 0.189208984375, 0.01149749755859375, 0.1993408203125, 0.033660888671875, 0.12066650390625, 0.102294921875, 0.11053466796875, 0.1126708984375, 0.030120849609375, 0.087...
embed
54183567_c0
54183567
lisp
0
Title: What is the most elegant piece of code you saw in a lisp Problem title: What is the most elegant piece of code you saw in a lisp Tags: clojure, common-lisp, lisp, racket, scheme Problem: What is the most elegant piece of code you saw in a lisp I try to find good educational tasks which would be preferable to imp...
What is the most elegant piece of code you saw in a lisp What is the most elegant piece of code you saw in a lisp clojure common-lisp lisp racket scheme What What is the most elegant piece of code you saw in a lisp I try to find good educational tasks which would be preferable to implement in a lisp. I'm asking not abo...
[ 0.005828857421875, 0.0034637451171875, 0.004547119140625, 0.00628662109375, -0.013427734375, 0.021728515625, 0.0042724609375, 0.0048828125, -0.0021820068359375, -0.0277099609375, -0.0113525390625, -0.0203857421875, -0.012939453125, -0.004608154296875, -0.011474609375, -0.006591796875, ...
[ 2684, 27650, 63847, 111, 18151, 24124, 23, 400, 7008, 20450, 461, 107, 39210, 4086, 254, 673, 27853, 150370, 9790, 7413, 4127, 162807, 66211, 12601, 2886, 29479, 113292, 70810, 12283, 208124, 3789, 46876, 182, 820, 28219 ]
[ 0.09832763671875, 0.22998046875, 0.12060546875, 0.06951904296875, 0.1990966796875, 0.1456298828125, 0.037322998046875, 0.1253662109375, 0.18408203125, 0.091064453125, 0.1016845703125, 0.08160400390625, 0.086181640625, 0.0845947265625, 0.1318359375, 0.054595947265625, 0.162841796875, ...
embed
30537110_c0
30537110
lisp
0
Title: Common LISP addition program Problem title: Common LISP addition program Tags: lisp, common-lisp Problem: Common LISP addition program I was trying to write a program that takes in a list of numbers and adds 1 to each element in the list. Similarly if the list is 0 it will return NIL. I tried doing it recursivel...
Common LISP addition program Common LISP addition program lisp common-lisp Common LISP Common LISP addition program I was trying to write a program that takes in a list of numbers and adds 1 to each element in the list. Similarly if the list is 0 it will return NIL. I tried doing it recursively but it shows me no outpu...
[ -0.017578125, 0.0234375, -0.0103759765625, 0.00823974609375, -0.0167236328125, 0.026611328125, -0.0018157958984375, 0.0037994384765625, 0.01129150390625, -0.027099609375, 0.0179443359375, -0.007537841796875, -0.02001953125, 0.00628662109375, 0.011962890625, -0.004913330078125, 0.0089...
[ 151301, 16970, 9434, 66044, 1528, 400, 7008, 39210, 4086, 254, 31577, 33022, 51776, 23, 5303, 101935, 15190, 106, 47, 12638, 12830, 209683, 2174, 83, 757, 1221, 30646, 541, 16444, 37842, 195625, 5844, 45831, 163, 110, 140992, 8781, 1679, 68...
[ 0.1766357421875, 0.126220703125, 0.1962890625, 0.197021484375, 0.1827392578125, 0.1094970703125, 0.1673583984375, 0.146484375, 0.06475830078125, 0.133056640625, 0.073486328125, 0.11651611328125, 0.036651611328125, 0.04949951171875, 0.1551513671875, 0.1431884765625, 0.15478515625, 0...
embed
12209686_c0
12209686
lisp
0
Title: How to replace string in a file with lisp? Problem title: How to replace string in a file with lisp? Tags: replace, lisp Problem: How to replace string in a file with lisp? What's the lisp way of replacing a string in a file. There is a file identified by *file-path* , a search string *search-term* and a replace...
How to replace string in a file with lisp? How to replace string in a file with lisp? replace lisp How How to replace string in a file with lisp? What's the lisp way of replacing a string in a file. There is a file identified by *file-path* , a search string *search-term* and a replacement string *replace-term* . How t...
[ -0.01007080078125, 0.0177001953125, -0.0084228515625, 0.012451171875, -0.025146484375, -0.003173828125, 0.01031494140625, 0.01470947265625, 0.0027618408203125, -0.003570556640625, 0.01904296875, 0.002197265625, -0.01239013671875, -0.01287841796875, 0.00122833251953125, 0.00418090820312...
[ 11249, 47, 91995, 79315, 23, 11435, 678, 400, 7008, 3917, 456, 133266, 214, 207487, 29822, 128405, 33938, 86250, 32166, 23935, 3249, 756, 110527, 71, 107, 3687 ]
[ 0.06103515625, 0.048919677734375, 0.1845703125, 0.26123046875, 0.0933837890625, 0.1954345703125, 0.07452392578125, 0.15478515625, 0.2293701171875, 0.053131103515625, 0.0616455078125, 0.1395263671875, 0.0389404296875, 0.0970458984375, 0.1414794921875, 0.1156005859375, 0.131103515625, ...
embed
39819377_c0
39819377
lisp
0
Title: How to make pair of list in Lisp Problem title: How to make pair of list in Lisp Tags: lisp Problem: How to make pair of list in Lisp I am trying to make pair function with one argument using recursion. But I don't know how to solve this problem. Here is my code: (defun makepair (l) (cond ((null l) nil) ((and (a...
How to make pair of list in Lisp How to make pair of list in Lisp lisp How Lisp How to make pair of list in Lisp I am trying to make pair function with one argument using recursion. But I don't know how to solve this problem. Here is my code: I have to make '(1 d 2 c) to ((1 d) (1 2) (1 c) (d 2) (d c) (2 c))
[ -0.0115966796875, 0.03857421875, 0.00836181640625, 0.01153564453125, 0.0078125, 0.027587890625, -0.0216064453125, -0.00634765625, -0.005523681640625, -0.0198974609375, 0.003021240234375, -0.02001953125, 0.007232666015625, -0.0068359375, -0.004974365234375, -0.003814697265625, 0.00056...
[ 11249, 3249, 80836, 111, 5303, 23, 1261, 7008, 47, 400, 31577, 32354, 678, 1632, 10750, 17368, 195625, 1830, 3714, 86869, 2967, 18151, 765, 41600, 104, 116, 501, 4958, 71, 4700 ]
[ 0.07232666015625, 0.1414794921875, 0.279541015625, 0.130859375, 0.247802734375, 0.08782958984375, 0.1802978515625, 0.255126953125, 0.11614990234375, 0.1553955078125, 0.040863037109375, 0.152099609375, 0.022674560546875, 0.09625244140625, 0.1962890625, 0.007541656494140625, 0.15454101...
embed
42942974_c0
42942974
lisp
0
Title: lisp self-developed recursive reverse function Problem title: lisp self-developed recursive reverse function Tags: lisp, reverse, function Problem: lisp self-developed recursive reverse function I have writte a list reverse function in lisp and I wanted to test it but I had an error and I couldn't solve it the f...
lisp self-developed recursive reverse function lisp self-developed recursive reverse function lisp reverse function lisp self-developed recursive reverse function I have writte a list reverse function in lisp and I wanted to test it but I had an error and I couldn't solve it the function and calling is below : any help...
[ -0.018310546875, 0.02587890625, 0.01214599609375, 0.005523681640625, -0.01092529296875, 0.01385498046875, 0.016845703125, 0.0240478515625, -0.00335693359375, -0.029052734375, 0.00020122528076171875, 0.00567626953125, 0.015869140625, -0.00141143798828125, 0.0181884765625, 0.001937866210...
[ 400, 7008, 15970, 229815, 195625, 5844, 39531, 184, 32354, 297, 2783, 5303, 23, 36663, 3034, 18499, 69427, 18, 86869, 159029, 35064, 4358, 77947 ]
[ 0.1322021484375, 0.199951171875, 0.1251220703125, 0.1419677734375, 0.154052734375, 0.07769775390625, 0.2054443359375, 0.157470703125, 0.1680908203125, 0.00467681884765625, 0.053009033203125, 0.180419921875, 0.0062408447265625, 0.0275115966796875, 0.1522216796875, 0.17333984375, 0.046...
embed
12903340_c0
12903340
lisp
0
Title: add extra bracket to an argument in list Problem title: add extra bracket to an argument in list Tags: lisp, list Problem: add extra bracket to an argument in list Hi guys I am trying to concat a list and to return the first value with extra brackets for example when I call the function (bracket-head '(a b c)) =...
add extra bracket to an argument in list add extra bracket to an argument in list lisp list add extra bracket to an argument in list Hi guys I am trying to concat a list and to return the first value with extra brackets for example when I call the function (bracket-head '(a b c)) => ( (A) B C ). I have done it to give ...
[ 0.00145721435546875, -0.01434326171875, -0.0123291015625, 0.003173828125, -0.00677490234375, 0.015625, 0.00909423828125, 0.00909423828125, 0.01611328125, -0.0269775390625, 0.00860595703125, -0.00958251953125, -0.01025390625, 0.012939453125, -0.00860595703125, -0.0245361328125, -0.009...
[ 15190, 4173, 1620, 27853, 47, 10750, 23, 5303, 400, 7008, 142, 51484, 31577, 158, 4460, 30646, 5117, 34292, 678, 11782, 32354, 2844, 31251, 11, 876, 501, 44357, 284, 335, 313, 16750, 3688, 18151 ]
[ 0.1109619140625, 0.172119140625, 0.204833984375, 0.226318359375, 0.0916748046875, 0.22509765625, 0.062225341796875, 0.201416015625, 0.0797119140625, 0.1376953125, 0.004486083984375, 0.03289794921875, 0.057647705078125, 0.0721435546875, 0.18701171875, 0.1072998046875, 0.06622314453125...
embed
1739486_c0
1739486
lisp
0
Title: Is there a common lisp package naming convention? Problem title: Is there a common lisp package naming convention? Tags: common-lisp, lisp Problem: Is there a common lisp package naming convention? I have created some of my own user packages and have run into a name clash. In Java, the naming convention is to us...
Is there a common lisp package naming convention? Is there a common lisp package naming convention? common-lisp lisp Is there a common lisp package naming convention? I have created some of my own user packages and have run into a name clash. In Java, the naming convention is to use your domain name in the package name...
[ 0.0064697265625, -0.000698089599609375, 0.013427734375, 0.00142669677734375, -0.01385498046875, 0.0255126953125, 0.0146484375, -0.0028228759765625, -0.005615234375, -0.00592041015625, 0.00445556640625, 0.0126953125, -0.00689697265625, -0.0216064453125, -0.01513671875, -0.00072479248046...
[ 2071, 2685, 10, 39210, 400, 7008, 98169, 147453, 101805, 4086, 254, 75935, 10002, 38937, 9351, 5544, 360, 41925, 70, 4527, 77758, 24927, 375, 33209, 29102, 38134, 11814, 158874 ]
[ 0.03204345703125, 0.0811767578125, 0.09161376953125, 0.189453125, 0.1583251953125, 0.222412109375, 0.248291015625, 0.1837158203125, 0.203125, 0.12310791015625, 0.148681640625, 0.0252532958984375, 0.0292205810546875, 0.08123779296875, 0.0904541015625, 0.12310791015625, 0.0163269042968...
embed
1816550_c1
1816550
lisp
1
lisp.init, lisp.start, LispValue, lisp.makeString, test1.lisp, rez1, lisp.load, APPLY, QUOTE, Exception, java.lang.Long.toString, Long.java:242, Long.java:100, java.lang.String.valueOf, String.java:2946, org.jatha.dynatype.StandardLispInteger.toString, StandardLispInteger.java:113, org.jatha.dynatype.StandardLispCons....
lisp.init, lisp.start, LispValue, lisp.makeString, test1.lisp, rez1, lisp.load, APPLY, QUOTE, Exception, java.lang.Long.toString, Long.java:242, Long.java:100, java.lang.String.valueOf, String.java:2946, org.jatha.dynatype.StandardLispInteger.toString, StandardLispInteger.java:113, org.jatha.dynatype.StandardLispCons....
[ 0.0037841796875, 0.0146484375, -0.00396728515625, 0.0233154296875, -0.01080322265625, -0.003021240234375, 0.01123046875, 0.0130615234375, 0.0262451171875, -0.00823974609375, -0.00058746337890625, 0.0031585693359375, -0.014404296875, -0.0007781982421875, 0.007171630859375, 0.01348876953...
[ 400, 7008, 5, 73, 217, 4, 17137, 1261, 856, 50770, 55898, 71713, 214, 3034, 418, 4086, 254, 22194, 63033, 66440, 19917, 232856, 5443, 63928, 79, 330, 3066, 4021, 188, 14407, 24071, 25732, 304, 3559, 27494, 132887, 23351, 29223, 9271, 3091...
[ 0.1689453125, 0.267578125, 0.031280517578125, 0.072021484375, 0.1513671875, 0.03607177734375, 0.1617431640625, 0.1700439453125, 0.153564453125, 0.1942138671875, 0.050323486328125, 0.1444091796875, 0.061920166015625, 0.187255859375, 0.09222412109375, 0.15234375, 0.2142333984375, 0.1...
embed
5153817_c0
5153817
lisp
0
Title: lisp format string that consumes one argument and prints in multiple directive places Problem title: lisp format string that consumes one argument and prints in multiple directive places Tags: string-formatting, lisp Problem: lisp format string that consumes one argument and prints in multiple directive places I...
lisp format string that consumes one argument and prints in multiple directive places lisp format string that consumes one argument and prints in multiple directive places string-formatting lisp One lisp format string that consumes one argument and prints in multiple directive places I want to do this Is there any X fo...
[ -0.01129150390625, 0.0027313232421875, 0.0020904541015625, 0.0026092529296875, -0.0234375, 0.0189208984375, 0.032470703125, 0.0162353515625, 0.01318359375, -0.0177001953125, 0.005401611328125, -0.02294921875, 0.00811767578125, 0.00170135498046875, 0.00732421875, 0.0084228515625, 0.00...
[ 400, 7008, 9384, 79315, 450, 18588, 90, 1632, 10750, 136, 28412, 23, 48716, 8951, 5844, 44677, 51727, 1916, 6561, 3444, 54, 903, 2499, 1193, 831 ]
[ 0.1466064453125, 0.21630859375, 0.258544921875, 0.2421875, 0.000507354736328125, 0.19091796875, 0.0027904510498046875, 0.11785888671875, 0.2132568359375, 0.0321044921875, 0.1795654296875, 0.0760498046875, 0.1805419921875, 0.160400390625, 0.15283203125, 0.1702880859375, 0.197387695312...
embed
29507185_c0
29507185
lisp
0
Title: Get reverse of a list inside the function that returns the list Problem title: Get reverse of a list inside the function that returns the list Tags: scheme, racket, lisp Problem: Get reverse of a list inside the function that returns the list So I have to get the elements under odd indices in reverse. I have wri...
Get reverse of a list inside the function that returns the list Get reverse of a list inside the function that returns the list scheme racket lisp Get Get reverse of a list inside the function that returns the list So I have to get the elements under odd indices in reverse. I have written a function to get me odd index...
[ -0.023193359375, 0.0322265625, 0.0036468505859375, -0.005462646484375, -0.015380859375, 0.010498046875, -0.006500244140625, 0.00101470947265625, 0.021484375, -0.00982666015625, 0.00665283203125, 0.0023345947265625, 0.0031280517578125, 0.00933837890625, 0.01422119140625, 0.0013732910156...
[ 20779, 39531, 184, 111, 5303, 46132, 32354, 30646, 450, 150370, 673, 27853, 400, 7008, 765, 2046, 80854, 1379, 70270, 136044, 23, 59121, 163, 63262, 9077, 3249, 1632, 1556, 195625, 5844 ]
[ 0.1142578125, 0.2122802734375, 0.1890869140625, 0.08746337890625, 0.16796875, 0.1417236328125, 0.1588134765625, 0.1429443359375, 0.020721435546875, 0.1668701171875, 0.041473388671875, 0.1502685546875, 0.05267333984375, 0.1397705078125, 0.0237579345703125, 0.07861328125, 0.15954589843...
embed
6338011_c0
6338011
lisp
0
Title: lisp interpreter in python Problem title: lisp interpreter in python Tags: shell, interpreter, lisp, python, scripting Problem: lisp interpreter in python I'm curious how a part of Peter Norvig's Lisp interpreter works. One can define functions in this Lisp interpreter...how does this work? I'm a beginner, and j...
lisp interpreter in python lisp interpreter in python shell interpreter lisp python scripting lisp interpreter in python I'm curious how a part of Peter Norvig's Lisp interpreter works. One can define functions in this Lisp interpreter...how does this work? I'm a beginner, and just would like a simple explanation. Ther...
[ -0.0026702880859375, 0.0174560546875, -0.01019287109375, 0.0272216796875, -0.0081787109375, 0.0184326171875, 0.0185546875, 0.00408935546875, -0.00634765625, -0.01300048828125, 0.005035400390625, 0.01544189453125, -0.022705078125, -0.018310546875, -0.0025177001953125, 0.0213623046875, ...
[ 400, 7008, 29481, 56, 23, 17198, 50828, 128019, 26499, 214, 193844, 3642, 2831, 7948, 12876, 24299, 1261, 43240, 831, 61924, 32354, 903, 47251, 14602, 4488, 9842, 1679, 8781, 187136, 13648, 62548, 13665, 4086, 6493, 7693 ]
[ 0.1728515625, 0.25146484375, 0.234375, 0.16015625, 0.054473876953125, 0.126220703125, 0.182373046875, 0.148193359375, 0.100341796875, 0.0283203125, 0.04541015625, 0.0157928466796875, 0.048065185546875, 0.1322021484375, 0.09228515625, 0.2064208984375, 0.1829833984375, 0.120178222656...
embed
28174802_c0
28174802
lisp
0
Title: want a simple program illustrating the use of concurrent lisp using threads Problem title: want a simple program illustrating the use of concurrent lisp using threads Tags: concurrency, common-lisp, lisp, sbcl Problem: want a simple program illustrating the use of concurrent lisp using threads I am just getting ...
want a simple program illustrating the use of concurrent lisp using threads want a simple program illustrating the use of concurrent lisp using threads concurrency common-lisp lisp sbcl threads want a simple program illustrating the use of concurrent lisp using threads I am just getting curious about lisp programming a...
[ 0.031005859375, 0.008544921875, -0.0150146484375, 0.01361083984375, -0.00396728515625, 0.00921630859375, 0.0145263671875, 0.0238037109375, 0.01287841796875, -0.0712890625, 0.004608154296875, -0.00396728515625, -0.005889892578125, -0.0020904541015625, 0.01165771484375, 0.000316619873046...
[ 3444, 8781, 1528, 58755, 4527, 133244, 400, 7008, 17368, 86997, 108636, 982, 39210, 4086, 254, 34937, 193844, 56037, 449, 36663, 3642, 20662, 34735, 915, 85763, 132, 32354 ]
[ 0.08489990234375, 0.099853515625, 0.1524658203125, 0.1383056640625, 0.1092529296875, 0.1976318359375, 0.12939453125, 0.2103271484375, 0.04193115234375, 0.2081298828125, 0.11627197265625, 0.09259033203125, 0.07025146484375, 0.1051025390625, 0.1629638671875, 0.1009521484375, 0.05706787...
embed
21838806_c0
21838806
lisp
0
Title: Why won&#x27;t this little Lisp expression work? Problem title: Why won&#x27;t this little Lisp expression work? Tags: lisp Problem: Why won't this little Lisp expression work? This is day 1 of Lisp for me. I am trying to eventually write an if else statement...hopefully sometime this year. I am not sure why thi...
Why won&#x27;t this little Lisp expression work? Why won&#x27;t this little Lisp expression work? lisp Why Lisp Why won't this little Lisp expression work? This is day 1 of Lisp for me. I am trying to eventually write an if else statement...hopefully sometime this year. I am not sure why this is giving me an error? Why...
[ -0.019287109375, 0.02587890625, 0.004852294921875, 0.0052490234375, 0.00872802734375, 0.008056640625, -0.00156402587890625, 0.0084228515625, -0.0142822265625, -0.002532958984375, -0.0020294189453125, 0.00023746490478515625, 0.007080078125, 0.001678466796875, -0.0028533935546875, 0.0162...
[ 44084, 23742, 3768, 18, 903, 10176, 1261, 7008, 125195, 4488, 400, 5155, 106, 31577, 155605, 33022, 2174, 37076, 63805, 1081, 6032, 6602, 9077, 15400, 18499, 150631, 214, 77336, 16093, 83, 51, 99091, 2046, 756, 129745 ]
[ 0.138671875, 0.154052734375, 0.0670166015625, 0.1456298828125, 0.087890625, 0.1483154296875, 0.191650390625, 0.2486572265625, 0.233154296875, 0.15234375, 0.1212158203125, 0.0631103515625, 0.026153564453125, 0.051910400390625, 0.0260467529296875, 0.06494140625, 0.154296875, 0.156127...
embed
53464141_c0
53464141
lisp
0
Title: Can someone explain: (+2 (if (&gt;b a) b a))? Problem title: Can someone explain: (+2 (if (&gt;b a) b a))? Tags: scheme, lisp Problem: Can someone explain: (+2 (if (>b a) b a))? Started working through the exercises in Structure and Interpretation of Computer Programs and I'm stuck on this in the first set of ex...
Can someone explain: (+2 (if (&gt;b a) b a))? Can someone explain: (+2 (if (&gt;b a) b a))? scheme lisp Can Can someone explain: (+2 (if (>b a) b a))? Started working through the exercises in Structure and Interpretation of Computer Programs and I'm stuck on this in the first set of exercises. I've looked up the answer...
[ 0.005950927734375, 0.0159912109375, 0.01611328125, 0.0213623046875, 0.0021820068359375, 0.01531982421875, 0.00653076171875, 0.01214599609375, 0.000919342041015625, -0.010009765625, -0.003448486328125, -0.0150146484375, -0.0291748046875, 0.0037994384765625, 0.005126953125, -0.0178222656...
[ 4171, 22008, 73342, 15, 54651, 3190, 1230, 5386, 275, 10, 876, 150370, 400, 7008, 12, 2740, 81979, 63667, 136, 159838, 40139, 7663, 179933, 98, 903, 5117, 5423, 70, 35166, 305, 1284, 442, 35978, 831, 18, 26366, 3642, 2046, 450, 14012 ]
[ 0.0772705078125, 0.06298828125, 0.2333984375, 0.068115234375, 0.302978515625, 0.2149658203125, 0.060302734375, 0.1435546875, 0.10888671875, 0.1083984375, 0.1217041015625, 0.1783447265625, 0.081298828125, 0.154541015625, 0.03143310546875, 0.15625, 0.138916015625, 0.048370361328125, ...
embed
8631802_c0
8631802
lisp
0
Title: replacing/overwriting standard-output in lisp Problem title: replacing/overwriting standard-output in lisp Tags: lisp, overwrite Problem: replacing/overwriting standard-output in lisp i'm writing a chronometer in common lisp, output is being displayed in standard-output. what i'm trying to do is replace the outp...
replacing/overwriting standard-output in lisp replacing/overwriting standard-output in lisp lisp overwrite replacing/overwriting standard-output in lisp i'm writing a chronometer in common lisp, output is being displayed in standard-output. what i'm trying to do is replace the output without printing a newline and with...
[ -0.006317138671875, 0.015625, 0.00107574462890625, 0.00714111328125, -0.01263427734375, -0.0238037109375, -0.00262451171875, -0.0216064453125, -0.0037384033203125, -0.0079345703125, 0.006683349609375, -0.01007080078125, 0.0205078125, -0.0228271484375, 0.0086669921875, 0.0079345703125, ...
[ 456, 133266, 5465, 199332, 5570, 6056, 7077, 23, 400, 7008, 64, 645, 434, 18781, 214, 32562, 101966, 102220, 39210, 140992, 44116, 31577, 91995, 15490, 2448, 2256, 5609, 96362, 163085, 111, 19686, 2481, 109954, 54, 903 ]
[ 0.06170654296875, 0.1646728515625, 0.1217041015625, 0.260986328125, 0.195068359375, 0.17529296875, 0.1640625, 0.0361328125, 0.1260986328125, 0.184814453125, 0.031982421875, 0.1434326171875, 0.1600341796875, 0.1181640625, 0.0054931640625, 0.109619140625, 0.11572265625, 0.19274902343...
embed
47244489_c0
47244489
lisp
0
Title: How is a Macro Defined in Terms of Itself? Problem title: How is a Macro Defined in Terms of Itself? Tags: macros, lisp, scheme Problem: How is a Macro Defined in Terms of Itself? How can LISP macro's be defined in terms of itself ? I saw a similar definition in LISP In Small Pieces. I thought there might be a b...
How is a Macro Defined in Terms of Itself? How is a Macro Defined in Terms of Itself? macros lisp scheme How Macro Defined Terms Itself How is a Macro Defined in Terms of Itself? How can LISP macro's be defined in terms of itself ? I saw a similar definition in LISP In Small Pieces. I thought there might be a boot stra...
[ 0.0147705078125, 0.0166015625, -0.003204345703125, 0.01409912109375, 0.0050048828125, -0.004608154296875, 0.0067138671875, 0.0135498046875, -0.0009613037109375, -0.01190185546875, -0.004974365234375, -0.004180908203125, -0.0247802734375, 0.00020885467529296875, 0.035400390625, -0.01452...
[ 11249, 4727, 516, 262, 5983, 297, 165504, 111, 1650, 39379, 23, 111789, 7, 400, 7008, 150370, 83, 10, 16970, 9434, 61924, 71, 69407, 68034, 21373, 80934, 360, 105508, 10374, 49935, 6363, 26783, 93402, 14361, 86531, 153210, 8108, 192, 15322 ...
[ 0.06689453125, 0.1732177734375, 0.2333984375, 0.1148681640625, 0.199951171875, 0.043426513671875, 0.25341796875, 0.112060546875, 0.1187744140625, 0.1640625, 0.037506103515625, 0.2607421875, 0.01171875, 0.085693359375, 0.1751708984375, 0.1781005859375, 0.0101318359375, 0.01028442382...
embed
66331780_c0
66331780
lisp
0
Title: Can you get dot representation using &#x27;list&#x27; command in LISP? Problem title: Can you get dot representation using &#x27;list&#x27; command in LISP? Tags: common-lisp, lisp Problem: Can you get dot representation using 'list' command in LISP? I understand that by using cons we could have something like :...
Can you get dot representation using &#x27;list&#x27; command in LISP? Can you get dot representation using &#x27;list&#x27; command in LISP? common-lisp lisp Can LISP Can you get dot representation using 'list' command in LISP? I understand that by using cons we could have something like : And that happens because the...
[ 0.01171875, 0.0159912109375, -0.0025634765625, 0.0234375, -0.01080322265625, 0.00836181640625, -0.009033203125, 0.003448486328125, -0.002716064453125, -0.01324462890625, -0.0081787109375, 0.00872802734375, 0.01019287109375, 0.0011138916015625, -0.026123046875, -0.01007080078125, 0.01...
[ 4171, 2046, 20633, 18811, 1363, 17368, 3768, 6562, 75101, 16970, 9434, 39210, 4086, 254, 400, 7008, 23, 28219, 158, 7, 5809, 38750, 65450, 3934, 6626, 142424, 335, 136, 313, 831, 5701, 16750, 5303 ]
[ 0.048309326171875, 0.07513427734375, 0.237060546875, 0.2265625, 0.058929443359375, 0.059814453125, 0.08306884765625, 0.2423095703125, 0.201416015625, 0.11529541015625, 0.20947265625, 0.052276611328125, 0.043304443359375, 0.11102294921875, 0.04937744140625, 0.1141357421875, 0.00812530...
embed
20697960_c0
20697960
lisp
0
Title: Push error in dolist Problem title: Push error in dolist Tags: lisp Problem: Push error in dolist (defun remov(l) (defparameter z ()) (setq contor 0) (setq counter 0) (dolist (elem l) (if (or (< (expt 2 contor) counter) (> (expt 2 contor) counter)) ((push elem z) (setq contor (+ 1 contor))) (setq counter (+ 1 co...
Push error in dolist Push error in dolist lisp Push Error Illegal ELEM TYPE-ERROR Push error in dolist Why do I get Error: Illegal function object: (PUSH ELEM Z). [condition type: TYPE-ERROR] ? What does this mean?
[ -0.00433349609375, 0.0069580078125, -0.01287841796875, 0.001251220703125, -0.0264892578125, 0.04345703125, -0.00396728515625, -0.006805419921875, -0.0035552978515625, -0.006683349609375, 0.005035400390625, -0.0029296875, 0.00787353515625, -0.0244140625, 0.01007080078125, 0.007110595703...
[ 114405, 18499, 23, 54, 6562, 400, 7008, 212059, 891, 86966, 241, 100191, 95267, 21907, 12501, 14255, 44084, 2046, 32354, 36746, 141990, 841, 567, 126940, 10644, 1052, 29459 ]
[ 0.2392578125, 0.1905517578125, 0.06475830078125, 0.1136474609375, 0.231689453125, 0.045257568359375, 0.101806640625, 0.1903076171875, 0.06201171875, 0.19189453125, 0.0285186767578125, 0.1995849609375, 0.097412109375, 0.06964111328125, 0.09332275390625, 0.1187744140625, 0.011856079101...
embed
61178019_c0
61178019
lisp
0
Title: Understanding parentheticals on let Problem title: Understanding parentheticals on let Tags: lisp, scheme Problem: Understanding parentheticals on let I'm having a hard time understanding the syntax of let vs some of the other statements. For example, a "normal" statement has one parentheses: (+ 2 2) $2 = 4 Yet ...
Understanding parentheticals on let Understanding parentheticals on let lisp scheme Understanding Understanding parentheticals on let I'm having a hard time understanding the syntax of let vs some of the other statements. For example, a "normal" statement has one parentheses: Yet the let statement has two: Why is this ...
[ 0.00110626220703125, 0.0098876953125, -0.01019287109375, 0.040771484375, -0.006591796875, 0.020751953125, 0.000690460205078125, 0.006256103515625, 0.0201416015625, -0.01397705078125, -0.00074005126953125, -0.044677734375, -0.0045166015625, 0.0279541015625, 0.004058837890625, -0.0108032...
[ 9626, 144057, 49129, 1448, 21533, 7, 98, 2633, 400, 7008, 150370, 7941, 1733, 100094, 6002, 86531, 20209, 3789, 63805, 33176, 1556, 1632, 35412, 90, 63519, 6626, 44084, 83, 903, 221, 7413, 32233, 55681, 37629, 5941, 3884, 10932, 67842, 5576...
[ 0.082763671875, 0.0997314453125, 0.1563720703125, 0.1461181640625, 0.173828125, 0.0274658203125, 0.084228515625, 0.2225341796875, 0.062103271484375, 0.1575927734375, 0.1405029296875, 0.0271453857421875, 0.0199737548828125, 0.1025390625, 0.045501708984375, 0.1693115234375, 0.051177978...
embed
34003597_c0
34003597
lisp
0
Title: Abort function after X seconds - lisp Problem title: Abort function after X seconds - lisp Tags: lisp, clisp, common-lisp Problem: Abort function after X seconds - lisp I've been searching a way to stop a function after X seconds on lisp and I haven't found anything and have no ideia how to do it. It's for findi...
Abort function after X seconds - lisp Abort function after X seconds - lisp lisp clisp common-lisp Abort Abort function after X seconds - lisp I've been searching a way to stop a function after X seconds on lisp and I haven't found anything and have no ideia how to do it. It's for finding heuristic weights on a functio...
[ -0.00543212890625, 0.0028076171875, 0.01190185546875, -0.0201416015625, -0.0169677734375, 0.00153350830078125, 0.007232666015625, 0.021728515625, -0.0137939453125, -0.045654296875, -0.007476806640625, -0.0130615234375, -0.01397705078125, -0.017822265625, 0.0240478515625, 0.007568359375...
[ 3157, 19135, 32354, 7103, 1193, 94131, 400, 7008, 95701, 39210, 4086, 254, 157318, 3917, 47, 7279, 10, 98, 38246, 14037, 45691, 3642, 54, 442, 90791, 764, 474, 48242, 57888, 120, 43291, 6712, 6494, 1528, 11675, 1286, 496, 2301, 18, 3444, ...
[ 0.1539306640625, 0.2392578125, 0.23681640625, 0.1614990234375, 0.1685791015625, 0.2314453125, 0.1558837890625, 0.2218017578125, 0.0819091796875, 0.09124755859375, 0.13232421875, 0.141845703125, 0.05224609375, 0.07562255859375, 0.1070556640625, 0.2435302734375, 0.06427001953125, 0.0...
embed
43894349_c0
43894349
lisp
0
Title: toy languages Multiplying without using * Problem title: toy languages Multiplying without using * Tags: recursion, lisp Problem: toy languages Multiplying without using * I'm making a Lisp like Toy Languages these days. but stuck in problem that making a multiply function using without *. such as DEFUN MULT(x y...
toy languages Multiplying without using * toy languages Multiplying without using * recursion lisp Multiplying DEFUN MULT y-1 toy languages Multiplying without using * I'm making a Lisp like Toy Languages these days. but stuck in problem that making a multiply function using without *. such as DEFUN MULT(x y) add(add(x...
[ -0.0130615234375, 0.041015625, 0.0068359375, 0.0159912109375, -0.00848388671875, 0.0036773681640625, -0.000518798828125, 0.00897216796875, -0.00130462646484375, -0.058837890625, 0.00860595703125, -0.025634765625, -0.013427734375, 0.0003662109375, 0.01556396484375, -0.01806640625, 0.0...
[ 72713, 46876, 19335, 62479, 15490, 17368, 661, 195625, 1830, 400, 7008, 202001, 14006, 82643, 113, 5759, 20662, 1261, 109451, 83658, 13312, 179933, 2967, 6024, 32354, 276, 425, 15190, 4028, 110218, 5844, 55300, 54241, 40956, 678 ]
[ 0.2244873046875, 0.186767578125, 0.11279296875, 0.1595458984375, 0.1302490234375, 0.0849609375, 0.1458740234375, 0.13720703125, 0.030426025390625, 0.10418701171875, 0.1771240234375, 0.128662109375, 0.1326904296875, 0.164794921875, 0.09332275390625, 0.09423828125, 0.004425048828125, ...
embed
73494346_c1
73494346
lisp
1
|) (EXPT |_2| |_1|))) ; --> FUNCTION + * NTH SB-C::%REST-REF AND IF ; ==> ; NIL ; ; caught STYLE-WARNING: ; This is not a NUMBER: ; NIL ; See also: ; The SBCL Manual, Node "Handling of Types" ; ; caught STYLE-WARNING: ; This is not a NUMBER: ; NIL ; See also: ; The SBCL Manual, Node "Handling of Types" Code signals: SB...
|) (EXPT |_2| |_1|))) ; --> FUNCTION + * NTH SB-C::%REST-REF AND IF ; ==> ; NIL ; ; caught STYLE-WARNING: ; This is not a NUMBER: ; NIL ; See also: ; The SBCL Manual, Node "Handling of Types" ; ; caught STYLE-WARNING: ; This is not a NUMBER: ; NIL ; See also: ; The SBCL Manual, Node "Handling of Types" Code signals: SB...
[ -0.0101318359375, -0.002777099609375, 0.0107421875, 0.0208740234375, 0.0146484375, 0.012939453125, -0.004425048828125, 0.00537109375, 0.007080078125, 0.0084228515625, 0.0167236328125, -0.0031890869140625, -0.0004119873046875, -0.000240325927734375, 0.00811767578125, 0.01025390625, 0....
[ 58745, 16, 26939, 22693, 304, 115187, 32149, 2819, 129908, 136258, 441, 997, 661, 541, 23415, 90944, 9, 3949, 34465, 618, 11766, 919, 48762, 55449, 16444, 156892, 6, 224170, 60873, 25795, 3293, 83, 959, 10, 109020, 24480, 37486, 111021, 438...
[ 0.0670166015625, 0.031646728515625, 0.060333251953125, 0.15087890625, 0.0288848876953125, 0.061798095703125, 0.037109375, 0.00164794921875, 0.03179931640625, 0.1607666015625, 0.1708984375, 0.125732421875, 0.0289764404296875, 0.10699462890625, 0.1983642578125, 0.20458984375, 0.1168212...
embed
37764046_c1
37764046
lisp
1
: ((2 5) ((4 10) (6 20))) (2 4 6 20) ((5) (10) () 20) As you can see, the first function won't filter values in sublists and the second leaves extraneous sublists I would need to filter out with an enumerate function. I really tried every variation of car and cdr I could think of and this was the closest I came. It cle...
: ((2 5) ((4 10) (6 20))) (2 4 6 20) ((5) (10) () 20) As you can see, the first function won't filter values in sublists and the second leaves extraneous sublists I would need to filter out with an enumerate function. I really tried every variation of car and cdr I could think of and this was the closest I came. It cle...
[ -0.005584716796875, 0.03515625, -0.005126953125, -0.0042724609375, -0.000637054443359375, 0.0272216796875, -0.00555419921875, 0.01116943359375, 0.00188446044921875, -0.01165771484375, -0.00823974609375, -0.01531982421875, -0.0164794921875, 0.003143310546875, -0.007171630859375, -0.0012...
[ 152, 54753, 21162, 105801, 209, 16156, 387, 32149, 4700, 201, 305, 16, 124534, 17857, 1957, 5117, 32354, 23742, 18, 46312, 142424, 23, 1614, 6562, 70, 17932, 31358, 4173, 86, 3871, 1810, 189085, 67, 6183, 37842, 11907, 143834, 2258, 56329, ...
[ 0.0228118896484375, 0.093505859375, 0.1790771484375, 0.1334228515625, 0.1485595703125, 0.0712890625, 0.1822509765625, 0.08782958984375, 0.0579833984375, 0.1297607421875, 0.0841064453125, 0.038177490234375, 0.1522216796875, 0.152099609375, 0.017547607421875, 0.06591796875, 0.201293945...
embed
29291131_c0
29291131
lisp
0
Title: How does lisp decide whether to evaluate a list or use it as data? Problem title: How does lisp decide whether to evaluate a list or use it as data? Tags: elisp, lisp Problem: How does lisp decide whether to evaluate a list or use it as data? If you write something like (+ 2 3) , the + is treated as a function, ...
How does lisp decide whether to evaluate a list or use it as data? How does lisp decide whether to evaluate a list or use it as data? elisp lisp How How does lisp decide whether to evaluate a list or use it as data? If you write something like (+ 2 3) , the + is treated as a function, and an error occurs if + does not ...
[ 0.010498046875, 0.0194091796875, 0.0030364990234375, 0.011474609375, -0.0093994140625, 0.01446533203125, 0.016357421875, 0.0031280517578125, 0.002227783203125, -0.00274658203125, -0.00482177734375, -0.03466796875, 0.0047607421875, 0.0013580322265625, -0.01141357421875, -0.0107421875, ...
[ 11249, 400, 7008, 28288, 36766, 151575, 13, 5303, 707, 4527, 237, 2053, 15296, 14602, 33022, 9844, 1884, 22183, 116, 8439, 997, 191607, 32354, 18499, 74918, 959, 80934, 137272, 1974, 501, 12301 ]
[ 0.0623779296875, 0.1728515625, 0.253173828125, 0.1641845703125, 0.055023193359375, 0.1856689453125, 0.03240966796875, 0.20947265625, 0.03167724609375, 0.1201171875, 0.09765625, 0.1959228515625, 0.0914306640625, 0.01788330078125, 0.140380859375, 0.0098876953125, 0.03369140625, 0.151...
embed
66897828_c0
66897828
lisp
0
Title: `define` with and without a `lambda` Problem title: `define` with and without a `lambda` Tags: scheme, racket, lisp, lambda Problem: `define` with and without a `lambda` I've a beginner (if that) to lisp/scheme and come across the following two ways to "create a function" in scheme: (define (square x) (* xx)) An...
`define` with and without a `lambda` `define` with and without a `lambda` scheme racket lisp lambda `define` with and without a `lambda` I've a beginner (if that) to lisp/scheme and come across the following two ways to "create a function" in scheme: And: What is the difference between these two? Are both versions supp...
[ 0.006744384765625, 0.025390625, -0.00848388671875, -0.0048828125, 0.000934600830078125, -0.01123046875, -0.0029449462890625, 0.0022125244140625, 0.00482177734375, -0.0037689208984375, 0.00064849853515625, -0.03271484375, -0.020751953125, -0.0289306640625, 0.0069580078125, 0.01171875, ...
[ 112, 64552, 678, 136, 15490, 143, 6492, 85, 150370, 673, 27853, 400, 7008, 21, 10, 1679, 7560, 282, 36880, 6626, 48322, 7612, 2182, 32354, 23, 60212, 17721, 15044, 11389, 8060, 8996, 180300 ]
[ 0.0701904296875, 0.20166015625, 0.0889892578125, 0.050689697265625, 0.1148681640625, 0.048065185546875, 0.1817626953125, 0.1651611328125, 0.233154296875, 0.03643798828125, 0.1590576171875, 0.09857177734375, 0.20068359375, 0.06512451171875, 0.014984130859375, 0.0273284912109375, 0.111...
embed
44031419_c0
44031419
lisp
0
Title: How to read a HTTP cookie in Common Lisp? Problem title: How to read a HTTP cookie in Common Lisp? Tags: cgi, lisp, common-lisp, cookies, http Problem: How to read a HTTP cookie in Common Lisp? I would like to make a single CGI program in Common Lisp, that reads a cookie. It is clear to me that I can send a Cook...
How to read a HTTP cookie in Common Lisp? How to read a HTTP cookie in Common Lisp? cgi lisp common-lisp cookies http How HTTP Common Lisp How to read a HTTP cookie in Common Lisp? I would like to make a single CGI program in Common Lisp, that reads a cookie. It is clear to me that I can send a Cookie by sending HTTP h...
[ -0.00836181640625, -0.0026397705078125, -0.0015411376953125, -0.00042724609375, 0.00830078125, 0.025634765625, -0.00074005126953125, 0.01153564453125, -0.0174560546875, -0.015869140625, 0.0030059814453125, -0.003936767578125, -0.022705078125, -0.00555419921875, 0.01251220703125, -0.018...
[ 11249, 47, 12301, 135913, 9332, 23, 151301, 1261, 7008, 10, 735, 400, 39210, 4086, 254, 4136, 1621, 1884, 3249, 11001, 313, 18027, 1528, 34735, 831, 25379, 37704, 135834, 10336, 3714, 3642, 10723, 8305, 1295, 23282, 17203 ]
[ 0.1070556640625, 0.0758056640625, 0.2308349609375, 0.25634765625, 0.28271484375, 0.094970703125, 0.1785888671875, 0.1597900390625, 0.1961669921875, 0.041351318359375, 0.1507568359375, 0.103515625, 0.14404296875, 0.1063232421875, 0.136474609375, 0.2237548828125, 0.130126953125, 0.01...
embed
67273399_c0
67273399
lisp
0
Title: Scheme allow uppercase define Problem title: Scheme allow uppercase define Tags: scheme, racket, lisp Problem: Scheme allow uppercase define To define a square in scheme I can do the following: (define (square x) (* x x) However, if I use a capital DEFINE , I get an invalid identifier: (DEFINE (square x) (* x x)...
Scheme allow uppercase define Scheme allow uppercase define scheme racket lisp DrRacket Scheme DEFINE Scheme allow uppercase define To define a square in scheme I can do the following: However, if I use a capital DEFINE , I get an invalid identifier: Is there a way to do something like the following?
[ 0.004638671875, 0.0203857421875, -0.004364013671875, 0.0164794921875, -0.00014019012451171875, -0.0135498046875, 0.0029144287109375, -0.00104522705078125, -0.006256103515625, 0.01275634765625, 0.0033111572265625, -0.01129150390625, -0.004150390625, -0.0302734375, 0.0032806396484375, -0...
[ 34702, 282, 63769, 1407, 56, 58437, 61924, 150370, 673, 27853, 400, 7008, 1773, 12248, 202001, 25585, 10, 108047, 23, 831, 54, 25632, 33306, 2174, 4527, 10323, 2046, 56649, 42485, 3917, 1884 ]
[ 0.216796875, 0.106201171875, 0.1553955078125, 0.1134033203125, 0.121826171875, 0.205810546875, 0.25, 0.247802734375, 0.0699462890625, 0.1759033203125, 0.023101806640625, 0.0814208984375, 0.07501220703125, 0.08843994140625, 0.2174072265625, 0.2254638671875, 0.006008148193359375, 0.2...
embed
4056676_c1
4056676
lisp
1
6) (if (numberp (aref *board* 1 2)) (setf (aref *board* 1 2) *marker*) (invalid-selection)))) ((= choice 7) (if (numberp (aref *board* 2 0)) (setf (aref *board* 2 0) *marker*) (invalid-selection)))) ((= choice 8) (if (numberp (aref *board* 2 1)) (setf (aref *board* 2 1) *marker*) (invalid-selection)))) ((= choice 9) (i...
6) (if (numberp (aref *board* 1 2)) (setf (aref *board* 1 2) *marker*) (invalid-selection)))) ((= choice 7) (if (numberp (aref *board* 2 0)) (setf (aref *board* 2 0) *marker*) (invalid-selection)))) ((= choice 8) (if (numberp (aref *board* 2 1)) (setf (aref *board* 2 1) *marker*) (invalid-selection)))) ((= choice 9) (i...
[ -0.0164794921875, -0.00390625, 0.034423828125, 0.009765625, 0.0023651123046875, 0.01153564453125, -0.013916015625, 0.00677490234375, -0.0006561279296875, 0.043212890625, -0.0081787109375, 0.021484375, -0.007354736328125, 0.00811767578125, -0.0186767578125, -0.006195068359375, 0.00631...
[ 35914, 3190, 2606, 1297, 254, 29087, 24351, 106, 4958, 3509, 420, 10015, 56, 77518, 15, 73, 7013, 71, 1428, 58994, 80126, 1369, 44126, 49413, 116, 757, 65034, 4879, 11, 77816, 28864, 26073, 7, 12, 891, 86966, 26265, 151301, 1261, 7008, ...
[ 0.195068359375, 0.10595703125, 0.1229248046875, 0.1319580078125, 0.1812744140625, 0.212158203125, 0.1982421875, 0.0218048095703125, 0.1258544921875, 0.123046875, 0.139404296875, 0.1573486328125, 0.1025390625, 0.0268096923828125, 0.021575927734375, 0.0419921875, 0.1595458984375, 0.0...
embed
61342034_c0
61342034
lisp
0
Title: Circular dependency between functions in Common Lisp Problem title: Circular dependency between functions in Common Lisp Tags: function, common-lisp, lisp Problem: Circular dependency between functions in Common Lisp Is it possible to define two functions calling each other in Common LISP without receiving style...
Circular dependency between functions in Common Lisp Circular dependency between functions in Common Lisp function common-lisp lisp Circular Common Lisp Circular dependency between functions in Common Lisp Is it possible to define two functions calling each other in Common LISP without receiving style warning? My best ...
[ 0.00762939453125, -0.004791259765625, -0.00811767578125, 0.0218505859375, -0.01483154296875, -0.006500244140625, 0.00714111328125, 0.0093994140625, 0.000637054443359375, -0.0296630859375, -0.0108642578125, 0.03271484375, -0.0147705078125, 0.0194091796875, 0.03857421875, 0.0107421875, ...
[ 209449, 42, 42548, 27771, 17721, 32354, 151301, 1261, 7008, 39210, 4086, 254, 400, 7722, 61924, 6626, 7, 159029, 12638, 3789, 16970, 9434, 15490, 217063, 20623, 1631, 592, 2965, 6528, 86869, 2967, 8337, 17932, 10750, 27650 ]
[ 0.1920166015625, 0.08770751953125, 0.2049560546875, 0.07684326171875, 0.1336669921875, 0.211669921875, 0.1680908203125, 0.153564453125, 0.17578125, 0.1258544921875, 0.1021728515625, 0.1016845703125, 0.1015625, 0.089599609375, 0.172607421875, 0.135986328125, 0.040252685546875, 0.162...
embed
44184774_c2
44184774
lisp
2
-flap "ɺ") ) do (add-sound :alveolar (car e) (cadr e))) ; Palato-Alveolar Pulmonic Consonants (loop for e in (list '(:fricative "ʃ") '(:fricative "ʒ") '(:approximant "ɹ") ) do (add-sound :palato-alveolar (car e) (cadr e))) ; Retroflex Pulmonic Consonants (loop for e in (list '(:nasal "ɳ") '(:plosive "ʈ") '(:plosive "ɖ"...
-flap "ɺ") ) do (add-sound :alveolar (car e) (cadr e))) ; Palato-Alveolar Pulmonic Consonants (loop for e in (list '(:fricative "ʃ") '(:fricative "ʒ") '(:approximant "ɹ") ) do (add-sound :palato-alveolar (car e) (cadr e))) ; Retroflex Pulmonic Consonants (loop for e in (list '(:nasal "ɳ") '(:plosive "ʈ") '(:plosive "ɖ"...
[ 0.0126953125, 0.0125732421875, -0.0257568359375, 0.01361083984375, -0.00836181640625, 0.03369140625, 0.0128173828125, 0.00946044921875, 0.018310546875, -0.0128173828125, 0.006378173828125, -0.0284423828125, 0.0247802734375, -0.0087890625, -0.00396728515625, -0.039306640625, -0.003997...
[ 20, 420, 6324, 54, 4028, 165207, 289, 272, 31, 320, 3284, 28, 25426, 42, 32149, 2819, 17743, 188, 6210, 21694, 432, 6402, 1657, 1681, 10840, 28354, 100, 23, 6562, 72428, 4935, 245313, 245857, 64101, 247181, 11, 16917, 114441, 44289, 76, ...
[ 0.0267791748046875, 0.1217041015625, 0.278564453125, 0.1622314453125, 0.097900390625, 0.15234375, 0.08642578125, 0.18017578125, 0.0704345703125, 0.165771484375, 0.1956787109375, 0.157958984375, 0.037628173828125, 0.0167694091796875, 0.050933837890625, 0.0479736328125, 0.168212890625,...
embed
8307228_c0
8307228
lisp
0
Title: lisp code excerpt Problem title: lisp code excerpt Tags: lisp, common-lisp Problem: lisp code excerpt i've been reading some lisp code and came across this section, didn't quite understand what it specifically does, though the whole function is supposed to count how many times the letters from a -z appear in an ...
lisp code excerpt lisp code excerpt lisp common-lisp lisp code excerpt i've been reading some lisp code and came across this section, didn't quite understand what it specifically does, though the whole function is supposed to count how many times the letters from a -z appear in an entered text. can anyone explain step ...
[ 0.01953125, -0.0111083984375, -0.012451171875, 0.0213623046875, -0.0062255859375, 0.021728515625, 0.0225830078125, 0.01458740234375, 0.0111083984375, -0.0223388671875, -0.004791259765625, -0.0174560546875, 0.01177978515625, 0.016845703125, 0.00982666015625, -0.0037841796875, 0.006958...
[ 400, 7008, 18151, 1119, 3443, 6328, 39210, 4086, 254, 40059, 28219, 2367, 14602, 28271, 32354, 134598, 54529, 3642, 5941, 20028, 120820, 1295, 10, 20, 169, 108975, 30957, 7986, 73342, 29954, 123087, 442, 209303, 214, 9077 ]
[ 0.1090087890625, 0.17919921875, 0.1519775390625, 0.012542724609375, 0.09393310546875, 0.0178070068359375, 0.1182861328125, 0.1016845703125, 0.140869140625, 0.033050537109375, 0.056304931640625, 0.0193634033203125, 0.04339599609375, 0.00604248046875, 0.1146240234375, 0.0574951171875, ...
embed
63753571_c0
63753571
lisp
0
Title: Why does the position of arguments matter in cons? Problem title: Why does the position of arguments matter in cons? Tags: cons, lisp, list, racket, scheme Problem: Why does the position of arguments matter in cons? Simple code: > (cons null (cons 1 2)) '(() 1 . 2) > (cons (cons 1 2) null) '((1 . 2)) Initially, ...
Why does the position of arguments matter in cons? Why does the position of arguments matter in cons? cons lisp list racket scheme Why Why does the position of arguments matter in cons? Simple code: Initially, I'd expect the result to be the same. I can think of some vague explanations, but would also like to hear a st...
[ 0.0108642578125, 0.00994873046875, 0.006927490234375, 0.0035552978515625, -0.00787353515625, 0.01422119140625, -0.006805419921875, 0.005950927734375, -0.00156402587890625, 0.0101318359375, 0.0172119140625, -0.01385498046875, 0.00457763671875, 0.0123291015625, -0.00933837890625, -0.0121...
[ 44084, 14602, 19069, 111, 10750, 7, 26866, 23, 158, 400, 7008, 5303, 673, 27853, 150370, 70, 60552, 18151, 71, 41206, 16750, 5701, 187136, 1884, 36802, 37515, 6275, 51359, 2886, 12921 ]
[ 0.120849609375, 0.031646728515625, 0.1932373046875, 0.11431884765625, 0.2469482421875, 0.12255859375, 0.1793212890625, 0.071044921875, 0.1903076171875, 0.03173828125, 0.10369873046875, 0.12744140625, 0.01727294921875, 0.1346435546875, 0.1180419921875, 0.0194244384765625, 0.0127487182...
embed
3168282_c0
3168282
lisp
0
Title: CLISP overflow after multiplication Problem title: CLISP overflow after multiplication Tags: lisp, clisp, read-eval-print-loop Problem: CLISP overflow after multiplication i'm trying to get a first lisp program to work using the CLISP implementation, by typing (print (mod (+ (* 28433 (expt 2 7830457) 1)) (expt 1...
CLISP overflow after multiplication CLISP overflow after multiplication lisp clisp read-eval-print-loop CLISP CLISP overflow after multiplication i'm trying to get a first lisp program to work using the CLISP implementation, by typing in the REPL. but it gives me *** - overflow during multiplication of large numbers . ...
[ -0.01324462890625, 0.00823974609375, 0.00811767578125, 0.0096435546875, -0.004364013671875, 0.0029296875, -0.01025390625, 0.00762939453125, 0.007476806640625, -0.0030670166015625, 0.004547119140625, -0.0059814453125, 0.001495361328125, -0.0169677734375, 0.005645751953125, -0.0123901367...
[ 313, 67616, 683, 645, 118664, 7103, 127664, 1363, 400, 7008, 95701, 12301, 1405, 35662, 28354, 31577, 5117, 1528, 4488, 208124, 11417, 214, 23, 9069, 21130, 76199, 24428, 20, 20271, 111, 21334, 101935, 17569, 66139, 61799, 13267, 51606, 6889,...
[ 0.044921875, 0.175048828125, 0.213134765625, 0.134521484375, 0.276611328125, 0.1380615234375, 0.1842041015625, 0.049346923828125, 0.12322998046875, 0.2135009765625, 0.1270751953125, 0.1278076171875, 0.1778564453125, 0.11383056640625, 0.151611328125, 0.0148773193359375, 0.039215087890...
embed
13331207_c0
13331207
lisp
0
Title: Getting values not list for cons in lisp Problem title: Getting values not list for cons in lisp Tags: cons, lisp, list, scheme Problem: Getting values not list for cons in lisp I'm making a function in scheme(lisp) in which I need to cons a list with it reverse, as below: (cons list (cdr (reverse list))) consid...
Getting values not list for cons in lisp Getting values not list for cons in lisp cons lisp list scheme Getting Getting values not list for cons in lisp I'm making a function in scheme(lisp) in which I need to cons a list with it reverse, as below: consider I have this list '(0 1 2), the desired output would be: but I ...
[ -0.0030364990234375, 0.0242919921875, -0.0091552734375, -0.0126953125, -0.0211181640625, 0.0179443359375, 0.005584716796875, -0.00001823902130126953, 0.0016021728515625, -0.03369140625, 0.004669189453125, -0.00113677978515625, 0.000850677490234375, 0.010986328125, -0.00141143798828125, ...
[ 210732, 142424, 959, 5303, 100, 158, 7, 23, 400, 7008, 150370, 32354, 4086, 254, 39531, 184, 2389, 4958, 104851, 140992, 30646, 111, 68034 ]
[ 0.111083984375, 0.2080078125, 0.1573486328125, 0.197021484375, 0.1044921875, 0.1834716796875, 0.11956787109375, 0.0487060546875, 0.1103515625, 0.201171875, 0.137451171875, 0.15966796875, 0.04998779296875, 0.14990234375, 0.1114501953125, 0.1015625, 0.04022216796875, 0.04898071289062...
embed
15817350_c1
15817350
lisp
1
is my first time to code in LISP. UPDATE: (defparameter from 1) (defparameter count 0) (defun prime-numbers (to) (if (> count to)nil (progn (when (is-prime from) (print from) (setf count (+ count 1))) (setf from (+ from 1)) (prime-numbers to))) (when (>= count to) (setf count 0) (setf from 1))) (defun is-prime (n) (co...
is my first time to code in LISP. UPDATE: (defparameter from 1) (defparameter count 0) (defun prime-numbers (to) (if (> count to)nil (progn (when (is-prime from) (print from) (setf count (+ count 1))) (setf from (+ from 1)) (prime-numbers to))) (when (>= count to) (setf count 0) (setf from 1))) (defun is-prime (n) (co...
[ -0.005218505859375, 0.0206298828125, 0.00408935546875, -0.00970458984375, 0.005859375, 0.0166015625, 0.01019287109375, -0.0103759765625, -0.0024261474609375, -0.040283203125, 0.004180908203125, -0.01092529296875, -0.0045166015625, -0.000926971435546875, -0.005828857421875, -0.010925292...
[ 83, 5117, 1733, 18151, 23, 16970, 9434, 161521, 112, 420, 6276, 29089, 1295, 4879, 54529, 757, 16498, 20809, 2606, 1297, 188, 3190, 47, 17324, 75620, 19, 3220, 164, 114654, 35662, 3509, 22183, 106, 2271, 71, 116, 808, 138, 653, 26301, 2...
[ 0.07135009765625, 0.064453125, 0.092529296875, 0.220947265625, 0.0096435546875, 0.16162109375, 0.260009765625, 0.06536865234375, 0.115234375, 0.10687255859375, 0.134521484375, 0.1278076171875, 0.1961669921875, 0.12939453125, 0.1201171875, 0.1197509765625, 0.139892578125, 0.14221191...
embed
26459967_c0
26459967
lisp
0
Title: Add dolist variables to a list in LISP Problem title: Add dolist variables to a list in LISP Tags: lisp, variables, list, loops Problem: Add dolist variables to a list in LISP I have two dolists. The first dolist has a variable i and the inner dolist has a variable j. I want to make a final list li look like ((0...
Add dolist variables to a list in LISP Add dolist variables to a list in LISP lisp variables list loops Add LISP Add dolist variables to a list in LISP I have two dolists. The first dolist has a variable i and the inner dolist has a variable j. I want to make a final list li look like ((00)(01)(10)(11)) gives me ((((NI...
[ -0.0020599365234375, -0.0017852783203125, -0.002838134765625, 0.007232666015625, -0.018798828125, 0.039794921875, -0.0025634765625, 0.01153564453125, -0.00653076171875, -0.0185546875, -0.001922607421875, 0.005645751953125, -0.004241943359375, 0.01416015625, -0.01226806640625, 0.0034484...
[ 29117, 54, 6562, 77336, 7, 47, 5303, 23, 16970, 9434, 400, 7008, 40956, 765, 6626, 5117, 17, 75414, 1647, 3444, 3249, 2704, 6713, 1884, 7049, 100991, 90980, 51421, 48105, 76199, 163, 128258, 7787, 866, 757, 4879, 106 ]
[ 0.130859375, 0.149658203125, 0.26025390625, 0.2396240234375, 0.075927734375, 0.11083984375, 0.2127685546875, 0.03521728515625, 0.1314697265625, 0.235595703125, 0.151123046875, 0.1995849609375, 0.1614990234375, 0.015777587890625, 0.0966796875, 0.034881591796875, 0.1182861328125, 0.1...
embed
6365334_c0
6365334
lisp
0
Title: Lisp commenting convention Problem title: Lisp commenting convention Tags: lisp, conventions, common-lisp, comments Problem: Lisp commenting convention What is the Lisp convention about how many semicolons to use for different kinds of comments (and what the level of indentation for various numbers of semicolons...
Lisp commenting convention Lisp commenting convention lisp conventions common-lisp comments Lisp Lisp commenting convention What is the Lisp convention about how many semicolons to use for different kinds of comments (and what the level of indentation for various numbers of semicolons should be)? Also, is there any con...
[ -0.004547119140625, 0.0196533203125, -0.00860595703125, -0.000644683837890625, -0.0186767578125, 0.0185546875, -0.01446533203125, 0.0079345703125, -0.0015869140625, 0.00830078125, 0.00933837890625, 0.005889892578125, 0.0177001953125, 0.001678466796875, -0.0096435546875, -0.0078125, -...
[ 1261, 7008, 6868, 101805, 400, 39210, 4086, 254, 24626, 70, 3642, 5941, 36137, 22796, 1779, 4527, 12921, 8562, 17366, 18597, 22062, 67842, 101935, 5608, 3229, 40, 46029, 4759, 468, 144227, 2256, 4904, 32316, 48716, 208124 ]
[ 0.11151123046875, 0.2059326171875, 0.165771484375, 0.1951904296875, 0.05096435546875, 0.043670654296875, 0.07110595703125, 0.13330078125, 0.2080078125, 0.00800323486328125, 0.002674102783203125, 0.0711669921875, 0.10552978515625, 0.1412353515625, 0.0806884765625, 0.08465576171875, 0....
embed
65750984_c0
65750984
lisp
0
Title: Scheme cannot define function Problem title: Scheme cannot define function Tags: lisp, scheme Problem: Scheme cannot define function I have such a code, I've checked my braces, but still have no clue why the compiler gives me #f is not a function [sumOfSqaresOfTwoBiggest, (anon)] error ( define (sumOfSqaresOfTwo...
Scheme cannot define function Scheme cannot define function lisp scheme Scheme Scheme cannot define function I have such a code, I've checked my braces, but still have no clue why the compiler gives me error
[ 0.00921630859375, 0.032958984375, -0.013916015625, 0.0130615234375, -0.001007080078125, 0.005401611328125, -0.00014781951904296875, -0.004791259765625, 0.012939453125, -0.021240234375, -0.01153564453125, -0.023193359375, -0.0196533203125, -0.017578125, 0.01708984375, -0.001480102539062...
[ 34702, 282, 53418, 61924, 32354, 400, 7008, 150370, 765, 6044, 18151, 12765, 1620, 5170, 7464, 110, 29786, 15400, 9969, 34759, 76199, 163, 18499 ]
[ 0.206787109375, 0.1453857421875, 0.1966552734375, 0.2481689453125, 0.2255859375, 0.0723876953125, 0.1585693359375, 0.2261962890625, 0.00308990478515625, 0.0615234375, 0.1365966796875, 0.0684814453125, 0.127685546875, 0.08184814453125, 0.01395416259765625, 0.02166748046875, 0.04388427...
embed
1122558_c0
1122558
lisp
0
Title: Looking for a recommendation for an AutoLisp / VisualLisp book Problem title: Looking for a recommendation for an AutoLisp / VisualLisp book Tags: lisp, autolisp Problem: Looking for a recommendation for an AutoLisp / VisualLisp book Can anyone recommend a good introductionary book dealing with AutoLisp and Visu...
Looking for a recommendation for an AutoLisp / VisualLisp book Looking for a recommendation for an AutoLisp / VisualLisp book lisp autolisp Looking AutoLisp VisualLisp Looking for a recommendation for an AutoLisp / VisualLisp book Can anyone recommend a good introductionary book dealing with AutoLisp and VisualLisp? I ...
[ 0.01104736328125, 0.0302734375, -0.004608154296875, 0.00946044921875, -0.0194091796875, 0.0233154296875, -0.006072998046875, 0.01068115234375, 0.0027008056640625, -0.029541015625, 0.00775146484375, -0.007049560546875, -0.0101318359375, -0.006927490234375, -0.00116729736328125, -0.01043...
[ 157268, 100, 67330, 2320, 4396, 9506, 7008, 248, 73372, 12877, 400, 1809, 4086, 254, 35672, 4127, 39864, 1363, 184017, 678, 136, 4537, 1261, 42840, 2685, 106290, 5045, 20117, 7, 129927 ]
[ 0.1346435546875, 0.045684814453125, 0.1331787109375, 0.037384033203125, 0.174560546875, 0.215576171875, 0.2281494140625, 0.036895751953125, 0.1820068359375, 0.1800537109375, 0.1263427734375, 0.1182861328125, 0.13037109375, 0.1339111328125, 0.006072998046875, 0.057281494140625, 0.1064...
embed
4215373_c0
4215373
lisp
0
Title: Implementing basic library functions in LISP (manually) Problem title: Implementing basic library functions in LISP (manually) Tags: append, common-lisp, lisp, list Problem: Implementing basic library functions in LISP (manually) Is there any way by which I can define functions my_list , my_cons , my_append whic...
Implementing basic library functions in LISP (manually) Implementing basic library functions in LISP (manually) append common-lisp lisp list Implementing LISP my_list my_cons my_append Implementing basic library functions in LISP (manually) Is there any way by which I can define functions my_list , my_cons , my_append ...
[ 0.004119873046875, 0.01708984375, 0.015625, 0.016845703125, -0.01385498046875, 0.01483154296875, -0.005157470703125, 0.00384521484375, 0.006927490234375, -0.031494140625, 0.0106201171875, -0.0194091796875, 0.0033111572265625, 0.01458740234375, 0.01397705078125, -0.00054931640625, 0.0...
[ 153941, 62822, 35773, 1294, 32354, 23, 16970, 9434, 669, 34, 25958, 114689, 71, 39210, 4086, 254, 400, 7008, 5303, 759, 6562, 25553, 9007, 3611, 3917, 831, 61924, 7, 51339, 21373, 158, 7413, 208124 ]
[ 0.169189453125, 0.135498046875, 0.1656494140625, 0.09381103515625, 0.20263671875, 0.0178070068359375, 0.1483154296875, 0.2276611328125, 0.07049560546875, 0.0982666015625, 0.1064453125, 0.169921875, 0.1212158203125, 0.0780029296875, 0.0958251953125, 0.138427734375, 0.0992431640625, ...
embed
4158854_c0
4158854
lisp
0
Title: Count positive elements in list Problem title: Count positive elements in list Tags: functional-programming, scheme, lisp Problem: Count positive elements in list Im trying count the number of positive elements in a list. Here is what I have so far: (define howMany (lambda (list) (cond [(not (list? list)) 0] [(n...
Count positive elements in list Count positive elements in list functional-programming scheme lisp Count Count positive elements in list Im trying count the number of positive elements in a list. Here is what I have so far: It keeps giving me an error, "expects type real number", how would you fix this? Oh im calling t...
[ -0.01312255859375, 0.00927734375, -0.0040283203125, -0.01409912109375, 0.0108642578125, 0.0130615234375, -0.000888824462890625, 0.006927490234375, 0.00921630859375, -0.035888671875, -0.00726318359375, -0.0498046875, 0.005126953125, 0.0037384033203125, -0.000858306884765625, 0.006622314...
[ 108210, 24491, 80854, 23, 5303, 123309, 28966, 150370, 400, 7008, 3370, 31577, 54529, 14012, 2060, 13695, 18499, 83613, 24762, 7, 10644, 2773, 30022, 159029, 221 ]
[ 0.1942138671875, 0.25, 0.21630859375, 0.07574462890625, 0.208251953125, 0.11700439453125, 0.09136962890625, 0.10333251953125, 0.07257080078125, 0.169677734375, 0.0266571044921875, 0.08746337890625, 0.1890869140625, 0.139892578125, 0.04510498046875, 0.048431396484375, 0.1492919921875,...
embed
14651130_c0
14651130
lisp
0
Title: Lisp Move Elements in a List Problem title: Lisp Move Elements in a List Tags: list, lisp Problem: Lisp Move Elements in a List I have a list of the form: (or a b c (and d e) f g (and h i) (==> x y)) and I like to move the sublists beginning with and after the or like this: (or (and d e) (and h i) a b c f g (==>...
Lisp Move Elements in a List Lisp Move Elements in a List list lisp Lisp Move Elements List Lisp Move Elements in a List I have a list of the form: and I like to move the sublists beginning with and after the or like this: How can I do this? I'm not sure what's the best way since it's a list and I can't just put an ele...
[ 0.01019287109375, 0.03173828125, -0.008056640625, 0.0302734375, -0.02197265625, 0.031005859375, -0.01416015625, 0.0235595703125, 0.0076904296875, 0.0096435546875, -0.002716064453125, 0.011962890625, -0.009521484375, 0.0033721923828125, -0.01324462890625, -0.006134033203125, 0.0052185...
[ 1261, 7008, 135828, 48325, 23, 32036, 10, 5303, 400, 87, 765, 3173, 1884, 47, 25813, 70, 1614, 6562, 86595, 678, 7103, 707, 903, 11249, 831, 54, 9077, 2965, 3917, 3884, 12830, 89778, 3444, 2053, 45646 ]
[ 0.157958984375, 0.2095947265625, 0.209716796875, 0.2125244140625, 0.058563232421875, 0.20703125, 0.01800537109375, 0.1856689453125, 0.10845947265625, 0.0002727508544921875, 0.0265045166015625, 0.1383056640625, 0.135009765625, 0.05035400390625, 0.19775390625, 0.0545654296875, 0.161376...
embed
67864026_c0
67864026
lisp
0
Title: can anyone explain to me why this lisp code doesn&#x27;t work? Problem title: can anyone explain to me why this lisp code doesn&#x27;t work? Tags: common-lisp, lisp Problem: can anyone explain to me why this lisp code doesn't work? it should count the elements of a list, but says "*** - +: NIL is not a number" (...
can anyone explain to me why this lisp code doesn&#x27;t work? can anyone explain to me why this lisp code doesn&#x27;t work? common-lisp lisp can anyone explain to me why this lisp code doesn't work? it should count the elements of a list, but says "*** - +: NIL is not a number"
[ -0.00897216796875, 0.012939453125, 0.0096435546875, 0.01312255859375, -0.0012359619140625, 0.0240478515625, 0.007232666015625, -0.000911712646484375, 0.0177001953125, -0.01336669921875, 0.00299072265625, -0.02587890625, 0.0137939453125, 0.0079345703125, 0.0081787109375, -0.007049560546...
[ 831, 35672, 73342, 47, 163, 15400, 903, 400, 7008, 18151, 22027, 3768, 18, 4488, 39210, 4086, 254, 5608, 54529, 80854, 5303, 1284, 43047, 20, 997, 12, 541, 16444, 83, 959, 14012 ]
[ 0.03424072265625, 0.05914306640625, 0.148193359375, 0.0139312744140625, 0.0310211181640625, 0.1116943359375, 0.085205078125, 0.10955810546875, 0.1866455078125, 0.193359375, 0.1177978515625, 0.06182861328125, 0.135009765625, 0.12420654296875, 0.10247802734375, 0.0947265625, 0.14477539...
embed
3809602_c1
3809602
lisp
1
) (list-length d)) (let () ( if (equal p d) (match2 nil nil a) (let () (append (match2 (car p) (car d) a)(match2 (cdr p) (cdr d) a) ) ) ) ) ) ) ) ) ) I have match2 being called twice by itself.I want the recursive calls to happen. the moment a call of match2 returns either true or nil the program is terminated i want c...
) (list-length d)) (let () ( if (equal p d) (match2 nil nil a) (let () (append (match2 (car p) (car d) a)(match2 (cdr p) (cdr d) a) ) ) ) ) ) ) ) ) ) I have match2 being called twice by itself.I want the recursive calls to happen. the moment a call of match2 returns either true or nil the program is terminated i want c...
[ -0.009521484375, 0.0206298828125, 0.0087890625, 0.0184326171875, 0.003997802734375, 0.0277099609375, -0.00311279296875, 0.004058837890625, 0.025390625, -0.01116943359375, 0.0181884765625, -0.02587890625, 0.00775146484375, -0.01220703125, 0.0093994140625, -0.003265380859375, 0.0132446...
[ 1388, 6562, 23986, 104, 1974, 2174, 71723, 915, 98753, 304, 17324, 10, 9007, 3611, 3284, 7569, 14858, 8035, 35839, 186351, 390, 68034, 3444, 195625, 5844, 11782, 53383, 3095, 30646, 29568, 1528, 121011, 6226, 115081, 4420, 47, 96362, 765, 2...
[ 0.008453369140625, 0.16162109375, 0.039642333984375, 0.087646484375, 0.1243896484375, 0.055938720703125, 0.1328125, 0.05560302734375, 0.2213134765625, 0.2171630859375, 0.1402587890625, 0.0704345703125, 0.04193115234375, 0.078125, 0.114013671875, 0.043609619140625, 0.251953125, 0.03...
embed
19309478_c0
19309478
lisp
0
Title: looping previously defined function Problem title: looping previously defined function Tags: lisp, clojure Problem: looping previously defined function My goal is to iterate a function that I wrote, arbitrarily called gorilla, j times. Gorilla takes sequences as arguments. However, the code is riddled with error...
looping previously defined function looping previously defined function lisp clojure looping previously defined function My goal is to iterate a function that I wrote, arbitrarily called gorilla, j times. Gorilla takes sequences as arguments. However, the code is riddled with errors (not on purpose), and returns key mu...
[ 0.002655029296875, 0.01904296875, -0.0281982421875, 0.00189208984375, 0.01165771484375, -0.01043701171875, -0.0008544921875, -0.01373291015625, 0.0024871826171875, -0.0458984375, 0.00034332275390625, 0.01129150390625, -0.021240234375, 0.01953125, 0.0225830078125, 0.00189208984375, -0...
[ 40956, 214, 198395, 61924, 71, 32354, 400, 7008, 20450, 461, 107, 69236, 17, 8560, 67, 54397, 61799, 416, 7563, 2298, 1647, 20028, 12035, 51776, 26513, 5170, 237, 10750, 18151, 31351, 136709, 18499, 60042, 30646, 22799, 8110, 186, 892, 1505...
[ 0.20703125, 0.0997314453125, 0.20166015625, 0.2171630859375, 0.04229736328125, 0.2059326171875, 0.07952880859375, 0.162353515625, 0.113525390625, 0.1358642578125, 0.107177734375, 0.1517333984375, 0.021087646484375, 0.2003173828125, 0.07586669921875, 0.08917236328125, 0.06591796875, ...
embed
69768298_c0
69768298
lisp
0
Title: AutoCAD LISP automatizing polyline drawings Problem title: AutoCAD LISP automatizing polyline drawings Tags: autocad, autolisp, lisp Problem: AutoCAD LISP automatizing polyline drawings I would like to ask a question about automatizing polyline drawing. Here I have a FUNC and I want to add more specific commands...
AutoCAD LISP automatizing polyline drawings AutoCAD LISP automatizing polyline drawings autocad autolisp lisp AutoCAD LISP AutoCAD LISP automatizing polyline drawings I would like to ask a question about automatizing polyline drawing. Here I have a FUNC and I want to add more specific commands. What I mean: I want the ...
[ 0.0011749267578125, 0.0032196044921875, -0.00701904296875, 0.01507568359375, -0.0228271484375, 0.0174560546875, 0.00013065338134765625, 0.0037078857421875, -0.003997802734375, -0.018310546875, -0.00032806396484375, -0.0135498046875, 0.0052490234375, 0.00311279296875, -0.027587890625, 0...
[ 4396, 85427, 16970, 9434, 11408, 84382, 35874, 2256, 188304, 1809, 25426, 4086, 254, 400, 7008, 1884, 26458, 9655, 136258, 441, 15190, 1286, 29458, 75101, 29459, 3444, 95486, 19667, 135355, 191082, 5423, 13315, 10644, 47, 114122, 18151 ]
[ 0.05767822265625, 0.13720703125, 0.1041259765625, 0.1787109375, 0.208251953125, 0.10986328125, 0.1591796875, 0.1966552734375, 0.1485595703125, 0.041595458984375, 0.0694580078125, 0.041351318359375, 0.08154296875, 0.0697021484375, 0.10491943359375, 0.002777099609375, 0.033294677734375...
embed
3605453_c0
3605453
lisp
0
Title: How is my LISP function an unbound variable? Problem title: How is my LISP function an unbound variable? Tags: lisp, common-lisp Problem: How is my LISP function an unbound variable? I define a function in LISP, and it defines correctly. But whenever I try to call it, I get an error saying "The variable FACTORIA...
How is my LISP function an unbound variable? How is my LISP function an unbound variable? lisp common-lisp How LISP How is my LISP function an unbound variable? I define a function in LISP, and it defines correctly. But whenever I try to call it, I get an error saying "The variable FACTORIAL is unbound." I have tried t...
[ 0.01495361328125, 0.0284423828125, -0.006256103515625, -0.00811767578125, -0.007537841796875, 0.004302978515625, 0.0198974609375, -0.00131988525390625, 0.0016021728515625, -0.0184326171875, -0.006927490234375, -0.004913330078125, 0.0029296875, 0.00604248046875, 0.0208740234375, 0.03100...
[ 11249, 83, 759, 16970, 9434, 32354, 142, 51, 99091, 77336, 400, 7008, 39210, 4086, 254, 61924, 26785, 217684, 9790, 11782, 18499, 155816, 186146, 866, 37842, 11787, 1193, 3773, 361, 1261, 108259, 4344, 8407, 4358 ]
[ 0.0675048828125, 0.062744140625, 0.055908203125, 0.1689453125, 0.2392578125, 0.1907958984375, 0.03607177734375, 0.1011962890625, 0.223388671875, 0.250732421875, 0.1099853515625, 0.1583251953125, 0.07843017578125, 0.0875244140625, 0.1229248046875, 0.12646484375, 0.030426025390625, 0...
embed
46415909_c0
46415909
lisp
0
Title: Why does this not evaluate in Scheme? Problem title: Why does this not evaluate in Scheme? Tags: scheme, functional-programming, expression, lisp, racket Problem: Why does this not evaluate in Scheme? I am using the DrRacket environment to try out the Scheme language. I defined sum+1 as follows: (define sum+1 '(...
Why does this not evaluate in Scheme? Why does this not evaluate in Scheme? scheme functional-programming expression lisp racket Why Scheme Why does this not evaluate in Scheme? I am using the DrRacket environment to try out the Scheme language. I defined sum+1 as follows: I was wondering why the following expression d...
[ -0.0166015625, 0.02734375, 0.01287841796875, 0.016845703125, -0.00830078125, -0.00250244140625, 0.005828857421875, -0.0047607421875, 0.00714111328125, -0.02197265625, -0.006103515625, -0.004608154296875, -0.001708984375, -0.0031585693359375, 0.000560760498046875, -0.005584716796875, ...
[ 44084, 14602, 903, 959, 151575, 13, 23, 34702, 282, 150370, 123309, 28966, 125195, 7008, 673, 27853, 1773, 12248, 65998, 46876, 61924, 10554, 21748, 15400, 25632, 30646, 26785, 34292 ]
[ 0.10540771484375, 0.057891845703125, 0.10772705078125, 0.1485595703125, 0.1925048828125, 0.09771728515625, 0.080810546875, 0.1805419921875, 0.166015625, 0.166015625, 0.0938720703125, 0.0650634765625, 0.19873046875, 0.08624267578125, 0.03314208984375, 0.1397705078125, 0.03402709960937...
embed
6752305_c0
6752305
lisp
0
Title: How to get C-x C-e to display only decimal and hexadecimal? Problem title: How to get C-x C-e to display only decimal and hexadecimal? Tags: lisp, hex, emacs, elisp Problem: How to get C-x C-e to display only decimal and hexadecimal? This is a follow-up to How to get C-x C-e to display the result in octal and he...
How to get C-x C-e to display only decimal and hexadecimal? How to get C-x C-e to display only decimal and hexadecimal? lisp hex emacs elisp How C-x C-e x2a o52 How to get C-x C-e to display only decimal and hexadecimal? This is a follow-up to How to get C-x C-e to display the result in octal and hexadecimal by default...
[ 0.0152587890625, -0.0026702880859375, -0.002838134765625, -0.00897216796875, 0.0032806396484375, 0.0211181640625, -0.0196533203125, -0.00128936767578125, 0.004547119140625, 0.0166015625, -0.0213623046875, -0.0179443359375, 0.00096893310546875, 0.0091552734375, 0.005767822265625, -0.013...
[ 11249, 2046, 313, 9, 425, 13, 47, 44116, 4734, 32380, 2749, 136, 764, 3798, 170753, 289, 400, 7008, 352, 2263, 15296, 1022, 304, 11, 36, 12744, 16750, 23, 154447, 141, 114977, 3917, 5608, 27489, 64457 ]
[ 0.064453125, 0.07476806640625, 0.1478271484375, 0.08984375, 0.18701171875, 0.222900390625, 0.05499267578125, 0.1722412109375, 0.1185302734375, 0.169189453125, 0.1265869140625, 0.1123046875, 0.1234130859375, 0.148681640625, 0.1683349609375, 0.07318115234375, 0.045166015625, 0.155395...
embed
4881382_c0
4881382
lisp
0
Title: Function which returns all values associated with a symbol Problem title: Function which returns all values associated with a symbol Tags: lisp, scheme Problem: Function which returns all values associated with a symbol For example, I want a function that gives me all the values assigned to the one I give: -> (g...
Function which returns all values associated with a symbol Function which returns all values associated with a symbol lisp scheme Function which returns all values associated with a symbol For example, I want a function that gives me all the values assigned to the one I give: -> (giveme 'x '((x y) (x z) (b d) (x q))) -...
[ -0.00946044921875, 0.007293701171875, -0.0078125, -0.00689697265625, -0.02392578125, 0.0201416015625, 0.002410888671875, 0.0115966796875, 0.0130615234375, -0.03076171875, 0.015380859375, -0.01348876953125, -0.0035247802734375, -0.0087890625, -0.0152587890625, 0.03076171875, -0.010314...
[ 28670, 10763, 3129, 30646, 7, 756, 142424, 137272, 678, 26582, 400, 7008, 150370, 27781, 3444, 32354, 76199, 163, 70, 95486, 297, 47, 8337, 96259, 282, 425, 113, 97, 275, 104, 8096, 53, 5608, 7225, 136, 1022, 23, 80836, 26458, 22288, 16...
[ 0.164794921875, 0.1060791015625, 0.05975341796875, 0.2125244140625, 0.0792236328125, 0.16015625, 0.22509765625, 0.1883544921875, 0.125244140625, 0.27490234375, 0.137451171875, 0.2197265625, 0.218994140625, 0.0360107421875, 0.1304931640625, 0.227783203125, 0.0836181640625, 0.0292053...
embed
37599881_c0
37599881
lisp
0
Title: swank server *swank-debugger-condition* Problem title: swank server *swank-debugger-condition* Tags: common-lisp, lisp, slime, swank Problem: swank server *swank-debugger-condition* I am new to Lisp, and working in Emacs with Slime, I am constantly getting this error Error: The variable SWANK/SBCL::*SWANK-DEBUGG...
swank server *swank-debugger-condition* swank server *swank-debugger-condition* common-lisp lisp slime swank Error SWANK SBCL SWANK-DEBUGGER-CONDITION swank server *swank-debugger-condition* I am new to Lisp, and working in Emacs with Slime, I am constantly getting this error I have spent a long time googling this and ...
[ 0.0103759765625, 0.01385498046875, -0.005950927734375, -0.0064697265625, -0.01458740234375, 0.01409912109375, 0.007080078125, 0.0172119140625, -0.0003147125244140625, -0.00750732421875, 0.0203857421875, -0.0260009765625, 0.027587890625, -0.0020904541015625, -0.0019989013671875, 0.01647...
[ 68062, 7570, 10723, 3206, 92, 112, 978, 21407, 126940, 39210, 4086, 254, 400, 7008, 34264, 13, 212059, 53912, 605, 90944, 37486, 8399, 15639, 724, 56599, 441, 217361, 1261, 85269, 4439, 82344, 178308, 903, 18499, 110, 91067, 450, 77336, 442...
[ 0.1573486328125, 0.194091796875, 0.207763671875, 0.14697265625, 0.175048828125, 0.08673095703125, 0.16943359375, 0.1282958984375, 0.2340087890625, 0.0667724609375, 0.0706787109375, 0.134033203125, 0.06915283203125, 0.190185546875, 0.1207275390625, 0.14599609375, 0.18408203125, 0.14...
embed
41160271_c0
41160271
lisp
0
Title: File loading difficulties in clisp Problem title: File loading difficulties in clisp Tags: common-lisp, lisp, load, clisp Problem: File loading difficulties in clisp So I am trying to learn Lisp, and I downloaded GNU CLISP 2.49 on my Windows 10 PC. I wrote some code in a file already, and I want to load it from ...
File loading difficulties in clisp File loading difficulties in clisp common-lisp lisp load clisp File example.lisp clisp-2.49 File loading difficulties in clisp So I am trying to learn Lisp, and I downloaded GNU CLISP 2.49 on my Windows 10 PC. I wrote some code in a file already, and I want to load it from the CLISP t...
[ 0.025634765625, 0.005584716796875, 0.001495361328125, 0.006988525390625, -0.03271484375, 0.0125732421875, 0.03173828125, -0.00009775161743164062, 0.00115966796875, -0.031982421875, -0.001373291015625, 0.0093994140625, -0.00634765625, -0.0106201171875, -0.00775146484375, 0.0055541992187...
[ 42724, 72367, 34844, 3387, 23, 95701, 7008, 214, 39210, 4086, 254, 400, 27781, 5428, 12977, 31577, 30698, 1261, 7026, 165132, 313, 67616, 683, 787, 3773, 209, 6107, 54397, 18151, 11435, 21771, 3444, 1295, 33949, 63033, 3355, 11, 33209, 5, ...
[ 0.18896484375, 0.1881103515625, 0.17919921875, 0.076904296875, 0.0792236328125, 0.161865234375, 0.2205810546875, 0.0477294921875, 0.08770751953125, 0.1585693359375, 0.21337890625, 0.1143798828125, 0.142333984375, 0.076904296875, 0.1826171875, 0.02178955078125, 0.017913818359375, 0....
embed
4632030_c0
4632030
lisp
0
Title: Is there some lispy language that seamlessly integrates with Python? Problem title: Is there some lispy language that seamlessly integrates with Python? Tags: lisp, clojure, scheme, python Problem: Is there some lispy language that seamlessly integrates with Python? Is there a language based on S-expressions wit...
Is there some lispy language that seamlessly integrates with Python? Is there some lispy language that seamlessly integrates with Python? lisp clojure scheme python Python Is there some lispy language that seamlessly integrates with Python? Is there a language based on S-expressions with powerful macros that allows as ...
[ 0.01092529296875, 0.0194091796875, 0.007720947265625, 0.00531005859375, -0.02001953125, 0.01190185546875, 0.0025634765625, -0.0130615234375, -0.01177978515625, -0.020751953125, 0.005035400390625, 0.003997802734375, -0.0126953125, -0.00457763671875, 0.00714111328125, -0.017333984375, ...
[ 400, 7, 6493, 46876, 40, 302, 9393, 78779, 90, 678, 145581, 7008, 20450, 461, 107, 150370, 17198, 50828, 3060, 35509, 159, 204629, 113138, 111789, 157353, 51053, 821, 47599, 86531, 66139, 17203, 35773, 27512, 2737, 18 ]
[ 0.1060791015625, 0.07733154296875, 0.263427734375, 0.197998046875, 0.03594970703125, 0.1142578125, 0.1356201171875, 0.1678466796875, 0.07342529296875, 0.114990234375, 0.243408203125, 0.1834716796875, 0.0853271484375, 0.1553955078125, 0.124267578125, 0.119873046875, 0.055206298828125,...
embed
5809101_c0
5809101
lisp
0
Title: How do Lisp (Clojure) and Tcl compare in terms of abstraction and metaprogramming abilities? Problem title: How do Lisp (Clojure) and Tcl compare in terms of abstraction and metaprogramming abilities? Tags: clojure, lisp, tcl Problem: How do Lisp (Clojure) and Tcl compare in terms of abstraction and metaprogramm...
How do Lisp (Clojure) and Tcl compare in terms of abstraction and metaprogramming abilities? How do Lisp (Clojure) and Tcl compare in terms of abstraction and metaprogramming abilities? clojure lisp tcl How Lisp Clojure Tcl How do Lisp (Clojure) and Tcl compare in terms of abstraction and metaprogramming abilities? Bot...
[ 0.01123046875, 0.01251220703125, 0.010986328125, 0.0341796875, -0.0064697265625, -0.01165771484375, -0.0084228515625, 0.0037384033203125, 0.00567626953125, 0.007415771484375, 0.0159912109375, -0.0135498046875, -0.00421142578125, 0.0194091796875, 0.000522613525390625, -0.01287841796875,...
[ 11249, 1261, 7008, 20219, 3408, 136, 384, 34937, 69101, 164789, 1830, 23550, 28966, 77041, 69407, 20450, 461, 107, 400, 808, 51053, 54, 441, 149766, 48903, 4127, 100, 33976, 510, 61687, 18151, 58093, 5201, 60212, 17721, 2856, 1957, 90254, 6...
[ 0.0703125, 0.184326171875, 0.239501953125, 0.1492919921875, 0.2186279296875, 0.04742431640625, 0.123046875, 0.25830078125, 0.1544189453125, 0.181640625, 0.03314208984375, 0.1328125, 0.171630859375, 0.1397705078125, 0.01580810546875, 0.1334228515625, 0.203857421875, 0.1474609375, ...
embed
13444693_c0
13444693
lisp
0
Title: How to ask user input in XLISP? Problem title: How to ask user input in XLISP? Tags: lisp Problem: How to ask user input in XLISP? I am writing a program in XLISP which requires me to ask user input. I have used C language and it was fairly simple in it bt I'm new to LISP and particularly XLISP, which makes a bi...
How to ask user input in XLISP? How to ask user input in XLISP? lisp How XLISP Enter pos1 pos2 How to ask user input in XLISP? I am writing a program in XLISP which requires me to ask user input. I have used C language and it was fairly simple in it bt I'm new to LISP and particularly XLISP, which makes a bit difficult...
[ 0.00299072265625, 0.009521484375, 0.0048828125, 0.0047607421875, -0.018798828125, 0.0478515625, 0.023193359375, 0.0113525390625, 0.004425048828125, -0.0419921875, 0.038330078125, 0.00665283203125, -0.01068115234375, -0.0167236328125, -0.0047607421875, 0.00013446807861328125, 0.009582...
[ 11249, 47, 26458, 38937, 107730, 23, 1193, 67616, 683, 400, 7008, 60816, 3864, 418, 304, 32562, 1528, 144570, 11814, 313, 46876, 8781, 3525, 16970, 9434, 34844, 33938, 7108, 13580, 3444, 33022, 1884, 903 ]
[ 0.09197998046875, 0.042236328125, 0.189697265625, 0.198486328125, 0.2386474609375, 0.0865478515625, 0.1575927734375, 0.183837890625, 0.21337890625, 0.08837890625, 0.166015625, 0.16796875, 0.1600341796875, 0.050140380859375, 0.0927734375, 0.0833740234375, 0.100830078125, 0.045104980...
embed
7583109_c0
7583109
lisp
0
Title: Help understanding this line in lisp Problem title: Help understanding this line in lisp Tags: lisp, common-lisp Problem: Help understanding this line in lisp (defun dump-db () (dolist (cd *db*) (format t "~{~a:~10t~a~%~}~%" cd))) The dolist makes it go through every element of the list *db* with the variable cd...
Help understanding this line in lisp Help understanding this line in lisp lisp common-lisp Help Help understanding this line in lisp The dolist makes it go through every element of the list *db* with the variable cd right? and ~a means print it in a more readable form, but these two confuse me. ~{ ~} does this mean any...
[ 0.00885009765625, 0.00653076171875, -0.0115966796875, 0.0264892578125, -0.026123046875, 0.041015625, -0.005157470703125, -0.00537109375, 0.0008697509765625, 0.0023040771484375, 0.00194549560546875, -0.01397705078125, -0.000518798828125, -0.0101318359375, -0.02880859375, -0.005676269531...
[ 39527, 100094, 903, 13315, 23, 400, 7008, 39210, 4086, 254, 54, 6562, 30482, 738, 8305, 11907, 12830, 5303, 48073, 1639, 678, 77336, 56329, 7108, 136, 6780, 11, 26950, 28412, 1286, 12301, 2886, 3173, 6626, 55681, 184, 24854, 29459, 23937, ...
[ 0.10430908203125, 0.143798828125, 0.0643310546875, 0.1217041015625, 0.050506591796875, 0.095703125, 0.18994140625, 0.11474609375, 0.08746337890625, 0.1639404296875, 0.1419677734375, 0.287353515625, 0.06884765625, 0.052490234375, 0.1400146484375, 0.10430908203125, 0.137451171875, 0....
embed
3272567_c0
3272567
lisp
0
Title: SQLITE user-defined functions in Lisp Problem title: SQLITE user-defined functions in Lisp Tags: common-lisp, sqlite, lisp Problem: SQLITE user-defined functions in Lisp In SQLITE there is a possibility to relatively easily create User-Defined Functions and Aggregates in (extension) languages such as C, Perl, Py...
SQLITE user-defined functions in Lisp SQLITE user-defined functions in Lisp common-lisp sqlite lisp SQLITE Lisp SQLITE user-defined functions in Lisp In SQLITE there is a possibility to relatively easily create User-Defined Functions and Aggregates in (extension) languages such as C, Perl, Python and others. Is there a...
[ 0.037841796875, 0.002685546875, 0.00860595703125, 0.00958251953125, -0.020263671875, -0.0005950927734375, -0.01458740234375, -0.01385498046875, -0.005767822265625, -0.033935546875, -0.00616455078125, -0.0279541015625, -0.01806640625, 0.004150390625, 0.00506591796875, 0.0032196044921875...
[ 80866, 25216, 38937, 112, 5983, 32354, 23, 1261, 7008, 39210, 4086, 254, 95255, 67, 400, 207116, 35845, 72546, 28282, 53400, 187423, 28670, 136, 12342, 68722, 3355, 128872, 46876, 313, 908, 141, 145581, 17368, 237, 111938, 35773, 33139, 11171...
[ 0.156494140625, 0.236328125, 0.1851806640625, 0.10791015625, 0.197021484375, 0.2166748046875, 0.058258056640625, 0.1636962890625, 0.2337646484375, 0.14892578125, 0.1419677734375, 0.1927490234375, 0.1815185546875, 0.1551513671875, 0.101318359375, 0.1387939453125, 0.0288543701171875, ...
embed
2235064_c0
2235064
lisp
0
Title: Common Lisp Exercises/Problems Problem title: Common Lisp Exercises/Problems Tags: common-lisp, lisp Problem: Common Lisp Exercises/Problems I'm working through Practical Common Lisp presently http://www.gigamonkeys.com/book/ It's an excellent book with some practical assignments towards the end, but I'm looking...
Common Lisp Exercises/Problems Common Lisp Exercises/Problems common-lisp lisp Common Lisp Exercises Problems Common Lisp Exercises/Problems I'm working through Practical Common Lisp presently http://www.gigamonkeys.com/book/ It's an excellent book with some practical assignments towards the end, but I'm looking for ba...
[ 0.028076171875, 0.0185546875, -0.003692626953125, -0.00084686279296875, -0.00946044921875, 0.033935546875, -0.006378173828125, -0.00689697265625, 0.025146484375, -0.044677734375, -0.00145721435546875, -0.0125732421875, 0.0004405975341796875, 0.020263671875, 0.0098876953125, 0.011413574...
[ 151301, 1261, 7008, 155534, 5908, 64, 223361, 7, 39210, 4086, 254, 400, 15649, 20697, 8305, 109613, 289, 3796, 19770, 14137, 40881, 12877, 138155, 95486, 3564, 16487, 62822, 44402, 88898, 4527, 32354, 77336, 111789, 42459, 202319, 177953, 4488,...
[ 0.1904296875, 0.18408203125, 0.2041015625, 0.171875, 0.0665283203125, 0.01153564453125, 0.1986083984375, 0.005126953125, 0.1527099609375, 0.1231689453125, 0.1103515625, 0.109619140625, 0.2095947265625, 0.079345703125, 0.033172607421875, 0.1500244140625, 0.024810791015625, 0.0227050...
embed
44596132_c0
44596132
lisp
0
Title: Use package shadowing symbols Problem title: Use package shadowing symbols Tags: lisp, package, common-lisp Problem: Use package shadowing symbols For instance I have this package definition which shadows COMMON-LISP:LISTEN : (defpackage :shadows (:use :common-lisp) (:shadow #:listen) (:export #:listen)) And the...
Use package shadowing symbols Use package shadowing symbols lisp package common-lisp Use Use package shadowing symbols For instance I have this package definition which shadows COMMON-LISP:LISTEN : And then I want to use this package from another package, say What is the purpose of shadow if I cannot actually override ...
[ 0.01416015625, -0.004241943359375, 0.0020599365234375, 0.007354736328125, -0.023681640625, -0.0001888275146484375, 0.0140380859375, 0.035888671875, 0.00750732421875, 0.0014801025390625, 0.002197265625, -0.0189208984375, 0.0135498046875, 0.022216796875, -0.00433349609375, 0.026123046875...
[ 36836, 98169, 208429, 214, 26582, 400, 7008, 39210, 4086, 254, 80934, 31436, 82707, 67616, 683, 21170, 4527, 60042, 111, 53418, 416, 151301, 1261, 17368 ]
[ 0.0887451171875, 0.18798828125, 0.25341796875, 0.09796142578125, 0.196044921875, 0.07763671875, 0.1424560546875, 0.11395263671875, 0.0943603515625, 0.146728515625, 0.09771728515625, 0.01708984375, 0.0931396484375, 0.070068359375, 0.12371826171875, 0.1466064453125, 0.0738525390625, ...
embed
9356742_c0
9356742
lisp
0
Title: Exact terminology of types in Scheme Problem title: Exact terminology of types in Scheme Tags: types, lisp, scheme Problem: Exact terminology of types in Scheme I am looking for a standard doc about types of Scheme. For instance, As types don't need to be explicitly specified in a program, I do not know it is bo...
Exact terminology of types in Scheme Exact terminology of types in Scheme types lisp scheme Exact Scheme LIST LISTE Nat Exact terminology of types in Scheme I am looking for a standard doc about types of Scheme. For instance, As types don't need to be explicitly specified in a program, I do not know it is bool or boole...
[ 0.0189208984375, 0.01434326171875, 0.01104736328125, 0.033203125, -0.013427734375, 0.00445556640625, -0.003875732421875, 0.0130615234375, -0.0025482177734375, 0.00958251953125, 0.00927734375, -0.0247802734375, -0.0224609375, -0.006927490234375, 0.002716064453125, 0.01708984375, 0.012...
[ 202873, 18614, 25443, 52895, 23, 34702, 282, 400, 7008, 150370, 195977, 339, 135201, 68875, 111, 16487, 5570, 51584, 3871, 143726, 58735, 1528, 959, 3714, 83, 142484, 337, 31, 34677, 18, 32036, 14612, 2832, 21068, 125195, 61924, 41600, 116, ...
[ 0.204345703125, 0.1668701171875, 0.09033203125, 0.2418212890625, 0.044158935546875, 0.2015380859375, 0.146240234375, 0.060302734375, 0.14794921875, 0.2078857421875, 0.1551513671875, 0.09857177734375, 0.1268310546875, 0.1707763671875, 0.0067138671875, 0.006744384765625, 0.101867675781...
embed
34686431_c0
34686431
lisp
0
Title: recursive list function in lisp that finds number of times a was present in list Problem title: recursive list function in lisp that finds number of times a was present in list Tags: common-lisp, recursion, lisp Problem: recursive list function in lisp that finds number of times a was present in list ;Question 3...
recursive list function in lisp that finds number of times a was present in list recursive list function in lisp that finds number of times a was present in list common-lisp recursion lisp recursive list function in lisp that finds number of times a was present in list ;Question 3 this function prints out 0 at all time...
[ -0.006134033203125, 0.015869140625, 0.00982666015625, 0.00144195556640625, 0.0128173828125, 0.025146484375, 0.004058837890625, 0.004425048828125, 0.00555419921875, -0.0115966796875, -0.01708984375, -0.0458984375, 0.0054931640625, 0.0089111328125, 0.0037078857421875, -0.006195068359375,...
[ 195625, 5844, 5303, 32354, 400, 7008, 7413, 14012, 20028, 10, 509, 13379, 23, 39210, 4086, 254, 195136, 28412, 1810, 757, 756, 9077, 566, 7730, 44691, 107730 ]
[ 0.1990966796875, 0.11737060546875, 0.220458984375, 0.1773681640625, 0.1011962890625, 0.1888427734375, 0.10687255859375, 0.0863037109375, 0.2034912109375, 0.051788330078125, 0.07958984375, 0.18359375, 0.032470703125, 0.06378173828125, 0.0654296875, 0.11053466796875, 0.018951416015625,...
embed
49461861_c0
49461861
lisp
0
Title: Initialize counter variable in Common Lisp Problem title: Initialize counter variable in Common Lisp Tags: common-lisp, lisp Problem: Initialize counter variable in Common Lisp I want to use a variable inside a Common Lisp function as a counter, started from a desired number and used inside a loop while. (defun ...
Initialize counter variable in Common Lisp Initialize counter variable in Common Lisp common-lisp lisp Initialize Common Lisp Initialize counter variable in Common Lisp I want to use a variable inside a Common Lisp function as a counter, started from a desired number and used inside a loop while. the instructions setq ...
[ 0.008544921875, 0.0164794921875, -0.00445556640625, 0.0238037109375, 0.007598876953125, 0.00482177734375, 0.011474609375, 0.01416015625, 0.00958251953125, -0.037109375, -0.01104736328125, 0.0108642578125, 0.01171875, 0.0181884765625, 0.01953125, 0.01171875, -0.01953125, 0.023925781...
[ 360, 40705, 119066, 105416, 77336, 23, 151301, 1261, 7008, 39210, 4086, 254, 400, 3444, 4527, 46132, 32354, 237, 10, 26859, 1295, 104851, 14012, 11814, 40956, 12960, 167934, 5423, 864, 67466, 959, 5570, 3917, 111240, 95701 ]
[ 0.0467529296875, 0.1573486328125, 0.1375732421875, 0.270751953125, 0.2705078125, 0.06793212890625, 0.18017578125, 0.151123046875, 0.206787109375, 0.09771728515625, 0.0728759765625, 0.114501953125, 0.08331298828125, 0.05767822265625, 0.09613037109375, 0.0953369140625, 0.1343994140625,...
embed
26737646_c0
26737646
lisp
0
Title: in clojure why isn&#x27;t x identified if defined as [x] argument and then referenced as x? in code block? Problem title: in clojure why isn&#x27;t x identified if defined as [x] argument and then referenced as x? in code block? Tags: lisp, clojure Problem: in clojure why isn't x identified if defined as [x] arg...
in clojure why isn&#x27;t x identified if defined as [x] argument and then referenced as x? in code block? in clojure why isn&#x27;t x identified if defined as [x] argument and then referenced as x? in code block? lisp clojure in clojure why isn't x identified if defined as [x] argument and then referenced as x? in cod...
[ 0.01019287109375, 0.0189208984375, -0.006195068359375, 0.007476806640625, 0.00640869140625, 0.034423828125, 0.0244140625, 0.006622314453125, -0.005340576171875, 0.003173828125, 0.00457763671875, -0.013916015625, -0.006927490234375, -0.005218505859375, 0.0027618408203125, 0.018676757812...
[ 20450, 461, 107, 15400, 56112, 3768, 18, 1022, 207487, 61924, 425, 10750, 91067, 237, 18151, 46389, 2174, 400, 7008, 7068, 2046, 83, 47, 32354, 18025 ]
[ 0.0902099609375, 0.12353515625, 0.07073974609375, 0.07073974609375, 0.044189453125, 0.0279693603515625, 0.057708740234375, 0.1458740234375, 0.180419921875, 0.1456298828125, 0.0916748046875, 0.2222900390625, 0.2384033203125, 0.0494384765625, 0.0999755859375, 0.1737060546875, 0.0152893...
embed
63196643_c0
63196643
lisp
0
Title: Lisp Macro Multiple Tasks Problem title: Lisp Macro Multiple Tasks Tags: lisp, if-statement, common-lisp, macros Problem: Lisp Macro Multiple Tasks I have a question about lisp macros. I want to check a condition and, if it's true, to run a few things, not only one. The same for the false way. Can anybody please...
Lisp Macro Multiple Tasks Lisp Macro Multiple Tasks lisp if-statement common-lisp macros Lisp Macro Multiple Tasks YES Lisp Macro Multiple Tasks I have a question about lisp macros. I want to check a condition and, if it's true, to run a few things, not only one. The same for the false way. Can anybody please help??
[ 0.004119873046875, 0.01055908203125, 0.000293731689453125, 0.0177001953125, -0.018798828125, 0.0322265625, 0.010009765625, 0.01434326171875, 0.0086669921875, 0.0035858154296875, 0.0030364990234375, -0.02001953125, -0.01300048828125, -0.004730224609375, 0.00311279296875, 0.0126342773437...
[ 1261, 7008, 4727, 516, 19335, 8705, 9598, 1224, 400, 2174, 61340, 39210, 4086, 254, 111789, 990, 9655, 7, 3444, 12765, 35431, 29568, 47, 11675, 10846, 8966, 959, 1632, 98320, 3917, 37873, 4358 ]
[ 0.183837890625, 0.2357177734375, 0.118896484375, 0.13525390625, 0.1229248046875, 0.09942626953125, 0.2021484375, 0.0176544189453125, 0.168701171875, 0.173828125, 0.11968994140625, 0.0782470703125, 0.1470947265625, 0.1649169921875, 0.239990234375, 0.06549072265625, 0.0645751953125, ...
embed
13959795_c0
13959795
lisp
0
Title: Understanding Common Lisp aref behavior Problem title: Understanding Common Lisp aref behavior Tags: common-lisp, lisp Problem: Understanding Common Lisp aref behavior I don't understand why setf will not work with an array reference returned from a function call. In the below example, why does the final call fa...
Understanding Common Lisp aref behavior Understanding Common Lisp aref behavior common-lisp lisp Understanding Common Lisp Understanding Common Lisp aref behavior I don't understand why setf will not work with an array reference returned from a function call. In the below example, why does the final call fail?
[ 0.005859375, 0.0174560546875, 0.01507568359375, -0.002288818359375, 0.015625, -0.0216064453125, -0.0216064453125, 0.010009765625, 0.00665283203125, 0.0299072265625, 0.005767822265625, 0.038330078125, -0.0076904296875, -0.00799560546875, 0.01953125, -0.03173828125, -0.0029144287109375...
[ 9626, 144057, 151301, 1261, 7008, 621, 420, 123166, 39210, 4086, 254, 400, 28219, 15400, 5423, 1221, 959, 4488, 678, 10298, 53, 91067, 176377, 32354, 11782, 27781, 2704, 35782 ]
[ 0.039093017578125, 0.0615234375, 0.0966796875, 0.120849609375, 0.1268310546875, 0.0687255859375, 0.1903076171875, 0.1268310546875, 0.0552978515625, 0.036865234375, 0.076904296875, 0.062347412109375, 0.041595458984375, 0.048309326171875, 0.1588134765625, 0.0122833251953125, 0.03634643...
embed
3766556_c0
3766556
lisp
0
Title: Finding duplicate atoms in possibly nested lists in LISP Problem title: Finding duplicate atoms in possibly nested lists in LISP Tags: lisp Problem: Finding duplicate atoms in possibly nested lists in LISP I am trying to figure out how to find duplicate atom in possibly nested lists. I have been trying to figure...
Finding duplicate atoms in possibly nested lists in LISP Finding duplicate atoms in possibly nested lists in LISP lisp Finding LISP Finding duplicate atoms in possibly nested lists in LISP I am trying to figure out how to find duplicate atom in possibly nested lists. I have been trying to figure this out all day. If yo...
[ 0.000766754150390625, 0.03515625, -0.000720977783203125, 0.0020294189453125, 0.00104522705078125, 0.0262451171875, -0.0166015625, -0.0103759765625, -0.01055908203125, -0.0245361328125, -0.00750732421875, 0.005767822265625, 0.032958984375, 0.01300048828125, 0.015380859375, 0.02392578125...
[ 26040, 214, 171763, 67, 34627, 7, 23, 144681, 8512, 71, 5303, 16970, 9434, 400, 7008, 31577, 26366, 3642, 47, 7413, 1810, 5155, 5809, 22936, 8337, 62775, 6782, 6183, 3444, 30698, 198343, 111607, 397, 2037, 876, 2806, 30646, 808, 501, 420,...
[ 0.1387939453125, 0.034454345703125, 0.2578125, 0.16162109375, 0.2271728515625, 0.058319091796875, 0.0701904296875, 0.1767578125, 0.196533203125, 0.12158203125, 0.197998046875, 0.1304931640625, 0.2069091796875, 0.1009521484375, 0.1751708984375, 0.04547119140625, 0.06341552734375, 0....
embed