This document discusses Parsec, a domain-specific language (DSL) for parsing expressions. It describes how Parsec uses monads and state to parse input sequentially. It also lists various parsing functions in Parsec like try, choice, many, and skip. Finally, it mentions several Parsec implementations for languages like Haskell, Rust, JavaScript, Python, and links to related projects from Dwarfartisan.
Jserv gave a talk about the conceptual introduction to LLVM. The session mentioned the evolution of compiler technologies, paradigm shift, LLVM as a promising open source project, and how LLVM changes the IT world.
Jserv gave a talk about the conceptual introduction to LLVM. The session mentioned the evolution of compiler technologies, paradigm shift, LLVM as a promising open source project, and how LLVM changes the IT world.
13. 这货真的不是 C
Objective C 是 C 语言的一个 Smalltalk 风格的面向对象扩
展,高度兼容 C。是 Apple 各平台的主力开发工具。
. . . . . .
14. IDE 实作
#import <Foundation / Foundation . h>
i n t main ( i n t argc , const char * argv [ ] )
{
@autoreleasepool {
NSLog(@" Hello , World ! " ) ;
}
return 0;
}
. . . . . .
15. XCode
XCode 是 Apple 官方推出的 Apple 体系开发工具,用于开发
Apple 各平台的 IDE。
. . . . . .