Giter Club home page Giter Club logo

Comments (1)

corbin-r avatar corbin-r commented on June 28, 2024

Possible ways of going about namespacing in Arua could be using the C++ methodology.

In Arua of course the syntax would need to be modified slightly but the end result would be the same as a C++ namespace:

namespace stuff
{
    // All the code
}
# Arua example
ns {aruaNamespace}
    # Methods, structs, types, vars here
# namespace ends here at col:0

I'm thinking wrapping the namespace name inside curly braces would be easy to help the compiler deduce the name and index it. Of course another possible method would be:

ns aruaNamespace:
    # Methods, structs, types, vars here
# namespace ends here at col:0

Keeping the idea of simplicity? I'd go with example 2. Also using the ns keyword would be shorter than writing out namespace.

Including namespaces

I would love to see a Python-esque method of including the namespaces (note, defined as use).
Example (as seen in #16):

use std.math.ops.*

Another feature that would be nice to include with this would be how you can (in python) use:

import foo as bar

# Or importing a specific class from a file
from foo import doThings

You could possibly do this in Arua by doing:

# Importing the whole library
use std.math.ops.*

# Importing specific class or method
from std.math.ops use Fourier

# Aliasing the import
# Updated for an easier "Aliasing" system
# Could use "aliasas" but I find that's confusing and superflouous 
from std.math.ops.* use Fourier as Transforms

from arua-meta.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.