6 Star 28 Fork 15

Julia语言程序设计/bookexamples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
demo_sleep.jl 459 Bytes
一键复制 编辑 原始数据 按行查看 历史
魏坤 提交于 2018-08-18 11:48 . 适配v1.0
function f()
println("f starting...")
println("f sleep 1...")
sleep(1)
println("f sleep 2...")
sleep(2)
println("f wake up 2.")
println("f finished.")
end
function g()
println("g starting...")
println("g sleep 1...")
sleep(2)
println("g sleep 2...")
sleep(0.3)
println("g wake up 2.")
println("g finished.")
end
t1 = Task(f)
t2 = Task(g)
schedule(t1)
schedule(t2)
# yield()
read(stdin, Char)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Julia
1
https://gitee.com/juliaprog/bookexamples.git
[email protected]:juliaprog/bookexamples.git
juliaprog
bookexamples
bookexamples
master

搜索帮助