FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Meet "Water": A Programming Language Designed to Feel More Like Human Language 💧
How-ToProgramming Languages

Meet "Water": A Programming Language Designed to Feel More Like Human Language 💧

via Dev.to PythonIFUTO3h ago

Introduction While programming, have you ever thought: ・"Why do I have to write it this way?" ・"This is nothing like human language." ・"Type conversion makes no sense!" I felt the exact same way. That’s why I started a personal project to create a "more naturally readable language." I call it "Water" . Download Download the Python runner here Source code is here What is Water? I am developing Water with these core goals: ・Code that reads naturally. ・No need to obsess over types. ・...but still keeping it safe. In short, it’s a language that balances human intuition with programmatic rigor. Comparison Example Take a look at this: Python : x = int ( input ( " Enter number : " )) x = x + 5 Water : set stay x int x = input("Enter number") x = x + 5 In Python, you don't need to declare variables, but since the type can change unexpectedly, it lacks some strictness. In Water, once you create a variable, you can reuse it seamlessly without worrying about type casting every time. If you need to

Continue reading on Dev.to Python

Opens in a new tab

Read Full Article
0 views

Related Articles

Epic and Disney now let Fortnite creators make Star Wars games
How-To

Epic and Disney now let Fortnite creators make Star Wars games

The Verge • 47m ago

The Event-Driven Design Choice That Creates Invisible Coupling in .NET
How-To

The Event-Driven Design Choice That Creates Invisible Coupling in .NET

Medium Programming • 49m ago

I use Android and a Mac. Here’s the app I had to build myself.
How-To

I use Android and a Mac. Here’s the app I had to build myself.

Medium Programming • 2h ago

Tools for founders to navigate and move past conflict
How-To

Tools for founders to navigate and move past conflict

TechCrunch • 2h ago

The Hidden Cost of Starting From Scratch Every Time
How-To

The Hidden Cost of Starting From Scratch Every Time

Medium Programming • 3h ago

Discover More Articles