You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
; #### Do not use julia if the library isn't loaded
14
+
If Not IsLibrary(_JL_Library_ID)
15
+
Print("Julia couldn't be loaded. Is it installed? Is the same architecture used for this application and julia (x86, x86-64)? Are environment varaibles set correctly? Press any key to exit...")
16
+
Input()
17
+
End
18
+
EndIf
19
+
20
+
; #### Init julia
21
+
If Not jl_init(#Null)
22
+
Print("Julia couldn't be initialized. Are environment varaibles set correctly? Press any key to exit...")
0 commit comments