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
| module Counter exposing (..) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (style) | |
| import Html.Events exposing (onClick) | |
| -- MODEL | |
| type alias Model = Int |
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
| module First where | |
| import Html exposing (span, text) | |
| main = span [ ] [text "Hello First!"] |
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
| function myfunction(){} | |
| var functionAnonima = function(){}; |
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
| commit1 | |
| commit2 <- quitar | |
| commit3 <- quitar | |
| commit4 | |
| git revert commit2 | |
| git revert commit3 |
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
| ... | |
| redis.set("#{@user}-#{@deal.id}", @deal.permalink) | |
| Order.place_for_user(@user, @deal, @data) | |
| ... |
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
| function variablePass(x, obj1, obj2) | |
| { | |
| x /= 5; | |
| obj1.id = "newId"; | |
| obj2 = {id: "newId"}; | |
| } | |
| var x = 10; | |
| var obj1 = {id: "oldId"}; | |
| var obj2 = {id: "oldId"}; |
NewerOlder