swee

swee / mind.lua

Last active 5 months ago

Like 0

swee revised this gist 1 year ago · fae7ae9

1 file changed, 1 insertion

mind.lua
@@ -4,4 +4,5 @@ do
4 4 if not thought:makesSubjectSad() then
5 5 thought:Destroy()
6 6 end
7 + wait(5)
7 8 end

swee revised this gist 1 year ago · 31ecaa2

1 file changed, 6 insertions, 3 deletions

mind.lua
@@ -1,4 +1,7 @@
1 - thought = mind:getThought()
2 - if not thought:makesSubjectSad() then
3 - thought:Destroy()
1 + while true
2 + do
3 + thought = mind:getThought()
4 + if not thought:makesSubjectSad() then
5 + thought:Destroy()
6 + end
4 7 end

swee revised this gist 1 year ago · bb10c6a

1 file changed, 4 insertions

mind.lua (file created)
@@ -0,0 +1,4 @@
1 + thought = mind:getThought()
2 + if not thought:makesSubjectSad() then
3 + thought:Destroy()
4 + end