diff --git a/README.md b/README.md index 74e7996..7acf5d6 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ This is a repository full of implementations of the classic, "Hello, world!", in - Haskell - Java - JavaScript +- Julia +- Matlab - Kotlin - Lua - Pascal @@ -31,5 +33,8 @@ This is a repository full of implementations of the classic, "Hello, world!", in - Scala - Swift - TypeScript +- XSLT - VB.NET +- VBScript - Zig + diff --git a/julia.jl b/julia.jl new file mode 100644 index 0000000..274b4cf --- /dev/null +++ b/julia.jl @@ -0,0 +1,2 @@ +println("hello world") +#> hello world diff --git a/matlab.m b/matlab.m new file mode 100644 index 0000000..3b04038 --- /dev/null +++ b/matlab.m @@ -0,0 +1 @@ +disp('Hello, world!') \ No newline at end of file diff --git a/vbscript.txt b/vbscript.txt new file mode 100644 index 0000000..8f38bd7 --- /dev/null +++ b/vbscript.txt @@ -0,0 +1 @@ +MsgBox "Hello, World!" \ No newline at end of file diff --git a/vbscript.vbs b/vbscript.vbs new file mode 100644 index 0000000..8f38bd7 --- /dev/null +++ b/vbscript.vbs @@ -0,0 +1 @@ +MsgBox "Hello, World!" \ No newline at end of file diff --git a/xslt.xml b/xslt.xml new file mode 100644 index 0000000..5e1c309 --- /dev/null +++ b/xslt.xml @@ -0,0 +1 @@ +Hello World \ No newline at end of file