Data Scientist, Problem Solver, and very Curious Human
Published May 21, 2019
Hello world, this is my first Jekyll blog post.
Kai Pak
def hello_world(object):
print('Hello {0}!!'.format(object))
hello_world('world!')
hello_world <- function(object) {
sprintf("Hello %s", object)
}
hello_world("world!")
public class java {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
<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>