Hello World by kwSeo and Scala

Hello Scala!

object HelloWorld {
  def main(args: Array[String]): Unit = {
    println("Hello World!!")
  }
}

Hello Jekyll

오늘 저녁


테스트로 글 올릴 겸… 저녁 식사 메뉴 적어 올립니다.
삼선 짜장에 군만두 먹었음

Hello World

hello

// Example can be run directly in your JavaScript console


// Create a function that takes two arguments and returns the sum of those arguments

var adder = new Function("a", "b", "return a + b");

// Call the function

adder(2, 6);
// > 8