aiken-lang 1.1.19

Cardano smart contract language and toolchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
source: crates/aiken-lang/src/tests/format.rs
description: "Code:\n\n/// My doc comment\n///\n/// has a newline.\nfn foo() {\n  True\n}\n\n/// My doc comments\n\n/// cannot be separated\nfn bar() {\n  True\n}\n"
---
/// My doc comment
///
/// has a newline.
fn foo() {
  True
}

/// My doc comments
/// cannot be separated
fn bar() {
  True
}