File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,8 @@ test/example:
130
130
131
131
${CELL} -d -t riscv tests/examples/typecast.cell && ckb-debugger --bin typecast${exe} | grep "128-128"
132
132
133
+ ${CELL} -d -t riscv tests/examples/println.cell && ckb-debugger --bin println${exe}
134
+
133
135
${CELL} -t riscv tests/examples/cell-data.cell && ckb-debugger --bin cell-data${exe}
134
136
${CELL} -t riscv tests/examples/inputs.cell && ckb-debugger --bin inputs${exe}
135
137
${CELL} -t riscv tests/examples/outputs.cell && ckb-debugger --bin outputs${exe}
Original file line number Diff line number Diff line change
1
+ import (
2
+ "debug"
3
+ )
4
+
5
+ func main() {
6
+ debug.Println("1")
7
+ debug.Println(1)
8
+ debug.Println(1u8)
9
+ debug.Println(1u16)
10
+ debug.Println(1u32)
11
+ debug.Println(1u64)
12
+ debug.Println(1u128)
13
+ debug.Println(1u256)
14
+ return 0
15
+ }
You can’t perform that action at this time.
0 commit comments