mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
added julia
This commit is contained in:
parent
899027b76c
commit
2a2e850311
8
sheets/_julia/hello
Normal file
8
sheets/_julia/hello
Normal file
@ -0,0 +1,8 @@
|
||||
# to install:
|
||||
# (Debian/Ubuntu) apt-get install julia
|
||||
# (Fedora/CentOS) dnf install julia
|
||||
# (ArchLinux) pacman -S julia
|
||||
# to execute:
|
||||
# julia hello_world.jl
|
||||
#
|
||||
println("hello world")
|
15
sheets/julia
Normal file
15
sheets/julia
Normal file
@ -0,0 +1,15 @@
|
||||
# Julia
|
||||
# high-level dynamic programming language designed to address the needs of high-performance numerical analysis
|
||||
# and computational science while also being effective for general-purpose programming
|
||||
|
||||
# Execute script from the file; pass aditional arguments
|
||||
julia script.jl arg1 arg2
|
||||
|
||||
# Execute command like arguments like script
|
||||
julia -e 'for x in ARGS; println(x); end' foo bar
|
||||
|
||||
# See also:
|
||||
# Julia language cheat sheets at /julia/
|
||||
# list of pages: /julia/:list
|
||||
# learn julia: /julia/:learn
|
||||
# search in pages: /julia/~keyword
|
Loading…
Reference in New Issue
Block a user