You are viewing a single comment's thread from:

RE: Ada Lovelace - Female Scientists Who Aren't Marie Curie

in #steemstem6 years ago

heard of her during a cs101 class back in the day.
and programming language named after...
never seen it until today. something new everyday.
code sample of "hello world" in ada

with Ada.Text_IO; use Ada.Text_IO;
procedure Hello is
begin
Put_Line ("Hello, world!");
end Hello;