• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2022 Google LLC.
2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3 
4 #include "experimental/bazel_test/client/gizmo.h"
5 
6 #include <iostream>
7 
main(int argc,char ** argv)8 int main(int argc, char** argv) {
9 	printf("Hello world\n");
10 
11 	printf("Gizmo: %f\n", getGizmo());
12 }
13