A good alternative is needed to Jupyter Notebooks

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

A good alternative is needed to Jupyter Notebooks

OmegaSEX
This post was updated on .
CONTENTS DELETED
The author has deleted this message.
Reply | Threaded
Open this post in threaded view
|

Re: A good alternative is needed to Jupyter Notebooks

fschmidt
Administrator
http://www.luan.software/examples/run
http://www.luan.software/examples/run.luan
https://hg.reactionary.software/repo/luan/file/default/src/luan/modules/http/tools/Run.luan

sample code to run:
local Luan = require "luan:Luan.luan"
local error = Luan.error
local range = Luan.range or error()
local Io = require "luan:Io.luan"
local print = Io.print or error()

for i in range(1,10) do
	print(i)
end

http://www.luan.software/examples/shell.html
http://www.luan.software/examples/shell.html.luan
https://hg.reactionary.software/repo/luan/file/default/src/luan/modules/http/tools/Shell.luan

try:
a = 1
a + 1

Is this more than a few days work?