This file contains 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
public class HelloWorld{ | |
public static void main(String[]args){ | |
System.out.println(); | |
} | |
} |
This file contains 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.Component.extend({ | |
firstName:"Elton", | |
actions: { | |
getData(fromChild){ | |
alert('i got it' + fromChild); | |
} | |
} | |
}); |
This file contains 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.Component.extend({ | |
didInsertElement(){ | |
}, | |
actions: { | |
changeData(){ | |
this.set('data', 'sadfasfdasfa'); | |
} |
This file contains 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 ElixirBart.MixProject do | |
use Mix.Project | |
def project do | |
[ | |
app: :elixir_bart, | |
version: "0.1.0", | |
elixir: "~> 1.6", | |
start_permanent: Mix.env() == :prod, | |
deps: deps() |