Compare commits

...

3 Commits

Author SHA1 Message Date
8eb309165d added lisp version 2022-10-27 19:58:53 +08:00
1a566fdbd3 added brainfuck version 2022-10-27 19:27:30 +08:00
7298a704d3 added LOLCODE version 2022-10-27 19:10:33 +08:00
6 changed files with 23 additions and 0 deletions

12
hello-indented.bf Normal file
View File

@@ -0,0 +1,12 @@
>++++++++[<+++++++++>-]<.
>++++[<+++++++>-]<+.
+++++++..
+++.
>>++++++[<+++++++>-]<++.
------------.
>++++++[<+++++++++>-]<+.
<.
+++.
------.
--------.
>>>++++[<++++++++>-]<+.

3
hello.bf Normal file
View File

@@ -0,0 +1,3 @@
>++++++++[<+++++++++>-]<.>++++[<+++++++>-]<+.+++++++..+++.>>++++++[<+++++++>-]<+
+.------------.>++++++[<+++++++++>-]<+.<.+++.------.--------.>>>++++[<++++++++>-
]<+.

1
hello.clj Normal file
View File

@@ -0,0 +1 @@
(println "Hello, World!")

4
hello.lol Normal file
View File

@@ -0,0 +1,4 @@
HAI 1.2
CAN HAS STDIO?
VISIBLE "hello, world!"
KTHXBYE

1
hello.lsp Normal file
View File

@@ -0,0 +1 @@
(print "Hello, World!")

2
hello.rkt Normal file
View File

@@ -0,0 +1,2 @@
#lang racket
(displayln "Hello, World!")