フランス語完全理解(?)

(defprofile lagénorhynque
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package chapter03_fundamentalofoop; | |
import java.util.Currency; | |
class Money { | |
final int amount; | |
final Currency currency; | |
Money(final int amount, final Currency currency) { | |
if (amount < 0) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user=> (require '[clojure.spec.alpha :as s] | |
#_=> '[clojure.spec.test.alpha :as st]) | |
nil | |
user=> (s/def :person/age nat-int?) | |
:person/age | |
user=> (defn make-person [& {:keys [age]}] | |
#_=> #:person{:age age}) | |
#'user/make-person | |
user=> (s/fdef make-person | |
#_=> :args (s/keys* :req-un [:person/age]) |
(defprofile lagénorhynque
:id @lagenorhynque
:reading "/laʒenɔʁɛ̃k/"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Quadrangle { | |
name: string; | |
width: number; | |
height: number; | |
constructor(name: string, width: number, height: number) { | |
this.name = name; | |
this.width = width; | |
this.height = height; | |
} | |
getArea(): number { |
(defprofile lagénorhynque
:id @lagenorhynque
:reading "/laʒenɔʁɛ̃k/"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bb | |
(ns list-repositories | |
(:require | |
[babashka.curl :as curl] | |
[cheshire.core :as cheshire] | |
[clojure.pprint :refer [pprint]] | |
[clojure.string :as str])) | |
(def auth-token (System/getenv "AUTH_TOKEN")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import pprint | |
import requests | |
AUTH_TOKEN = os.getenv('AUTH_TOKEN') | |
GRAPHQL_QUERY = ''' | |
query ($query: String!, $last: Int) { |