Changes to serhat
ffff:95.70.130.20
2 months ago
Restore this version
Updated serhat.scroll
serhat.scroll
Changed around line 1
- repeatParser
- extends abstractScrollParser
- cueFromId
- atoms cueAtom integerAtom
- catchAllAtomType stringAtom
- javascript
- compile(){ return this.atoms.slice(2).join(" ").repeat(parseInt(this.atoms[1])) }
-
-
-
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 5: def say_my_name_10_times( name: str ):
-
+ say_my_name_10_times("Serhat")
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 1
- for index in range(10):
- print(index)
+
+ def say_my_name_10_times( name: str ):
+ for i in range(10):
+ print(name)
+
+
+
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 1
- def add_two_numbers(a, b):
- return a + b
-
- x = add_tow_numbers(10,20)
- print(x)
+ for index in range(10):
+ print(index)
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 1
- print("Merhaba Dünya, Ben Serhat")
+
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 3: print("Merhaba Dünya, Ben Serhat")
- add_tow_numbers(10,20)
-
+ x = add_tow_numbers(10,20)
+ print(x)
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 3: print("Merhaba Dünya, Ben Serhat")
- print(add_tow_numbers(10,20))
+ add_tow_numbers(10,20)
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 1
- def add_two_numbers(a: int, b: int) -> int:
+ def add_two_numbers(a, b):
ffff:95.70.130.20
2 months ago
Restore this version
Updated main.py
main.py
Changed around line 1
- print("Merhaba Dünya, Ben Serhat")
+ print("Merhaba Dünya, Ben Serhat")
+
+ def add_two_numbers(a: int, b: int) -> int:
+ return a + b
+
+ print(add_tow_numbers(10,20))
+
+
ffff:95.70.130.20
2 months ago
Restore this version
Updated serhat.scroll
serhat.scroll
Changed around line 11: repeatParser
- repeat 3 Serhat
+ main.py