liquidcarbon commited on
Commit
ab07521
·
verified ·
1 Parent(s): 4344872

Create notebooks/testable.py

Browse files
Files changed (1) hide show
  1. notebooks/testable.py +21 -0
notebooks/testable.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import marimo
2
+
3
+ __generated_with = "0.14.13"
4
+ app = marimo.App(width="medium")
5
+
6
+
7
+ @app.cell
8
+ def _():
9
+ x, y = 2, 4
10
+ return x, y
11
+
12
+
13
+ @app.cell
14
+ def add(x, y):
15
+ z = x + y
16
+ z
17
+ return
18
+
19
+
20
+ if __name__ == "__main__":
21
+ app.run()