Jump to content

Hello world/Web server: Difference between revisions

Added Julia version
(added ol)
(Added Julia version)
Line 820:
 
with no errors.
 
=={{header|Julia}}==
Requires the HttpServer package to have been previously installed with 'Pkg.add("HttpsServer")'
<lang Julia>using HttpServer
server = Server() do req, res
"Goodbye, World!"
end
run(server, 8080)
</lang>
 
=={{header|Lasso}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.