Files
Jos van Bakel 724c8e8995 Add LiveScript to languages.json (#607)
LiveScript is a language which compiles to JavaScript.  (http://livescript.net/)
2020-08-10 11:51:06 +02:00

29 lines
372 B
Plaintext

# 28 lines, 10 code, 12 comments, 6 blanks
/*
* /* Nested comment
* # single line comment
* */
/*
add = (a, b) ->
return a + b
*/
hello = ->
console.log 'hello, world!'
"hello!" |> capitalize |> console.log
# Easy listing of implicit objects
table1 =
* id: 1
name: 'george'
* id: 2
name: 'mike' # comment
* id: 3
name: 'donald'
# Comment