How to format your text and code while posting your question .. Tutorial 2015 by Blyk

You can post your text and code here.

How to format your code

Method 1

void setup() {
  size(200, 200);
}

void draw() {
  background(#4234EA);
  noStroke();
  fill(-1);
  ellipse(width>>1, height>>1, 40, 40);
}

Method 2

void setup() {
  size(200, 200);
}

void draw() {
  background(#4234EA);
  noStroke();
  fill(-1);
  ellipse(width>>1, height>>1, 40, 40);
}

Now let see how create bullet points

  1. Bullet Point one
  2. Bullet Point two
  3. Bullet Point three
  4. Bullet Point four

Or

1. Bullet Point one 
2. Bullet Point two
3. Bullet Point three
4. Bullet Point four  

You can watch the video here

Tagged:
Sign In or Register to comment.