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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
defmodule Color do | |
@moduledoc false | |
def color_reset , do: "\x1b[0m" | |
def color_red, do: "\x1b[31m" | |
def color_green, do: "\x1b[32m" | |
def color_yellow, do: "\x1b[33m" | |
@doc """ | |
function to add color to string to be used in console apps. |
OlderNewer