| category | tool | contributors | translators | filename | lang | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
tool |
vim |
|
|
LearnVim-jp.txt |
ja-jp |
Vim9 scriptはVim scriptとの互換をなくし変数の型縛りを導入したり、コンパイルをすることなどにより、高速化を実現した新しい処理系です。
defコマンドで定義された関数内、またはVim script内でvim9scriptコマンドを使うことで利用できます(vim9scriptコマンドの後ではfunctionコマンドは利用できません)。
この記事は、 https://gist.github.com/yegappan/16d964a37ead0979b05e655aa036cad0 の内容を元にVim(v8.2.2576)上のVim9 scriptで動作するように改変したものです。
Vim9 scriptで動作を確認できなかったもの、まだ実装されていなものはpassと表記し、省略しています。
| 名称 | 役割 | 説明 |
|---|---|---|
| MinGW | コンパイラ | Windows 用の GNU ツールチェーン。 とにかく Windows 用の gcc や GNU ld。 "Windows 用" とは、Windows 上で動作したり、Windows 用のアプリが作れたりすること。 要するに Visual C++ や Clang/LLVM みたいなもの。 |
| mingw-w64 | コンパイラ | MinGW のフォーク。Win64 向けの改良が加わっており、2021 年現在の主流。 |
| Cygwin | POSIX 環境 | Windows 用の POSIX 環境。cygwin1. |
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
| /* | |
| xoshiro256+/++/* implementation for multiple instances | |
| (C)2020 Masaki Ota. Some rights reserved. | |
| Original codes are written by | |
| 2019 by David Blackman and Sebastiano Vigna ([email protected]) | |
| */ | |
| #include "xoshiro256.h" | |
| static void jump_common(xoshiro256_t *state, const uint64_t jump_array[4]) { |
この記事は Mobility Technologies Advent Calendar 2020 の2日目の記事です。
みなさんこんにちは。tetsukayです。
株式会社Mobility Technologies でソフトウェアエンジニア(Android, Flutter)として働いています。
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
| using System; | |
| namespace foo | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.WriteLine("Hello World!"); | |
| } |
ここ に移動しました。
(Original article: https://blog.codinghorror.com/are-you-an-expert/ )
ぼくは権威というものが嫌いらしい。 まず自分自身の過去から始めよう。
ぼくは、人々からアマチュア仲間としてではなく、 何らかの専門家や権威だとみなされることがひどく嫌いである。