> For the complete documentation index, see [llms.txt](https://move-developers-dao.gitbook.io/aptos-move-by-example/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://move-developers-dao.gitbook.io/aptos-move-by-example/basic-concepts/comments.md).

# Comments

Comments are non executable piece of code that a programmer can add to make their code readable.

```rust
module my_addrx::Comments
{
    use std::debug::print;
    
    fun printing()
    {
        //This is a line comment

        /*
            This 
            is a
            block
            comment
        */
        
        let a=/*You can put block comment here*/12345;
        print(&/*Even here*/a);
        
    }

    #[test]
    
    fun testing()
    {
        printing();
    }
}
```
