| 1 | fn main() { |
| 2 | mut the_png := $embed_file('v.png') |
| 3 | println(the_png) |
| 4 | content := the_png.data() |
| 5 | eprintln('content: ${ptr_str(content)}') |
| 6 | eprintln(unsafe { the_png.data().vbytes(the_png.len) }.hex()) |
| 7 | println(the_png) |
| 8 | the_other_png := $embed_file('v.png', .zlib) |
| 9 | } |
| 10 | |