Testing markdown in posts

This thread is for testing Markdown.

Col A Col B Col C
A1 B1 C1
A2 B2 :smile:
2 Likes
circuit Users {
    mut full_names: [(string, string); 10],
    mut counter: u8

    function new() -> Self {
        return Self { full_names: [("", ""); 10], counter: 0 }
    }

    function add(self, first_name: string, last_name: string) {
        self.full_names[self.counter] = (first_name, last_name);
        self.counter++;
    }
}
2 Likes