GorillaScript

码农软件 · 软件分类 · 脚本编程语言 · 2019-03-05 07:28:30

软件介绍

GorillaScript 是一个 compile-to-JavaScript 语言,设计的目的是让用户避免一些常见的错误。定义了更严格的语法。

示例代码:

GorillaScript:

if hello
  if loudly
    "HELLO!"
  else
    "hi"
else
  "Goodbye."

编译成 JavaScript :

"use strict";
if (hello) {
  if (loudly) {
    return "HELLO!";
  } else {
    return "hi";
  }
} else {
  return "Goodbye.";
}

 

本文地址:https://www.codercto.com/soft/d/655.html

The Golden Ticket

The Golden Ticket

Lance Fortnow / Princeton University Press / 2013-3-31 / USD 26.95

The P-NP problem is the most important open problem in computer science, if not all of mathematics. The Golden Ticket provides a nontechnical introduction to P-NP, its rich history, and its algorithmi......一起来看看 《The Golden Ticket》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具