facebook twitter hatena line email

「Ios/swift/数字と文字」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==数字定義== let num = 1 let num2 = 1 + 2 ==数字を文字へ== let num = 1 "hello" + num.description」)
 
行1: 行1:
 +
==リアルタイム実行環境構築==
 +
#xcodeを起動後"get started with a playground"を選択
 +
#左にコードを記述すると、右に結果がリアルタイムで表示される
 +
 
==数字定義==
 
==数字定義==
 
  let num = 1
 
  let num = 1

2016年6月18日 (土) 23:37時点における版

リアルタイム実行環境構築

  1. xcodeを起動後"get started with a playground"を選択
  2. 左にコードを記述すると、右に結果がリアルタイムで表示される

数字定義

let num = 1
let num2 = 1 + 2

数字を文字へ

let num = 1
"hello" + num.description