• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2 
3 * Copyright 2022 Google LLC
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8 
9 #include <iostream>
10 
main(int argc,char ** argv)11 int main(int argc, char**argv) {
12     printf("Hello world\n");
13     // TODO(kjlubick) Make this draw to a Canvas2D, WebGL Canvas, or WebGPU Canvas
14 }
15