This file contains hidden or 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
//test.js | |
export = { | |
//rename this to hello | |
a:function(), | |
c:function(); | |
d:function(); | |
} | |
//some other file |
This file contains hidden or 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
# Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights | |
# reserved. Use of this source code is governed by a BSD-style license that | |
# can be found in the LICENSE file. | |
from optparse import OptionParser | |
from subprocess import Popen, PIPE, STDOUT | |
from tempfile import mktemp | |
import os | |
import shlex | |
import shutil |
This file contains hidden or 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
case class X(x: Int, y :Int) | |
//this is what drives the mower | |
private def doSomething(delta): X = x match { | |
case X(x,1) => update(x,1 + delta) | |
case _ => X(1,2) | |
} |
This file contains hidden or 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
require_component('processService'); | |
var task = { | |
execute: function(context) { | |
var logger = context.buildLogger; | |
logger.addLogEntry("Hello World!"); | |
return { | |
taskState: "successful", | |
resultData: {}, | |
taskIdentifier: context; |
This file contains hidden or 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
(function(){ | |
var options = { | |
"yesMessage": "YES!", | |
"noMessage": "No", | |
"target": "#isitlaksatime", | |
"day": 5, // 5 for friday | |
"hour": 12 // 12 for noon! | |
}; | |
NewerOlder