Hello,
I am following the youtube "intro to poke" talk and am trying to produce the same results in the video. I have successfully installed poke as well as the emacs poke-el pkg.
However, while following the youtube video, there is a moment where you write
"Packet @ 0#B" and the resulting structure is printed back to you line by line.
My results instead show the entire structure on 1 line as
"Packet {magic=171UB,sz=0UB,payload=[]}"
How can I instead make it appear as it does in the video as
"
Packet {
magic=171UB,
sz=4UB,
payload=[0UB,0UB,0UB,0UB]
}
"
Additional info:
platform: ubuntu 2204
I have installed libtextstyle from gettext online source prior to installing the latest version of poke (3.2).
Best,
Joe