Skip to content

Commit 2c40125

Browse files
committed
initial commit
1 parent dea8dbd commit 2c40125

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

frontend/app/screens/HomeScreen.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ type ExecResult =
2222
| { isError?: false; text: string }
2323
| { isError: true; text: string };
2424

25-
const DEFAULT_SAMPLE = `# Sample: print Fibonacci sequence
26-
def fib(n):
27-
a, b = 0, 1
28-
for _ in range(n):
29-
print(a)
30-
a, b = b, a + b
25+
const DEFAULT_SAMPLE = `# Sample:
3126
32-
fib(10)
27+
print("Hello World")
28+
29+
a = 1
30+
b = 2
31+
c = a + b
32+
print(c)
3333
`;
3434

3535
export default function HomeScreen() {

0 commit comments

Comments
 (0)