DrSchool Hızlı kod öğren.
EN AR BN CS DE EL Ara

R: Sözdizimi

R için temel sözdizimi ve yaygın kalıplar.

Okuma süresi: 1 min Kelime: 27
İlerlemem

R — Syntax

Hello World

cat('Hello, World!\n')

Common patterns

Note: some languages differ. This page is a starter cheat sheet you can expand.

Comments

// line comment
/* block comment */

Variables (example)

// var / let / const / or language-specific syntax

Conditionals

// if / else

Loops

// for / while

Functions

// define a function