Files
herolib/lib/core/code/templates/function/function.v.template
2025-03-13 12:39:38 +01:00

6 lines
164 B
Plaintext

@if function.description != ''
// @{function.description}
@endif
pub fn @receiver @{name}(@{params}) @{result} {
@{function.body.trim_space().replace('\t', '')}
}