jme Blog

Markdown Test

This header has been created from markdown.
2000-01-01
Next.js
dev
目次

list

  1. test
  2. test
    1. test
    2. test
      1. test
      2. test
  3. test
  • test
  • test
    • test
    • test
      • test
      • test
  • test

fenced div

This is a note

This is a warning

definition

term1
def1
def2
term2
def1

image

h1 don't be used

Rust(ラスト)は、性能、メモリ安全性、安全な並行性を目指して設計されたマルチパラダイムのプログラミング言語である。C言語、C++に代わるシステムプログラミング言語を目指しており1、構文的にはC++に似ているが[3]、「ボローチェッカー」(borrow checker) で参照の有効性を検証することによってメモリ安全性を保証できる。Rustはガベージコレクションなしでのメモリ安全性を達成しており、必要な場面で参照カウントを使うこともできる[4][5]。

h2

Rust is a multi-paradigm, general-purpose programming language that emphasizes performance, type safety, and concurrency. It enforces memory safety, meaning that all references point to valid memory, without requiring the use of automated memory management techniques such as garbage collection. To simultaneously enforce memory safety and prevent data races, its "borrow checker" tracks the object lifetime of all references in a program during compilation. Rust was influenced by ideas from functional programming, including immutability, higher-order functions, and algebraic data types. It is popular for systems programming.[12][13][14]

h3

Software developer Graydon Hoare created Rust as a personal project while working at Mozilla Research in 2006. Mozilla officially sponsored the project in 2009. In the years following the first stable release in May 2015, Rust was adopted by companies including Amazon, Discord, Dropbox, Facebook (Meta), Google (Alphabet), and Microsoft. In December 2022, it became the first language other than C and assembly to be supported in the development of the Linux kernel.

Rust has been noted for its rapid adoption,[15] and has been studied in programming language theory research.[16][17][18]

text

text bold code
italic strike

text bold code
italic strike

checkbox

  • item
  • checked

table

reactnext.jstypescript
Text5.0Text
markdownrightunified

syntax highlight

test.ts
import { unified } from 'unified';
console.log("test");
{
  type: 'element',
  tagName: 'h2',
  properties: { className: [ 'sr-only' ], id: 'footnote-label' },
  children: [ { type: 'text', value: 'Footnotes' } ]
}

脚注

  1. 注釈