Skip to content

Commit

Permalink
Add prompt to REPL example
Browse files Browse the repository at this point in the history
Add "julia> " to example REPL session to clearly indicate code. Also add semicolon to indicate that the output should not be considered.
  • Loading branch information
abhro authored Mar 30, 2024
1 parent f01a03c commit b6056dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/data.jl
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ julia> table = DataFrame(x=[1,2], y=['a', 'b'], z=[10.0, 20.0], w=["A", "B"])
1 │ 1 a 10.0 A
2 │ 2 b 20.0 B
Z, XY, W = unpack(table, ==(:z), !=(:w))
julia> Z, XY, W = unpack(table, ==(:z), !=(:w));
julia> Z
2-element Vector{Float64}:
10.0
Expand Down

0 comments on commit b6056dc

Please sign in to comment.