Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
The simplest hello world server using Zinc HTTP Components <http://zn.stfx.eu/zn/index.html>
(ZnServer startDefaultOn: 1701)
onRequestRespond: [ :request |
ZnResponse ok: (ZnEntity text: 'Hello World!') ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment