Re: [swift-users] Swift kernel for Jupyter Notebook/IPython

2017-02-08 Thread Jin Wang via swift-users
g> wrote: > On Wed, Feb 08, 2017 at 12:39:34PM +0000, Jin Wang via swift-users wrote: > > Hey guys, > > > > I'm building a swift kernel for Jupyter Notebook. If you haven't heard of > > it, *the Jupyter Notebook is a web application that allows you to creat

[swift-users] Swift kernel for Jupyter Notebook/IPython

2017-02-08 Thread Jin Wang via swift-users
Hey guys, I'm building a swift kernel for Jupyter Notebook. If you haven't heard of it, *the Jupyter Notebook is a web application that allows you to create and share documents that contain live code, equations, visualizations and explanatory text*. The project is still at its early stage so some

Re: [swift-users] Variadic parameter in function type

2016-08-29 Thread Jin Wang via swift-users
r iOS <https://aka.ms/o0ukef> > > > > On Mon, Aug 29, 2016 at 1:19 PM +0800, "Jin Wang via swift-users" > mailto:swift-users@swift.org>> wrote: > > Hey guys, > > Can anyone tell me how you handle the following scenario after SE-0111 > <ht

[swift-users] Variadic parameter in function type

2016-08-28 Thread Jin Wang via swift-users
Hey guys, Can anyone tell me how you handle the following scenario after SE-0111 gets implemented? let output: (_ items: Any..., _ separator: String, _ terminator: String) -> Void = prin