Baklava in V

Published on 02 October 2024 (Updated: 02 October 2024)

Welcome to the Baklava in V page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

module main

fn str_repeat(n int, s string) string {
    mut result := ""
    for _ in 0 .. n {
        result += s
    }

    return result
}

fn main() {
    for i in -10 .. 11 {
        num_spaces := if i >= 0 { i } else { -i }
        println(str_repeat(num_spaces, " ") + str_repeat(21 - 2 *num_spaces, "*"))
    }
}

Baklava in V was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.