diff options
Diffstat (limited to 'examples/BUILD')
| -rw-r--r-- | examples/BUILD | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/BUILD b/examples/BUILD new file mode 100644 index 0000000..e90e7fa --- /dev/null +++ b/examples/BUILD @@ -0,0 +1,8 @@ +load("//cobol:def.bzl", "cobol_binary") + +cobol_binary( + name = "hello_world", + srcs = [ + "HELLO_WORLD.CBL", + ], +) |