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
2020/07/25 14:12:53 [INFO] Terraform version: 0.12.29 | |
2020/07/25 14:12:53 [INFO] Go runtime version: go1.13.14 | |
2020/07/25 14:12:53 [INFO] CLI args: []string{"/usr/local/bin/terraform", "--version"} | |
2020/07/25 14:12:53 [DEBUG] Attempting to open CLI config file: /Users/joe/.terraformrc | |
2020/07/25 14:12:53 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2020/07/25 14:12:53 [INFO] CLI command args: []string{"version", "--version"} | |
2020/07/25 14:12:53 [DEBUG] checking for provider in "." | |
2020/07/25 14:12:53 [DEBUG] checking for provider in "/usr/local/bin" | |
2020/07/25 14:12:53 [INFO] Failed to read plugin lock file .terraform/plugins/darwin_amd64/lock.json: open .terraform/plugins/darwin_amd64/lock.json: no such file or directory |
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
package main | |
import "fmt" | |
// fibonacci is a function that returns | |
// a function that returns an int. | |
func fibonacci() func() int { | |
x, y, z := 0, 1, 0 | |
return func() int { | |
z, x, y = x, y, x+y |
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
package main | |
import ( | |
"golang.org/x/tour/wc" | |
"strings" | |
) | |
func WordCount(s string) map[string]int { | |
words := strings.Fields(s) | |
var count map[string]int |
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
#include<stdio.h> | |
main() | |
{ | |
printf("Hello World"); | |
} |
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
; ---------------------------------------------------------------------------------------- | |
;Source: http://cs.lmu.edu/~ray/notes/x86assembly/ | |
;Writes "Hello, World" to the console using only system calls. Runs on 64-bit Linux only. | |
; To assemble and run: | |
; | |
; nasm -felf64 hello.asm && ld hello.o && ./a.out | |
; ---------------------------------------------------------------------------------------- | |
global _start |
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
$node helloWorld.js |
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
#include <iostream> | |
int main() | |
{ | |
std::cout << "Hello, world!\n"; | |
} |
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("Hello, World"); | |
} | |
} |
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
print 'Hello World!' |
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
<?php | |
print 'Hello World!' | |
//or | |
echo 'Hello World!' | |
?> |
NewerOlder