Created
December 16, 2018 09:08
-
-
Save nvtuan305/1b1ae4fbcf57942f8b3932ef1269fbce to your computer and use it in GitHub Desktop.
Nothing
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 "fmt" | |
// Are you ready? :D | |
func readyToGo() bool { | |
return true | |
} | |
func main() { | |
fmt.Println("Ready?", readyToGo()) | |
} |
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
const got = async (result) => { | |
console.log("I got: " + result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment