diff --git a/src/index.ejs b/src/index.ejs index 2a5ff78..a085341 100644 --- a/src/index.ejs +++ b/src/index.ejs @@ -203,16 +203,19 @@ var x = 25; - function(x){ - return x * x; + function square(x) { + return x * x; }

We also support some highlighting.

# Python 3: Fibonacci series up to n def fib(n): - a, b = 0, 1 - while a < n: print(a, end=' ' ) a, b=b, a+b + a, b = 0, 1 + while a < n: + print(a, end=' ') + a, b = b, a+b +

Tables

We have simple tables that try to stay readable at most screen sizes: @@ -336,4 +339,4 @@ - \ No newline at end of file +