It was great to see the people attending to write their first program and see the result on their computers. For some of them, it was the first time ever writing a program!

First 'App development for everyone' meetup.

We had our first meetup today and it was great fun! Twenty-two people showed up and it turned out to be a really diverse group and we got to know each other a bit over pizza and drinks.

After talking a bit about computers and programming, we installed Visual Studio on our laptops and started with our first code:

using System;

namespace Demo01
{
class Program
{
static void Main(string[] args)
{
    Console.WriteLine("Hello world");
}
}
}

It was great to see the people attending to write their first program and see the result on their computers. For some of them, it was the first time ever writing a program!

trainer loek van den ouweland

We talked about variables, datatypes and loops and continue next time with conditions and functions.

I’d like to thank all the great people that joined us today and hope to see you again soon!

Written by Loek van den Ouweland on 2017-07-06.
Questions regarding this artice? You can send them to the address below.