diff options
author | 0u0 <inkydragon@users.noreply.github.com> | 2018-08-31 10:10:45 +0800 |
---|---|---|
committer | 0u0 <inkydragon@users.noreply.github.com> | 2018-08-31 10:10:45 +0800 |
commit | 6353b66f8a9448f62889c21eab45a44fd02529a3 (patch) | |
tree | d860832fe64a57f263be5cb12e8b5f544f2df105 /zh-cn | |
parent | 207e16a93181e1ccf057a04ca4e1a1a1e2d59491 (diff) |
update Statements outside of code
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/julia-cn.html.markdown | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/zh-cn/julia-cn.html.markdown b/zh-cn/julia-cn.html.markdown index 35c2e2d4..4e97d147 100644 --- a/zh-cn/julia-cn.html.markdown +++ b/zh-cn/julia-cn.html.markdown @@ -11,6 +11,11 @@ translators: lang: zh-cn --- +Julia 是一种新的同像函数式编程语言(homoiconic functional language),它专注于科学计算领域。 +虽然拥有同像宏(homoiconic macros)、一级函数(first-class functions)和底层控制等全部功能,但 Julia 依旧和 Python 一样易于学习和使用。 + +示例代码基于 Julia 1.0.0 + ```julia # 单行注释只需要一个井号 #= 多行注释 @@ -841,3 +846,10 @@ code_native(circle_area, (Float64,)) # nopl (%rax,%rax) # ;} ``` + +## 拓展阅读材料 + +你可以在 [Julia 中文文档](http://docs.juliacn.com/latest/) / [Julia 文档(en)](https://docs.julialang.org/) +中获得关于 Julia 的更多细节。 + +如果有任何问题可以去 [Julia 中文社区](http://discourse.juliacn.com/) / [官方社区(en)](https://discourse.julialang.org/) 提问,大家对待新手都非常的友好。 |