Last active
June 22, 2017 11:16
-
-
Save ara-ta3/30282736d1140ff65ec4e7c92e54c839 to your computer and use it in GitHub Desktop.
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
| <?php | |
| echo "hoge"; |
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
| package main | |
| import "testing" | |
| func TestHoge(t *testing.T) { | |
| a := 1 + 1 | |
| if a != 2 { | |
| t.Fatalf("1 + 1 != 2 !?") | |
| } | |
| } |
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
| test/watch: | |
| reflex -r '\.go$$' -- go test {} | |
| test/watch/config: | |
| reflex -c reflex.conf | |
| test/watch/config/fancy: | |
| reflex -c reflex.conf -d fancy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment