1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

fluorite-7 日本語チュートリアル

Last updated at Posted at 2020-06-21

fluorite-7とは?

fluorite-7は、コードの短さと見やすさを主軸にした創作プログラミング言語です。

チュートリアル

このチュートリアルは、次の環境で検証されています。

  • Windows Subsystem on Linux
    • Microsoft Windows 10.0.18362.778
    • bash 4.4.19(1)-release
    • Ubuntu 18.04 LTS (Bionic Beaver)
    • node v8.10.0
    • npm 3.5.2

このチュートリアルは、Linuxおよびスクリプト言語でのプログラミングを経験している方向けに作られています。

トピック別リファレンス

リンク集

リポジトリ

Twitter

コンソール版

その場にインストール

curl https://raw.githubusercontent.com/MirrgieRiana/fluorite-7/master/install.bash | bash

環境にインストール

(cd /usr/local/bin; curl https://raw.githubusercontent.com/MirrgieRiana/fluorite-7/master/install.bash | bash)

オンラインエディタ

オンラインエディタ

Google Colaboratory

インストールマジック

!(cd /usr/local/bin; curl https://raw.githubusercontent.com/MirrgieRiana/fluorite-7/master/install.bash | bash)

fl7を実行するためのセルマジック

  • %%bash -c 'fl7 "$(cat)"'

fl7でHTML出力するサンプルコード

import IPython; IPython.display.HTML("\n".join(get_ipython().getoutput(r'''fl7 -e '
  <ul>
    <%= y: 1 .. 9 | %>
      <li><%= y %></li>
    <% %>
  </ul>
' ''')))
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?