stackless Questions
7
Solved
C++ standard does not mention anything about the stack or the heap, they are implementation specific, which is true.
Even though they are not part of the C++ standard, we end up using them anyway,...
Quadrumanous asked 5/6, 2012 at 16:12
8
Solved
I've heard of stackless languages. However I don't have any idea how such a language would be implemented. Can someone explain?
Kreis asked 19/6, 2009 at 3:22
2
Solved
from How does a stackless language work?
Haskell (as commonly implemented) does not have a call stack;
evaluation is based on graph reduction.
Really? That's interesting, because while I've nev...
Parhe asked 16/11, 2011 at 23:49
9
Solved
It seems that most new programming languages that have appeared in the last 20 years have been written in C. This makes complete sense as C can be seen as a sort of portable assembly language. But ...
Railway asked 18/8, 2010 at 15:30
2
Solved
I've noticed two methods to "message passing". One I've seen Erlang use and the other is from Stackless Python. From what I understand here's the difference
Erlang Style - Messages are sent and qu...
Materials asked 10/2, 2010 at 19:32
2
I would like to write a web based MMO game that will allow users to write AI and run it as part of the game. I plan to use Html5 for graphics and want this to be web based so it can be accessed fro...
Microfiche asked 21/1, 2010 at 1:48
3
Solved
i m trying to design a mmo game using python...
I have evaluated stackless and since it is not the general python and it is a fork, i dont want to use it
I am trying to chose between
pysage...
Taps asked 23/11, 2008 at 3:56
2
By stackless VM I mean implementation which maintains its own stack on the heap instead of using system "C-stack". This has a lot of advantages like continuations and serializable state, but also h...
Predial asked 30/4, 2009 at 9:44
2
Solved
According to this answer
https://stackoverflow.com/questions/551950/what-stackless-programming-languages-are-available/671296#671296
all of these programming languages are stackless
Stackless ...
Eddyede asked 28/4, 2009 at 4:23
4
I am quite excited by the possibility of using languages which have parallelism / concurrency built in, such as stackless python and erlang, and have a firm belief that we'll all have to move in th...
Flatter asked 12/2, 2009 at 14:0
1
© 2022 - 2024 — McMap. All rights reserved.