Kai Pak

Data Scientist, Problem Solver, and very Curious Human

Home

Hello world!

Published May 21, 2019

Hello world, this is my first Jekyll blog post.

Kai Pak

Highlighter

Python

def hello_world(object):
  print('Hello {0}!!'.format(object))

hello_world('world!')

R

hello_world <- function(object) {
  sprintf("Hello %s", object)
}

hello_world("world!")

Java

public class java {
    public static void main(String[] args) {
        System.out.println("Hello World");
    }
}

HTML

<html>
  <head><title>Title!</title></head>
  <body>
    <p id="foo">Hello, World!</p>
    <script type="text/javascript">var a = 1;</script>
    <style type="text/css">#foo { font-weight: bold; }</style>
  </body>
</html>