Oho, sorry. Three hours with Gemini Pro:
(1) -> )cd /home/greg/Git
The current FriCAS default directory is /home/greg/Git
(1) -> )read Pari
Initializing PARI...
--- `eval_str` example (success) ---
Executing: 'factor(2024)'
Result:
[ 2 3]
[11 1]
[23 1]
--- Conversion and Arithmetic Examples (Integers Only) ---
Created PARI objects:
a = 100
c = 7
Arithmetic Results:
a - c = 93
c * c = 49
a \ c = 14
Results converted back to Julia types:
Difference (Int): 93
Product (Int): 49
Quotient (Int): 14
--- Conversion and Arithmetic Examples (Floats Only) ---
Created PARI objects:
f1 = 123.45000000000000284
f2 = 0.5500000000000000444
Arithmetic Results:
f1 + f2 = 124.00000000000000289
Results converted back to Julia types:
Sum (Float64): 124.0
Forcing garbage collection to test finalizers...
GC run complete.
Closing PARI library..