💾 Archived View for thrig.me › tech › encoding › show-encoding.txt captured on 2023-07-22 at 18:21:22.

View Raw

More Information

⬅️ Previous capture (2023-04-19)

-=-=-=-=-=-=-

#!/usr/bin/env wish8.6

puts "default: [encoding system]"
encoding system iso8859-1
puts "new: [encoding system]"

font create fff -family Times -size 32
pack [label .xxx -font fff -textvariable display]
bind . <q> exit

set fh [open input.txt]
gets $fh display
close $fh

vwait godot