aiken/examples/sample/lib/syntax.ak

10 lines
156 B
Plaintext

use aiken/builtins.{appendByteString}
pub type Bool {
True
False
}
pub fn append(a: ByteArray, b: ByteArray) -> ByteArray {
appendByteString(a, b)
}