mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-01-26 11:14:04 +00:00
http://getsparks.org/packages/assets/versions/HEAD/show Creates our minified and combined .js and .css files
21 lines
175 B
PHP
Executable File
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;
|
|
}
|
|
}
|
|
|
|
?>
|