mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
261 B
CoffeeScript
13 lines
261 B
CoffeeScript
'use strict'
|
|
|
|
# Another variable, which will stay in the var line.
|
|
x = 5
|
|
|
|
# This adds a utility function to the var line.
|
|
y = []
|
|
x in y
|
|
|
|
Tinytest.add "coffeescript - shared", (test) ->
|
|
test.equal share.coffeeShared, 789
|
|
test.equal sharedFromJavascript, 135
|