Coder Social home page Coder Social logo

Comments (5)

RezSat avatar RezSat commented on July 29, 2024

Oh, just simply use print, that's all , for example:
print 10;
print "Hello, World!";

from y-sharp-programming-language.

RezSat avatar RezSat commented on July 29, 2024

look at my examples, I will add some more examples there.

from y-sharp-programming-language.

RezSat avatar RezSat commented on July 29, 2024

but there are some problems, when using variables, you can't print int variables but you can print str variables, :
str name = "Yehan Wasura"; print name;

The problem when trying to print INT variable is that it won't show the value in the result console and also it does not show any errors, it likely just skipping it or something, I didn't really looked deep into it and I really can't remember much of the things here, because it's being some time, but I will take look and try to fix it soon.

from y-sharp-programming-language.

RezSat avatar RezSat commented on July 29, 2024

alright buddy, I have found the problem and I have fixed it, The thing fixed was in the file Objects/builtinObjects.py, there your have code like this :
try: self.exec_string += ast['arguments'][0] + ")" and I just changed it to :
try: self.exec_string += str(ast['arguments'][0]) + ")". making any arguments passes through a string, this way you can print out variables that holds integers

from y-sharp-programming-language.

RezSat avatar RezSat commented on July 29, 2024

Try the new release Y# Version 1.0.1, it's all fixed there

from y-sharp-programming-language.

Related Issues (2)

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.