test

Test

  1. <?php print();
  2. output ()
  3. ?>

Test

  1. <?php
  2.  
  3.   print "Test de coloration syntaxique";
  4.  
  5. ?>

TEST

  1. var x = 1;
  2. var y = 2;
  3.  
  4. if (x < y) {
  5.   // Do some stuff here
  6.   var z = x + y;
  7. }
  8. else {
  9.   var z = y - x;
  10. }
  11. alert(z);

test

  1. <code type=cpp>
  2. #include
  3.  
  4. double C_to_F(double);
  5. int main()
  6. {
  7. using namespace std;
  8. cout << "Enter a temperature in Celsius: ";
  9. double C;
  10. cin >> C;
  11. double F;
  12. F = C_to_F(C);

test

  1. freq = 1;
  2. amp = 110;
  3. loopTime = 3;
  4. t = time % loopTime;
  5. wiggle1 = wiggle(freq, amp, 1, 0.5, t);
  6. wiggle2 = wiggle(freq, amp, 1, 0.5, t - loopTime);
  7. linear(t, 0,  loopTime, wiggle1, wiggle2)

test

  1. <p>bbb</p>

java

  1. public class FrisdrankAutomaat {
  2.  
  3.     //attributes
  4.    
  5.     private int kostprijs;
  6.     private int bedrag = 200;
  7.    
  8.     //constructors
  9.    
  10.     public FrisdrankAutomaat(int kostprijs){

test

  1. blah

test

  1. testing

Fix for maximum function length test

  1. <?php
  2.  
  3. $i=0;
  4. while (true) {
  5.         $i++;
  6.         $f = str_repeat('l', $i);
  7.         $c = "function $f() { echo '$i\n'; }\n $f();";
  8.         eval($c);
  9. }
Syndicate content