Test
- test1
- test2
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Protocol Documentation</title> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ubuntu:400,700,400italic"/> | |
<style> | |
body { | |
width: 60em; |
package main | |
import "fmt" | |
func main() { | |
var a, b, c int | |
var s string | |
fmt.Scanf("%d\n%d %d\n%s", &a, &b, &c, &s) | |
fmt.Println(a+b+c, s) | |
} |
package main | |
import "fmt" | |
type ArrayInt []int | |
func main() { | |
var is []int | |
for i := 0; i < 10; i++ { | |
is = append(is, i) |
package application | |
import ( | |
"context" | |
"strings" | |
) | |
// ... interfaceやstructの定義は一般的なものなので省略 | |
func (app *application) Authorize(ctx context.Context, token string) (*model.Certification, error) { |
# codeing:utf-8 | |
import cv2 | |
import os | |
import glob | |
import imghdr | |
import tensorflow as tf | |
from tensorflow import keras |
#codeing:utf-8 | |
import cv2 | |
import sys, os, glob, imghdr | |
DIRS = [ | |
"0_sakura_minamoto", | |
"1_saki_nikaido", | |
"2_ai_mizuno", | |
"3_junko_konno", |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"strings" | |
) |
type User struct { | |
ID int | |
Profile Profile | |
Reservations []Reservation | |
Followers []User | |
Follows []User | |
WishList []Wish | |
CreatedAt time.Time | |
} |
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
fmt.Println("Hello, golang!") | |
} |