变量的赋值 julia> a = 1 # 把 10 赋给变量 a 1 julia> a + 1 # 变量 a 的值加 1 2 julia> a = 4 # 重新赋值给变量 a 4 julia> b = 1.2 # 把浮点型赋给变量 b 1.2 julia> c = -3 # 把负数赋给变量 c -3 julia> s = "Hello World" # 把字符串赋给变量 s "Hello World" julia> 你好 =…
julia> function fib1(n) if n==1 return n else return n+fib1(n-1) end end fib1 (generic function with 1 method) julia> function fib2(n,s) if n == 1 return s+1 else return fib2(n-1,s+n) end end fib2 (generic function with 1 method) julia> fib1(10)…