-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #324 from paulmillr/topics/livescript
Add LiveScript support.
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
a = -> 1 | ||
const b = --> 2 | ||
var c = ~> 3 | ||
d = ~~> 10_000_000km * 500ms | ||
e = (a) -> (b) ~> (c) --> (d, e) ~~> 5 | ||
dashes-identifiers = -> | ||
a - a | ||
b -- c | ||
1-1 1- -1 | ||
a- a | ||
a -a | ||
underscores_i$d = -> | ||
/regexp1/ and //regexp2//g | ||
'strings' and "strings" and \strings | ||
([2 til 10] or [1 to 50]) | ||
|> map (* 2) | ||
|> filter (> 5) | ||
|> fold (+) | ||
|
||
class Class extends Anc-est-or | ||
(args) -> | ||
|
||
copy = (from, to, callback) --> | ||
error, data <- read file | ||
return callback error if error? | ||
error <~ write file, data | ||
return callback error if error? | ||
callback() | ||
|
||
-> | ||
~> | ||
~~> | ||
--> | ||
# Comment | ||
/* Comment */ |