Last active
December 17, 2015 01:49
-
-
Save 5HT/5531209 to your computer and use it in GitHub Desktop.
Чат на нитрогене
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body() -> wf:comet_global(fun() -> loop() end,chat), | |
[ #panel{id=history}, #textbox{id=message}, #button{postback=chat}]. | |
event(chat) -> wf:send_global(chat, wf:q(message)), | |
loop() -> receive Message -> wf:insert_bottom(history, #span{text=Message}), wf:flush() end, loop(). |
Отформатируй, будь человеком, на oneliner всё равно не тянет :-)
3я строка какая-то недописанная кмк.
Она недописанная, но работает :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Самый короткий чат в мире :-)