Entries from 2019-10-01 to 1 month

[Golang]Memo

Installationgolang.org1. Download init.exe from this link and install it Getting Started - The Go Programming Language2. Code this in main.go package main import "fmt" func main() { fmt.Printf("hello, world\n") } 3. Type go build then ./[e…

[Rust]Memo

Installationdoc.rust-lang.org1. Download init.exe from this link and install it Install Rust - Rust Programming LanguageTips: You may need to install C++ from here Tool for Visual Studio 2019 - Build Tools for Visual Studio 2019 visualstud…

[TypeScript]Memo

Useful articles - TypeScriptチートシート- TypeScript超入門(2):構文を理解する- Interface vs Type alias in TypeScript 2.7 - Martin Hochel - Medium Tips Associative array An associative array in an associative array const array: { [key: stri…

[JavaScript]Memo

Stringオブジェクト 検索 split(str [, limit]) strで文字列を分割する。strは結果に含まれない。 sliceとsubstringの違い start > endである場合 const str: string = 'HelloWorld'; // return: Wor // 8文字目(str[8 - 1]) から -3文字(5 - 8)を返す。 con…