본문 바로가기

기본3

Svelte Store 시작 Svelte도 React의 redux나 vue의 store와 같이 상태 변화를 관리하는 기능으로 store라는 것이 존재 한다. 기본적으로 RXJS(https://rxjs.dev/guide/overview)를 보는듯한 느낌을 강하게 받을 수 있다. https://svelte.dev/tutorial/writable-stores Stores / Writable stores • Svelte Tutorial Stores / Writable stores a. Basicsb. Adding datac. Dynamic attributesd. Stylinge. Nested componentsf. HTML tagsg. Making an appa. Assignmentsb. Declarationsc. Statements.. 2021. 10. 31.
Go lang 기본 문법 1 GO 기본 문법 이번에는 아주 기본이 되는 go에 문법에 대해서 알아 보겠다. package main import "fmt" func main() { fmt.Println("This is Main function") } 위와 같이 코드를 작성한 후 main.go라는 이름으로 저장한다. powershell이나 cmd창을 열고, `go run ./main.go` 라고 입력한다. 화면에 아래와 같이 This is Main function 이라는 글자가 찍히는 것을 확인 할 수 있다. A Tour of Go (golang.org): 여기에 나오는 문제들을 하나 하나 따라 하다 보면 기본적인 문법은 알수 있다. package main // 현재 이 파일이 속한 package의 이름 import "fmt" // 모.. 2020. 12. 8.
GO lang 설치와 실행 Go lang 설치 Download and install - The Go Programming Language (golang.org) Download and install - The Go Programming Language Download and install Download and install Go quickly with the steps described here. For other content on installing, you might be interested in: 1. Go download. Click the button below to download the Go installer. Download Go Don't see your operating syste golang.org 공식 홈.. 2020. 12. 2.