2025 day 2 part 1

This commit is contained in:
2025-12-02 09:36:44 +01:00
parent 5e9a24c8d7
commit 2277721010
4 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
variable "half" {
type = number
}
output "full" {
value = tonumber("${var.half}${var.half}")
}