1 /* 2 CodeSteppers is a tool for creating code presentations. 3 */ 3
5 const example = `<h1> 6 Syntax highlighting for all major ${languages}! 7 </h1>` 8
9 /* 4 The presentations can be embedded in your own website 5 with minimal effort. 6 */
Welcome to CodeSteppers! 😎
CodeSteppers
Create coding presentations
Examples:
Even or Odd
We declared a function that prints out "The number is even." if the given number is even and "The number is odd." if the given number is odd.
1 <?php 2
3 function evenOrOdd($input) 4 { 5 return $input % 2 === 0 ? "The number is even." : "The number is odd."; 6 } 7
8 echo evenOrOdd(64); 9
10 echo "<br>";11
12 echo evenOrOdd(19);
Synced video and CodeStepper
Play video!
1 /* 2 * Form validáció 3 */ 4
5 // Template driven forms