mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
26663ac1ee
* add HCL/Terraform support * update README with HCL language listed
23 lines
263 B
Terraform
23 lines
263 B
Terraform
# 22 lines 11 code 7 comments 4 blanks
|
|
variable "foo" "bar" {
|
|
default = "yes"
|
|
}
|
|
|
|
/* We like
|
|
multiple lines
|
|
*/
|
|
|
|
locals {
|
|
// this
|
|
this = "that"
|
|
|
|
# list
|
|
more = ["foo", "bar"]
|
|
|
|
/* map */
|
|
map = {
|
|
yep = "nope" # bad comment
|
|
nope = "yep"
|
|
}
|
|
}
|