Skip to content

Commit ad21e87

Browse files
slozierslide
authored andcommitted
Update README.md (#501)
1 parent a33cd5a commit ad21e87

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
IronPython
22
===
3-
[![Linux/OSX Build Status](https://travis-ci.org/IronLanguages/ironpython2.svg?branch=master)](https://travis-ci.org/IronLanguages/ironpython2)
4-
[![Windows Build status](https://ci.appveyor.com/api/projects/status/53h9jt1bym8wunh1?svg=true)](https://ci.appveyor.com/project/AlexEarl/ironpython2)
5-
[![Gitter chat](https://badges.gitter.im/IronLanguages/ironpython.png)](https://gitter.im/IronLanguages/ironpython)
6-
73
IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily.
84

95
IronPython can be obtained at [http://ironpython.net/](http://ironpython.net/).
106

7+
| **What?** | **Where?** |
8+
| --------: | :------------: |
9+
| **Windows/Linux/macOS Builds** | [![Build status](https://dotnetfoundation.visualstudio.com/IronLanguages/_apis/build/status/DLR)](https://dotnetfoundation.visualstudio.com/IronLanguages/_build/latest?definitionId=42) |
10+
| **Downloads** | [![NuGet](https://img.shields.io/nuget/v/IronPython.svg)](https://www.nuget.org/packages/IronPython/) [![Release](https://img.shields.io/github/release/IronLanguages/ironpython2.svg)](https://github.com/IronLanguages/ironpython2/releases/latest)|
11+
| **Help** | [![Gitter chat](https://badges.gitter.im/IronLanguages/ironpython.svg)](https://gitter.im/IronLanguages/ironpython) [![StackExchange](https://img.shields.io/stackexchange/stackoverflow/t/ironpython.svg)](http://stackoverflow.com/questions/tagged/ironpython) |
12+
13+
1114
Comparison of IronPython vs. C# for 'Hello World'
1215

13-
c#:
16+
C#:
1417

1518
```cs
1619
using System;
@@ -30,7 +33,7 @@ print "Hello World"
3033
IronPython is a Dynamic Language that runs on the .NET DLR ([Dynamic Language Runtime](http://en.wikipedia.org/wiki/Dynamic_Language_Runtime)) in contrast with VB.NET and C# which are [static languages](http://en.wikipedia.org/wiki/Type_system).
3134

3235

33-
Iron Python can also import DLL files compiled in other languages and use functions defined therein. For example:
36+
IronPython can also import DLL files compiled in other languages and use functions defined therein. For example:
3437

3538
```py
3639
import clr

0 commit comments

Comments
 (0)