feat: start creating aiken/builtin module

This commit is contained in:
rvcas
2022-10-24 13:30:27 -04:00
committed by Lucas
parent 53b2adb7df
commit d5d2ba9cd7
8 changed files with 150 additions and 17 deletions

View File

@@ -1,7 +1,13 @@
use aiken/builtin.{addInteger}
pub type ScriptContext {
idk: Int
}
pub fn append(a: ByteArray, b: ByteArray) -> ByteArray {
todo
}
pub fn add(a, b) {
addInteger(a, b)
}