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
void main() { | |
final String foo = 'FOO!'; | |
print('my var is $foo'); | |
} |
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
.card { | |
font-size: .875rem; | |
font-weight: normal; } | |
/*! | |
* Bootstrap v4.3.1 (https://getbootstrap.com/) | |
* Copyright 2011-2019 The Bootstrap Authors | |
* Copyright 2011-2019 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*/ |
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
/* | |
* Enhance Ape.log function | |
*/ | |
Apelog = Ape.log; | |
Ape.log = function(data){ | |
switch(typeof data){ | |
case "object": | |
var result = "----" + data + "----\n"; | |
var level = 0; | |
data = data.toSource(); |
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
/** | |
* A JavaScript module constructor | |
* | |
* Methods | |
* - get( name ) get the value the named internal variable | |
* - set( name , value ) set named internal variable a value | |
* - extend( methodName , function ) add a method to the module | |
* | |
* @param ModuleID | |
* @returns {Function} |