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
| public class Person { | |
| private String name; | |
| private String occupation; | |
| private int age; | |
| public Person(String name, String occupation, int age) { | |
| this.name = name; | |
| this.occupation = occupation; | |
| this.age = age; | |
| } |
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 power_toggle_script | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "google.golang.org/api/compute/v1" | |
| "strings" | |
| ) |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| "module": "commonjs", | |
| "noImplicitAny": true, | |
| "outDir": "build/", | |
| "sourceMap": true, | |
| "target": "es6", | |
| "strictNullChecks": true | |
| }, | |
| "include": [ |
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
| // See https://go.microsoft.com/fwlink/?LinkId=733558 | |
| // for the documentation about the tasks.json format | |
| { | |
| "version": "0.1.0", | |
| "command": "polymer", | |
| "isShellCommand": true, | |
| "args": [], | |
| "showOutput": "always", | |
| "suppressTaskName": true, | |
| "tasks": [ |