Link to home
Start Free TrialLog in
Avatar of joyacv2
joyacv2Flag for Puerto Rico

asked on

coffee script generated code not working

Hi,

My html code:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>test</title>
    <script src="main.js"></script>
</head>
<body>

</body>
</html>

Open in new window


my coffee script code
myfunction = ->
  alert('test')

  myfunction()

Open in new window


the code generated by coffee script compiler
(function() {
  var myfunction;

  myfunction = function() {
    alert('test');
    return myfunction();
  };

}).call(this);

Open in new window


don't work, any idea?
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of joyacv2

ASKER

excellent! Thank you very much!
You are most welcome.