Swift学习02:REPL交互式解释器

张建 lol

介绍

  • xcode 6.1 引进了另外一种以交互式的方式来体验 Swift 的方法
  • Read Eval PrintLoop,简称REPL

使用

REPL 除了可以 定义常量和变量 外,还是可 定义函数

  • 打开终端输入
1
2
mac@bogon ~ % swift
mac@bogon ~ % swift repl

定义变量

定义函数

REPL 其他命令

  • 退出::quit
  • 帮助::help
  • 将光标移动到当前行的开始处:Control + A
  • 将光标移动到当前行的结束处:Control + E
  • Post title:Swift学习02:REPL交互式解释器
  • Post author:张建
  • Create time:2023-02-22 00:41:38
  • Post link:https://redefine.ohevan.com/2023/02/22/Swift课程/Swift学习02:REPL交互式解释器/
  • Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.
On this page
Swift学习02:REPL交互式解释器