Skip to content

Commit

Permalink
feat: implement chr, ord, and hex (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn committed May 15, 2023
1 parent f080671 commit 781d1cb
Show file tree
Hide file tree
Showing 11 changed files with 784 additions and 540 deletions.
5 changes: 5 additions & 0 deletions docs/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,9 @@ stardoc_with_diff_test(
bzl_library_target = "//lib:bazelrc_presets",
)

stardoc_with_diff_test(
name = "strings",
bzl_library_target = "//lib:strings",
)

update_docs()
86 changes: 86 additions & 0 deletions docs/strings.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions lib/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,9 @@ bzl_library(
srcs = ["bazelrc_presets.bzl"],
deps = [":write_source_files"],
)

bzl_library(
name = "strings",
srcs = ["strings.bzl"],
deps = ["//lib/private/docs:strings"],
)

0 comments on commit 781d1cb

Please sign in to comment.