Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. [Sora@SoraLaptop lua-5.2.3] $ ./src/lua
  2. Lua 5.2.3 Copyright (C) 1994-2013 Lua.org, PUC-Rio
  3. > myco = coroutine.create(function() admpq = 'asdfghjkl;lolwtfbbqextrem' end)> coroutine.getMemory(myco)
  4. > print(coroutine.getMemory(myco))
  5. 336
  6. > coroutine.resume(myco)
  7. > print(coroutine.getMemory(myco))
  8. 208
  9. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement