view third_party/emsdk/bazel/hello-world/hello-world.cc @ 277:1d99147f520c

Merge Qwen services and infinite canvas heads
author MrJuneJune <me@mrjunejune.com>
date Mon, 17 Aug 2026 17:01:40 -0700
parents 8d17f6e6e290
children
line wrap: on
line source

#include <iostream>

int main(int argc, char** argv) {
  std::cout << "hello world!" << std::endl;
  return 0;
}