Happiness held is the seed.

Happiness shared is the flower.

ความสุขที่เก็บเอาไว้คือเมล็ด

ความสุขที่แบ่งปันคือดอกไม้ 

John Harrigan

Control flow “if”

  • if 
  • Switch 
  • for-in
  • for
  • while
  • do-while

if

let A=90

let score=91

if  score > A {

println( “you get grade, A”)

} else {

println(“don’t give up, Fight fight”)

}

Don`t copy text!