feat: toy tutorial chapter 3.

Signed-off-by: jackfiled <xcrenchangjun@outlook.com>
This commit is contained in:
2025-06-02 17:22:53 +08:00
parent 8d2f844e2b
commit eacf20fe3c
7 changed files with 157 additions and 31 deletions

View File

@@ -0,0 +1,6 @@
def main() {
var a<2,1> = [1, 2];
var b<2,1> = a;
var c<2,1> = b;
print(c);
}

View File

@@ -0,0 +1,3 @@
def transpose_transpose(x) {
return transpose(transpose(x));
}