# 本文將簡單地介紹julia如何其他sub檔案中的函式
# 1. 先建立乙個sub.jl檔案。內容如下:
function
fun1(x::float64, y::float64)
z = x + y
endfunction
fun2(x::float64, y::float64)
z = x * y
end# 2. 建立主程式檔案main.jl。內容如下:
include("sub.jl") # 此句必須有
println("fun1 = ", fun1(1., 2.))
println("fun2 = ", fun2(2., 3.))
# 大家可以與我之前寫的那篇文章:《julia如何使用module》對比著看,有何不同。(
VC呼叫其他程式以及用其他程式開啟相應檔案
深入淺出shellexecute 譯者 徐景周 原作 nishant s q 如何開啟乙個應用程式?shellexecute this m hwnd,open calc.exe sw show 或 shellexecute this m hwnd,open notepad.exe c sw show...
VC呼叫其他程式以及用其他程式開啟相應檔案
深入淺出shellexecute 譯者 徐景周 原作 nishant s q 如何開啟乙個應用程式?shellexecute this m hwnd,open calc.exe sw show 或 shellexecute this m hwnd,open notepad.exe c sw show...
nodejs中如何呼叫其他js檔案的函式
兩個目錄,下面各乙個js檔案 func.js中需要呼叫obj func.js中的兩個函式。func.js檔案 var objfunc require object obj func 目錄名 檔名 objfunc.fff 1,6 objfunc.func 2,1 即使用require引入其他的js檔案...