Last active
July 31, 2022 04:50
-
-
Save johnnychen94/6b0f2b6738aaaac03cab56a7e1f4ea77 to your computer and use it in GitHub Desktop.
test curl julia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
println("hello world") | |
x = parse(Float64, ARGS[1]) | |
y = parse(Float64, ARGS[2]) | |
println("x+y = $(x+y)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl -SsLf https://gist.githubusercontent.com/johnnychen94/6b0f2b6738aaaac03cab56a7e1f4ea77/raw/3ceb0571a7054b1fa5b795066ebf342849b6c9e7/hello.jl | julia - 1 2