Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 독후감
- Google Analytics
- 파이썬 시각화
- 시각화
- matplotlib
- Linux
- 서평단
- 한빛미디어
- MySQL
- Pandas
- 텐서플로
- 월간결산
- tensorflow
- SQL
- 한빛미디어서평단
- 딥러닝
- Tistory
- 서평
- Visualization
- 통계학
- MATLAB
- Blog
- Ga
- python visualization
- Python
- 블로그
- 파이썬
- 매틀랩
- 리눅스
- 티스토리
Archives
- Today
- Total
목록Import (1)
pbj0812의 코딩 일기
[Go] Package 생성, Import 하기
0. 목표 - 패키지 및 함수 생성 이후 main.go에서 import 1. 코드 작성 1) something.go - something 폴더 생성 이후 something.go 생성 - 이때, sayBye는 첫글자를 소문자, SayHello는 첫글자를 대문자로 작성 package something import "fmt" func sayBye() { fmt.Println("Bye") } func SayHello() { fmt.Println("Hello") } 2) main.go - 여기서 something.sayBye는 호출되지 않음 => 첫 글자가 소문자일 경우에는 private 함수 package main import ( "fmt" "github.com/pbj0812/learngo/something.g..
ComputerLanguage_Program/Go
2020. 3. 12. 01:41