Files
ystavakylaecard/sparks/assets/1.5.1/libraries/coffeescript/Value.php
Ismo Vuorinen 7e73994e40 Sparks: Assets, 1.5.1
http://getsparks.org/packages/assets/versions/HEAD/show

Creates our minified and combined .js and .css files
2013-07-11 07:46:29 +03:00

21 lines
175 B
PHP
Executable File

<?php
namespace CoffeeScript;
Init::init();
class Value
{
function __construct($v)
{
$this->v = $v;
}
function __toString()
{
return $this->v;
}
}
?>