From 2d1f48d0611244e74ca9d77ab63fabb0b0c42816 Mon Sep 17 00:00:00 2001 From: Artur Dryomov Date: Mon, 3 Feb 2020 09:25:33 +0300 Subject: [PATCH] Replace Python with Starlark. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 63779f5..9295b83 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ For the list of C++ rules, see the Bazel There is no need to use rules from this repository just yet. If you want to use `rules_cc` anyway, add the following to your `WORKSPACE` file: -```python +```starlark load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( @@ -27,7 +27,7 @@ http_archive( Then, in your `BUILD` files, import and use the rules: -```python +```starlark load("@rules_cc//cc:defs.bzl", "cc_library") cc_library(