diff --git a/archive/s/sather/README.md b/archive/s/sather/README.md new file mode 100644 index 000000000..28bce4ffe --- /dev/null +++ b/archive/s/sather/README.md @@ -0,0 +1,17 @@ +# Sample Programs in Sather + +Welcome to Sample Programs in Sather! + +## Sample Programs + +- [Hello World in Sather](https://www.gnu.org/software/sather/docs-1.2/tutorial/classes.html#AEN263) + +## Fun Facts + +- Debut: 1990 + +## References + +- [Sather official tutorial](https://www.gnu.org/software/sather/docs-1.2/tutorial/sather-tutorial.html) +- [Sather Official Website](https://www.gnu.org/software/sather/) +- [Sather - WIKI](https://en.wikipedia.org/wiki/Sather) diff --git a/archive/s/sather/hello-world.sa b/archive/s/sather/hello-world.sa new file mode 100644 index 000000000..b2824ab95 --- /dev/null +++ b/archive/s/sather/hello-world.sa @@ -0,0 +1,5 @@ +class HELLO_WORLD is + main is + #OUT+"Hello, World!"; + end; +end;