👀 Reading hidden code
Updating registry at `~/.julia/registries/General.toml` Resolving package versions... Installed Julog ─ v0.1.15 Updating `~/.julia/environments/v1.7/Project.toml` [5d8bcb5e] + Julog v0.1.15 Updating `~/.julia/environments/v1.7/Manifest.toml` [5d8bcb5e] + Julog v0.1.15 Precompiling project... ✓ Julog 1 dependency successfully precompiled in 2 seconds (7 already precompiled)
👀 Reading hidden code
using Julog
The package Pluto.jl could not load because it failed to initialize.
That's not nice! Things you could try:
- Restart the notebook.
- Try a different Julia version.
- Contact the developers of Pluto.jl about this error.
You might find useful information in the package installation log:
👀 Reading hidden code
import Pluto
The package Pluto.jl could not load because it failed to initialize.
That's not nice! Things you could try:
- Restart the notebook.
- Try a different Julia version.
- Contact the developers of Pluto.jl about this error.
You might find useful information in the package installation log:
import Pluto: Notebook, Cell
👀 Reading hidden code
nb = Notebook(joinpath(tempdir(), "é🧡💛.jl"), [
Cell("z = y"),
Cell("v = u"),
Cell("y = x"),
Cell("x = w"),
Cell("using Dates"),
Cell("t = 1"),
Cell("w = v"),
Cell("u = t"),
])
👀 Reading hidden code
Pluto.update_caches!(nb, nb.cells)
👀 Reading hidden code
nb.cells[1].symstate
👀 Reading hidden code
teacher(a, b)
@julog teacher(a, b)
👀 Reading hidden code
isprime (generic function with 1 method)
function isprime(n)
[1,n] == filter(1:n) do i
n%i==0
end
end
👀 Reading hidden code
false
true
true
false
true
false
true
false
false
false
isprime.(1:10)
👀 Reading hidden code
👀 Reading hidden code
div(X) <<= ==(%(X, 3), 0)
clauses = @julog [
div(X) <<= (X % 3 == 0)
]
👀 Reading hidden code
div(X)
goals = @julog [
div(X)
]
👀 Reading hidden code
derivations(clauses,123)
👀 Reading hidden code
1
2
3
4
5
x = 1:5 |> collect
👀 Reading hidden code
The package BenchmarkTools.jl could not load because it failed to initialize.
That's not nice! Things you could try:
- Restart the notebook.
- Try a different Julia version.
- Contact the developers of BenchmarkTools.jl about this error.
You might find useful information in the package installation log:
using BenchmarkTools
👀 Reading hidden code