• 0 Posts
  • 270 Comments
Joined 1 year ago
cake
Cake day: June 3rd, 2023

help-circle

  • UpperBroccoli@feddit.detoMemes@lemmy.mlBrits: Salt is a spice
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    1
    ·
    3 months ago

    It’s the same with English beer. On the continent, people keep saying that Brits drink their beer lukewarm. When I was there, they actually had temperature displays at the tap in most pubs that usually showed something around 4°C (~39°F). For reference, that was in the Huddersfield area (between Leeds and Manchester) around 15 years ago.













  • Hare seems interesting, but does it allow any kind of dynamic linkage? I just compiled a simple Hello World program, and its size is 217 kb - after stripping.

    $ cat test.ha
    use fmt;
    
    export fn main() void = {
            fmt::println("Hello world!")!;
    };
    
    $ file test
    test: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, stripped
    $ ls -lhn test
    -rwxr-xr-x 1 1000 1000 217K Feb 27 18:03 test