ノード v0.10.20 と OSX 10.8.5 を使用しています。
以下に示すように、variables.js という単純な js ファイルを作成しました。
var productName
var currentPrice
var totalCost
var productTax
productName = "cookies"
currentPrice = 3
productTax = currentPrice * .07
totalCost = currentPrice + productTax
console.log("Your " + productName + " cost $" + totalCost)
ノードreplまたはchromeで行を個別に実行すると、正しく機能し、出力は「あなたのクッキーの費用は$ 3.21」です。
ただし、ファイルがあるディレクトリからコマンド「node variables.js」を実行すると、次のエラー メッセージが表示されます。
/directorypath/variables.js:13
# create a javascript file (variables.js) that
^
SyntaxError: Unexpected token ILLEGAL
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:901:3
ここで間違っていることは何ですか?